Hi,
I am trying to hide the header widget (Search bar in this case) on a mobile, anything below 1100px width.
What is the quick CSS to do this?
Thank you in advance
Hey hloft!
Add this to your custom CSS.
@media screen and (max-width: 1100px) {
#header .widget { display: none !important; }
}
Best regards,
Elliott