you just have to change the element font size you want using css. For example, in the 2012 theme this is the element for the menu items:
.main-navigation li a {
border-bottom: 0;
color: #6a6a6a;
line-height: 3.692307692;
text-transform: uppercase;
white-space: nowrap;
font-size: 20px;
}
Just find the existing .main-navigation li a element and paste what I have above to replace it. I’ve added a font size so you can see how it works.
Thread Starter
gfy
(@shawn-gnandt)
@mixmastermichael:
Thanks, that works!