• I would like it if my links would change colors after they are clicked, from blue before to pink after. Is this possible? Right now the code i am entering for a link to, say, yahoo.com is:

    yahoo

    Any ideas? Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • a link:visited {
    color:#ff00ff;
    }

    Put that at the bottom of your css.

    You need to change the style in your css file. You would have:

    a – for normal links
    a:visited – for when they’ve been clicked

    You can also use a:hover for when someone is hovering over the link with a mouse.

    Check the style sheet for your theme and see what you have for those values.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Link Colors’ is closed to new replies.