• I’m trying to edit my stylesheet so that all my links, visited, and hover links are the same color. I’ve read and read posts on here, but I still can’t quite figure it out. I keep plugging away the code in all different places, but no matter where I put it, I can’t seem to get it to work. My site is https://www.sarahsblogging.com
    if that helps at all. Thanks to anyone who can help me!

Viewing 1 replies (of 1 total)
  • In your style.css file, look for the following:


    a:link
    {
    color: #000000;
    background:none;
    }
    a:visited {
    color: #000000;
    background:none;
    }
    a:hover, a:active {
    border-bottom:#000000 1px solid;
    background:#99cc33;
    color: #000000;
    }

    Change all the 000000 of #000000 to a different six digit number. It’s called a hex code. You can search “hex codes” for more info and options.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing link colors’ is closed to new replies.