Hi there the main menu has disappeared for the laptop size. Any ideas?
Hey web4698,
It disappeared because of this code in Quick CSS:
.html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate {
display: none;
}
which is inside:
@media only screen and (max-width: 1289px) {
}
If there should be a burger menu that should appear on it, try flushing out the cache if you have a caching plugin or disable minification if you have one.
Best regards,
Nikko
Ok thanks. What would be the correct css to add to switch the menu to a mobile menu sooner?
Hi,
You can use this css code:
@media only screen and (max-width:1400px) {
.html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate {
display: block !important;
}
#header .main_menu li {
display: none;
}
#header .main_menu .av-burger-menu-main {
display: block !important;
}
}
Just change the 1400px to any value (base it on the screen width). Hope this helps :)
Best regards,
Nikko
That doesn’t work. Any other ideas?