Is there a way to make the mobile version of the menu show sooner (say at 1250px and smaller)?
Here is an example https://ibb.co/vdF1m7D
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 1250px) {
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