increase font in menus

  • Unknown's avatar

    Hello – I want to increase the size of the font in my top and side menus. Can anyone suggest how to go about that?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, the following two rules will allow you to individually adjust the two menu font sizes.

    .primary-navigation a {
        font-size: 100%;
    }
    .secondary-navigation a {
        font-size: 100%;
    }

    If you want both of them to be increased by the same amount, you can use the following combined rule.

    .primary-navigation a, .secondary-navigation a {
        font-size: 100%;
    }
  • The topic ‘increase font in menus’ is closed to new replies.