how do i get to activate mobile menu at 1024 px and below?
Hey vincemilia!
Add this to your custom CSS.
@media screen and (max-width: 1024px) {
nav.main_menu { display: none !important; }
#advanced_menu_toggle { display: block !important; }
}
Best regards,
Elliott
Hi Elliot,
that worked, but the x-button to close the menu is not visible.
btw.: changed the breakpoint to 1280px.
please see: http://coburger-weihnachtsland.de/content/
Hey!
Add this also.
#advanced_menu_hide { display: block !important; }
Regards,
Elliott
great, that fixed it!
thanks for your support, Elliot!