OK. This time we have a look at links in posts both when viewing on the main page and single post.

POSTS on main page
Post in index view
(click on image to zoom it out)

  1. color of linked post title; add to style.css:
    #content h2 a:link, #content h2 a:visited {
    color: #xxx;
    }
  2. color of linked post author name; add to style.css
    #content .post-info a:link, #content .post-info a:visited {
    color: #xxx;
    }
  3. color of links within posts; just add color: #xxx; within #content .entry a:link, #content .entry a:visited and #content .entry a:hover, #content .entry a:active
  4. color of Continue Reading -> check one of my earlier entries ;)
  5. and 6. color of linked category/categories and comments; add to style.css:
    #content .postmetadata a:link, #content .postmetadata a:visited {
    color: #xxx;
    }

In SINGLE POST view there are few more links:
Post in single view
(click on image to zoom it out)

  1. links for navigation between posts; add to style.css:
    .postnav a:link, .postnav a:visited {
    color: #xxx;
    }
  2. linked number of comment; add to style.css:
    #container .commentlist li .cmtinfo a:link, #container .commentlist li .cmtinfo a:visited [
    color: #xxx;
    }
  3. color of Trackback URl link; add to style.css:
    #content .trackback a:link, #content .trackback a:visited {
    color: #xxx;
    }
  4. color of Comments RSS link; add to style.css:
    #content .commentsfeed a:link, #content .commentsfeed a:visited {
    color: #xxx;
    }

When you are logged in as admin and go to single post view there are two extra links within comment form. To change their color add to syle.css:
#commentform a:link, #commentform a:visited {
color: #xxx;
}

And done :thumbup_tb: .