Pilcrow Theme: change default colours
-
Hi, I’ve recently updated my site with the Pilcrow theme but need help editing the CCS. My blog is at: http://www.thelonelylacuna.wordpress.com
I’d like to know how to change the default colour of:
– Post titles
– The background for tags
– The background of footer widgets (mine is currently just the search bar)If anyone could help that would be much appreciated :)
The blog I need help with is: (visible only to logged in users)
-
Assuming you have the CSS Upgrade:
For post titles
.entry-title a {
color: (your color);
}For Tags Background
.sticky .entry-content, .entry-links, .widget ul, blockquote, .page-title, .entry-meta, #infinite-handle span {
background-color: (your color);
}For the footer
#footer #colophon {
background-color: (your color)
}Hope this helps!
-
I reviewed your latest post at http://thelonelylacuna.wordpress.com/2014/05/31/chessboard/ and I see that you were able to make the changes you wanted. However, you’ve made the footer credit links white text on a white background, and that is not allowed!
You can fix it by altering the color of the footer text so it’s readable. Here is some example CSS that will fix the problem.
#footer #colophon a { color: #ccc; border-color: #eee; }
- The topic ‘Pilcrow Theme: change default colours’ is closed to new replies.