change menu color for current page

  • Unknown's avatar

    What CSS do I add to have the current page’s navigation show up as a different color on the current page.

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

  • Unknown's avatar

    This will do it if you want a different background color for the current page in the nav.

    #access .current_page_item {
    background: #CC0000;
    }

    This will do it if you want to have the text a different color for the current page in the nav.

    #access .current_page_item a {
    color: #CC0000;
    }
  • The topic ‘change menu color for current page’ is closed to new replies.