Tagged: mobile menu
Hi,
My menu below the header is full width but still not wide enough for all menu items on screens of 900px and smaller.
I’ve tried this css to make the icon menu appear earlier however the main menu disappears but the icon (mobile) menu does not appear until at much smaller screen.
@media only screen and (max-width: 900px) {
nav.main_menu {
display:none;
}
.av-burger-menu-main.menu-item-avia-special.av-small-burger-icon {
display: block !important;
}}
I hope you can have a look and see what the problem is.
Thank you,
Lisa
Hey sundara88,
Please try this instead:
@media only screen and (max-width: 900px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Rikard
Hi Rikard,
Thanks, that works great, I just deleted:
nav.main_menu {
display: block !important;
}
because two burger menu’s showed up :)
Thank you!
Hi,
Great, glad you got it working :-)
Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
You can close this
Thanks!