Home › Forums › CSS › Set active color in a menu › Reply To: Set active color in a menu
November 27, 2016 at 12:18 am
#248300
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?