Change Color of Post Titles, and main blog title
-
I been trying to change the color of only the text titles in the blog posts, and of the blog.
If you go to the main site it will be:
AI’s Photography Blog, and all post tittles as in Finnaly New Pictures, More Rando Pictures, ect..
I tried header {
color: white;
}body {
color: white;
}as with header and i dont get to affect only those texts.
Thanks!
I am using Visual theme.
The blog I need help with is: (visible only to logged in users)
-
The post titles on the blog, archive, category and tags pages have a color setting with a different CSS selector, and the single post pages also have a different one. The following CSS will allow you to change the post titles colors.
.masonry .entry-title a, .single .entry-title { color: #cc0000; }For the site title, again it has its own CSS selector and styling rule. Add this and you can change the color of the site title.
.site-title a { color: #ffff33; } -
That was very fast, thanks very much,, i was banging my head against the wall!!! Were i can find the selector division for all the areas of the blog?
-
You are welcome.
I used the web inspector built into my browser to find 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.
-
-
- The topic ‘Change Color of Post Titles, and main blog title’ is closed to new replies.