Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#1452
Vladimir
Keymaster

Hello Laurent,

You can use CSS below to hide whole search box:

#nav-container #search-box{
display: none;
}

Or this CSS to hide just fields and leave right border (to keep consistency in layout):

#nav-container #search-box form{
display: none;
}

#nav-container #search-box{
border-left: none;
}

Vladimir