Reply To: Menu next to logo

Home Forums Support Menu next to logo Reply To: Menu next to logo

Home Forums Support Menu next to logo Reply To: Menu next to logo

#241725
Tom
Lead Developer
Lead Developer

Landscape on tablets use the desktop breakpoint, so what you could do is add a media query to reduce the font size of your menu items at your needed breakpoint.

For example:

@media (max-width: 1000px) {
    .main-navigation .main-nav li a {
        font-size: 14px;
    }
}