Hi support,
Why is the menu displayed behind the logo on ipads ?
I know the menu are too long and some menu-items are seen under the logo area.
But how to get the menu starting AFTER the logo (and not behind it).
Thanks for your time.
BR, Anette
Hey Anette,
Please try this in Quick CSS, in order to activate the mobile menu at an earlier point:
@media only screen and (max-width: 1240px) {
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