Change colour of hyperlinks

  • Unknown's avatar

    I’d like to change the colour of hyperlinks to traditional blue throughout the site.

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

  • Unknown's avatar

    Hi there!

    You can set the color of your links with this code:

    a, a:link, a:focus, a:active, a:visited, a:hover {
    	color: blue;
    }

    If you’d like to add a different color to highlight links the user has already visited you can pull the ‘a:visited’ out of that and add it separately with it’s own color like this:

    a:visited {
    	color: darkblue;
    }

    Cheers!

  • The topic ‘Change colour of hyperlinks’ is closed to new replies.