change menu color in thestyle theme

  • Unknown's avatar

    It seems that I need to utilize CSS to change the menu color in thestyle theme. I’m just starting the blog and am very new to CSS. Can someone help me resolve or point me in the right direction?

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

  • Unknown's avatar

    There are two main menu colors set in TheStyle: The current menu item and the non-current/non-active menu items. The first rule below would be for the “current” menu item and hover menu item color. The second would be for the non-active menu item color. Both are currently set as white (#FFFFFF).

    ul.nav a:hover, ul.nav > li.current-menu-item > a {
        color: #FFFFFF;
    }
    
    ul.nav a {
        color: #FFFFFF;
    }
  • The topic ‘change menu color in thestyle theme’ is closed to new replies.