I removed the string "hidden-xs" in the header block code. The search bar is now visible, but way too long. What's the best way of shortening the search bar for the mobile screen only?
I've used the following code to shorten the search bar:
@media (max-width: 576px) {
div.mod_search35 input[type="search"] {
margin-left: -12px;
width: 205px !important;}
}
but that didn't prevent the search icon button from breaking into the next line.