Enfold has a feature to provide two options for when the mobile menu replaces the default wider menu:
– Activate only for smartphones (browser width below 768 px)
– Activate for smartphones and tablets (browser width below 990 px)
Is it possible to customize the px number to, for example, 1080px?
Hey Tanja,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 1080px) {
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