My project https://turunlinnanravintolat.fi
I want the burger menu to be activated for tablets and phones. Have done that in settings, but now only works for phones. I use the Chrome Inspector and it activates the text menu area without menu items when viewing in tablet mode.
Login credentials attached
John
Hey pramedia,
You can activate the burger menu at any screen size using this CSS:
@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;
}
}
Simply change the 1024 value to the pixel value of your choice.
Best regards,
Rikard