• I am using the following format to change the color of menu links, but once they are visited they turn white. How could I define a visited menu links color?

    #menu-item-502 a {
    	color: #FE2E64;
    }

    My site is here:

    https://joederouen.com/

    Thank you!

Viewing 1 replies (of 1 total)
  • Try adding this to the end of your child theme’s style.css:

    #access a:visited,
    #access2 a:visited {
        color: #FF0000 !important;
    }

    This will not handle the case of an unvisited top level item where a subitem has been visited, but I could not find a way to make that work correctly. Maybe a CSS guru can chime in with that.

Viewing 1 replies (of 1 total)
  • The topic ‘How do I change the color of visited menu links?’ is closed to new replies.