How to I change the colour of the "continue reading" links on my blog please?
If you try the previous example by itself, or even if you add in selectors for content links, you may notice that there are several other places that link color is set in the Pilcrow theme. To find more of them, I looked at the original Pilcrow stylesheet and looked for any selectors with "a" or "a:hover" in theme where a color property is used. I copied all of the onces I could find and came up with this list for changing all of the link colors for the home page, posts, and pages from blue to pink:
a,
.entry-title,
.entry-title a,
.page-link a:link,
.page-link a:visited,
#footer #colophon a {
color: #EF77E1;
}
a:focus,
a:active,
a:hover,
.entry-title a:focus,
.entry-title a:active,
.entry-title a:hover,
.page-link a:active,
.page-link a:hover,
#footer #colophon a:hover {
color: #EF3BDE;
}
#footer #colophon a {
border-bottom: 1px solid #EF77E1;
}
#footer #colophon a:hover {
border-color: #EF3BDE;
}
Note that this should cover most links, but if you find any others along the way, you can convert them to pink by finding out what selectors are being used and adding them to the lists in the examples above.
You may also find background colors or other things that need updating. For example, to change the light blue shading for comments where you have left a reply on one of your own posts, you can add a rule like this to your Appearance → Custom Design → CSS page:
#comments li.bypostauthor > .comment-container {
background: #FFEFFD;
}