Hi.
I have a problem where I have two search bars showing on my site – one in the main menu and other one below it. How can I remove the second search bar?
SOLVED!
Using:
@media only screen and (min-width: 800px) {
div#mobilesearch {
display: none;
}
}
-
This topic was modified 9 years, 1 month ago by catmac2204. Reason: Solution found