Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Set active color in a menu Reply To: Set active color in a menu

#248300
Atelierbram
Participant

What have you tried so far? Can you show this in a demo? Do you mean highlighting the current menu item?

#site-navigation .current-menu-item a {
  background-color: white;
  color: blue;
}
#site-navigation .current-menu-item a:hover {
    pointer-events: none;
    cursor: pointer;
}

Or do you mean using pseudo class selectors in general?