How can I change the color of my blog posts headers/titles?
-
How can I change the color of my blog posts headers?
Using the SELA theme.I added the following code in the CSS feed, but I don’t see any changes. .post-title h1, .post-title h1 a {
color: #08D77B;
}Link to site: https://stuffxpatslike.wordpress.com/blog-2/
thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, you can use the following CSS rules to change the color of the post and page titles. #333 is the original color.
.page-title, .entry-title, .entry-title a { color: #333; }I used the web inspector built into my browser to find the relevant CSS. If you are not familiar with the web inspector in your browser, take a look at our support page on How to Find Your Theme’s CSS where you will find some brief screencasts to get you started with it. I find it an invaluable tool when working with CSS.
-
Thanks, I tried that, and added that into the CSS but it doesn’t work.
I used Colorzilla to identify the colour btw, works also great. -
Hi, you need to replace the 333 I have in the color declaration with your color so that it looks like this.
.page-title, .entry-title, .entry-title a { color: #08D77B; }
- The topic ‘How can I change the color of my blog posts headers/titles?’ is closed to new replies.