XF 1.3 Change when the quick search box disappears?

Zanthor

Member
When I shrink my site side to side the search slides left until... it finally disappears. I'd like it to disappear sooner, how does one change this?
 
Easiest method would be to look at the template: search_bar.css

Go down and find this:


Code:
@media (max-width:mad:maxResponsiveMediumWidth)

You can change it to:

Code:
@media (max-width:mad:maxResponsiveWideWidth)

which will break at a wider resolution and show the mobile search.

Or... put in your own value:

Code:
@media (max-width:mad:600px)
 
Top Bottom