Hi
On my site https://hi-flyfoto.de the desktop menu on a tablet in landscape mode (for example ipad air 2, Samsung Galaxy S2)
overlaps the logo on the left. I know the breakpoint for the mobile menu could be adjusted so it is also active in landscape mode.
However, there would enough space for the desktop menu, if the items move a little closer together. Is that possible?
thanks for your help
Michael
Hi Michael,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.av-main-nav>li>a {
padding: 0 8px !important;
}
}
Best regards,
Rikard
Hi Rikard
It makes no difference, I am afraid.
Is there not a way to “protect” the logo area and adjust the width of the menu items so they still fit when the screen width is reduced?
Kind Regards
Michael
Hi,
Ok, thanks for the feedback. Please try the following instead:
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.av-main-nav li a {
padding: 0 8px !important;
}
}
Best regards,
Rikard
Cool, that works. Thank you very much Rikard!