Reply To: Making navigation items smaller

Home Forums Support Making navigation items smaller Reply To: Making navigation items smaller

Home Forums Support Making navigation items smaller Reply To: Making navigation items smaller

#183220
Tom
Lead Developer
Lead Developer

Hi there,

If you have GP Premium, you can reduce the font size of the menu items, and reduce the left and right padding of each item so they take up less space.

If not, you can use CSS. However, you have a lot of menu items, so things might be a little squished:

.main-navigation .main-nav ul li a {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 13px;
}