When checking the current set up of my site on a tablet in landscape orientation, I have noticed that the main navigation menu links are overlapping with the logo, which is on the left side. Is there a way to reduce the space between the main navigation headers so that they are closer together?
Hey craig374,
Thank you for the inquiry.
Have you tried adjusting the Enfold > Main Menu > Menu Items For Mobile settings to the second option (Activate for Smartphones and Tablets)?
If you want to adjust the font size and space between the menu items on tablet view, add this css code:
@media only screen and (max-width: 1024px) {
/* Add your Mobile Styles here */
#top #header .av-main-nav>li>a {
font-size: 12px;
padding: 0 4px;
}
}
Best regards,
Ismael
Thank you for the response. I did previously activate the mobile menu for smart phones and tablets. It is simply that in landscape orientation, the width of the browser is long enough for the site to kick into desktop mode, which is fine.
Thank you also for the code. I have made note of it. For now, I was able to resolve the issue by making one of the menu titles shorter. There is no more over lap.