Hi,
On our new site we are seeing the menu overlap the logo when shrinking the desktop browser window. Is there a CSS code that will break to the mobile/burger menu at a larger width than the defaults in the menu settings?
Thanks
Hey mattb1169,
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;
}
}
Best regards,
Jordan Shannon