Menu current page color

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Pepijn Scholten
    New Member
    • Dec 2011
    • 1

    Menu current page color

    Hello,

    I am building a website, and I want the current page to be a different color in the menu. I am working via CSS, so I do not think that de body id solution works for me. Could anyone take a look at the code and help me out? Hovering seems to work fine, but I can't get the current page menu item to be highlighted.
    (site: http://www.devonk.nu/) (yes it is dutch)
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    Why can't you use the body id solution? That seems what you need to do.

    Comment

    • charles07
      New Member
      • Dec 2011
      • 45

      #3
      Pepijn Scholten

      add the following in ur css file. make sure u change the color code, if needed.
      Code:
      .current-menu-item a {
          color: ##0066CC !important;
      }

      Comment

      Working...