Tagged: mobile menu
Hi,
We noticed on our mobile menu that the search icon keeps breaking to the next line, below the navigation menu. Any ideas why?
Thanks!
Chris
Hey ccarberg!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 989px) {
.av-main-nav > #menu-item-search { top: -90px; }}
Best regards,
Yigit
Hmm, i added it but it still seems to be breaking in mobile…
Hi!
Please try adding !important rule as following
@media only screen and (max-width: 989px) {
.av-main-nav > #menu-item-search { top: -90px !important; }}
Cheers!
Yigit
I added that too, it’s still breaking on mobile.
Hi!
This is what I see in your source code,
@media only screen and (max-width: 989px) {
.av-main-nav &.gt; #menu-item-search { top: -90px !important; }}
Double check that the &.gt; is set to >.
Cheers!
Elliott