Fontsize menu nav for Unite WordPress theme

Hi

Thanks for this perfect theme and, above all, thanks for the support forum.

In this case, I need to know how to increase the font size of the menu nav.

I tried different things but I have not succeeded.

Thanks

cheroot.es

That’s some heavy modification for this theme :slight_smile:

You can change font size for navigation by simply adding this code to Theme Options - Other - Custom CSS. You can use any value you want as this is just an example.

.navbar-default .navbar-nav {
  font-size: 24px;
}

Thanks!!!

I said, the best support forum :slight_smile:

Hey Aigars, how about the secondary menu font size too?

@djgl13

Sorry for late response. Just returned from vacation.

You can change dropdown menu item font size by adding this simple CSS to Theme Options - Other - Custom CSS.

.dropdown-menu li a {
  font-size: 10px;
}

Let me know if this helps.