I have removed the main menu on my site (don’t ask, client is weird).
I have a menu that only appears on a mobile phone but I would like it to be a burger style menu. Is that possible? I tried the Fullwidth submenu and a widget menu search but can’t find anything that would work.
Hey gciad,
Thank you for using Enfold.
How did you implement the new menu? You can toggle the display property of the main menu with css media queries. Example.
@media only screen and (min-width: 990px) {
/* Add your Desktop Styles here */
.avia-menu {
display: none;
}
}
The menu will only display on mobile view.
Best regards,
Ismael