I needed to add search to the mobile view and followed the steps in https://kriesi.at/support/topic/mobile-search-bar/
This allowed me to add search to the mobile view successfully, but it adversely affected search for other (non mobile) views as you can see in the link.
Either the search box is hidden under the element below it ( tried a very high z-index to fix without success) or something else is preventing me from seeing the box – any ideas?
The issue is related to this piece of CSS…
@media only screen and (min-width: 767px) {
#top #searchform > div { display: none; }}
… I’ve tried a number of things to correct it, but so far without success.
Hey!
Thank you for the info.
Please replace it with this:
@media only screen and (min-width: 767px) {
#top #main > #searchform > div {
display: none;
}}
Regards,
Ismael
Perfect! Thank you Ismael