Zanthor Member Mar 6, 2014 #1 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?
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?
Russ Well-known member Mar 6, 2014 #2 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) Upvote 0 Downvote
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)