I have implemented this solution https://kriesi.at/support/topic/adding-search-icon-to-mobile-menu-hamburger-icon/ on this site.
When the search icon is clicked in responsive mode, the pop-up search input box appears but it is covered by the hamburger menu icon.
The CSS element .html_bottom_nav_header .avia-search-tooltip also controls the non-responsive behaviour of the search input box when the search icon is clicked on the menu bar, so I need to target the responsive-only behaviour of this element to move the search input box down (or elsewhere so that the hamburger doesn’t cover it).
I have tried this:
@media only screen and (max-width: 1440px) {
.responsive .html_bottom_nav_header .avia-search-tooltip {
top: 85px !important; }}
but it doesn’t work.
I’ve also tried changing .avia-search-tooltip .avia-tt but no success either.
Can you suggest how I can move the input box down please in responsive mode?
Hey zimbo,
Thank you for using Enfold.
Adjust the position of the search box with the following css code:
@media only screen and (max-width: 989px) {
.responsive .avia-search-tooltip {
left: -200px !important;
}
}
Best regards,
Ismael
Great, thanks.