Hi. How to change the color of the post title? And inside posts too h1 – h6.
Hi Dobrodukh,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .post-title a {
color: red;
}
Inside of posts you can highlight the header text and then choose a color from the visual editor’s options.
Regards,
Devin
Thanks, but would like to, and inside posts too.
Hi,
To change color of the title on the individual blog post, you would use the following css
#top.single .entry-content h1.post-title {
color: red;
}
Thanks,
Nick
Thanks,