Home General Discussion

remove "Browse by category"

Andreas_VoigtAndreas_Voigt Customer IT Monkey ✭
Hello there, 

can anybody help me on how to get rid of this field on the Self-Service Portal landing page ?

I already edited my custom.css with

#main_wrapper > div > div > div > div.col-sm-3.sidebar-right.pad-top-1-5.hidden-xs {
     display: none;
 }

as suggested in another post, but unfortunatly it's still there.

Any help would be very much appreciated 


Thanks 

Andreas


Answers

  • Jeff_LangJeff_Lang Customer Ninja IT Monkey ✭✭✭✭

    if that the home page i think it is, we use a custom js to completely modify it, and remove that bit completely with
    $('#servicecat-nav').remove();
    to hide the same in css would be something like
        display: none;
    }

    #servicecat-nav {<br>
Sign In or Register to comment.