Hi,
Is it possible to somehow set up an automatic system so that when the items in my menu reach the logo, the menu automatically goes to the burger menu?
Some of my pages have short menus, whilst some are longer.
See link below an example of one of my pages with a bigger menu. When viewing on iPad Pro (1024 x1366), the menu items show on top of the logo, which looks like a mess.
Hey SilviaNT,
You can go to the mobile menu sooner. Please try the following in Quick CSS under Enfold->General Styling:
@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;
}
}
Change the value 1024 to the pixel value of your choice.
Best regards,
Jordan Shannon