Tagged: menus, responsive
Hi,
I have a menu overlapping the logo on 1024 x 768 large tablet (landscape).
I tried this:
@media only screen and (max-width: 1119px) and (min-width: 990px) {
.logo a {
max-width: 35%;
top: 10px;
}}
It works but when scrolling down on the page, the overlapping reappears. What would you suggest?
Thanks,
Hey 156aw45f,
Please try the following in Quick CSS under Enfold->General Styling to activate the mobile menu for tablets:
@media only screen and (max-width: 1024px) {
nav.main_menu {
display:none !important;
}
#advanced_menu_toggle, #advanced_menu_hide {
display:block !important;
}
}
Best regards,
Rikard
Thanks!