BuddyBoss Home – Web Support Forums Themes Boss. theme How to hide searchbox from the titlebar?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Question

    #51926
    @r-padurea

    Hello, please help me hide search box from the title bar altogether. I’m not gonna need this function in my website. Thank you.

    Answers

    #51930

    Anonymous
    @

    Hi @r-padurea, Add this css code to custom.css file to hide search form

    .site-header .search-form {
        display: none !important;
    }

    Regards
    Pallavi

    #52199
    @r-padurea

    Thank you very much,Pallavi, it worked perfectly.
    The only problem now is that the title bar menu buttons are all on the right side, is there a way to alight them more to the center, or to the left where the search box was before?
    Thank you.

    #52772

    Anonymous
    @

    Hi @r-padurea, Please add these codes in custom css

    
    .header-navigation>div>ul {
        text-align: left !important;
    }
    

    Regards
    Pallavi

    #59816
    @altenewlearning

    The above one you gave did not work for my case, but the following one worked for me to hide the search button from the title bar.

    #search-open {
    display: none !important;
    }

    #59893

    Anonymous
    @

    Hi @altenewlearning, Please add this css with the above mentioned css to remove the extra white space in menu

    
    .site-header .left-col {
        min-width: 0px !important;
    }
    .header-navigation>div>ul {
        text-align: left !important;
    }
    

    Regards

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘How to hide searchbox from the titlebar?’ is closed to new replies.