Support Forums - Classified Ads Script Osclass

Osclass theme support => Zara Osclass Responsive Theme => Topic started by: Carlos Carcamo on August 15, 2017, 07:05:02 PM

Title: Hide category in Login page
Post by: Carlos Carcamo on August 15, 2017, 07:05:02 PM
Hey guys,

I create a separated login form under user-login.php, and I put this code to hide the top-cat-head

Code: [Select]
<style>
    .top-cat-wrap{
        display: none;
    }
          .top-cat-head{
        display: none;
    }
</style>

But is just working on desktop, in mobile devices is not working, is there another way to hide the categories in user-login.php
Title: Re: Hide category in Login page
Post by: MB Themes on August 15, 2017, 09:21:30 PM
@Carlos
Try to place !important at end of commands to rewrite default behaviour.
Make sure on mobile devices blocks with same classes are used.
Title: Re: Hide category in Login page
Post by: Carlos Carcamo on August 15, 2017, 10:42:51 PM
@Carlos
Try to place !important at end of commands to rewrite default behaviour.
Make sure on mobile devices blocks with same classes are used.

As always the best ANSWER thanks man.