Skip to main content

Invent theme: How can I make the search box always visible?

BindTuning Team avatar
Written by BindTuning Team
Updated over 2 months ago

The Invent theme's search box is designed to appear only on mouse-over by default. To ensure the search box is always displayed, add the following CSS snippet to your theme's custom CSS file or designated area for additional styles:

#Search #SearchContainer {
overflow: visible !important;
width: 30px !important;
}
#Search #SearchField {
margin-left: -160px !important;
}
#Search #SearchLink {
display: none !important;
}

This CSS code will override the default behavior, making the search box permanently visible.

Did this answer your question?