Hi,
I have many menu items on my website and need to activate my burger menu at a higher breakpoint because the menu items are overlapping with my logo. Can you please let me know how to do that?
Thanks Nora
Hey NoraGTS,
Please try this in Quick CSS:
@media only screen and (max-width: 1024px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
You can adjust the 1024 pixel value to the value of your choice.
Best regards,
Rikard