changing colour of post titles
-
I am trying out some CSS as a preview before I purchase the upgrade. I’ve been struggling to change the colour of post titles though. I can change the font colour of everything else except post titles. Can anyone help? Whatever I do, the colour is not showing up on the preview,
The blog I need help with is: (visible only to logged in users)
-
When posting to the forums, it would help if you posted which theme you are using (or a link to the blog you are working on) and an example of the CSS you’ve already tried.
To change the font color of post titles, it will depend on the page’s html markup. For example, if the page was using h2 for titles, then you could use something like this:
h2 { color: blue; }You need to check your theme to see what markup is used for the titles and make sure to match it in the CSS.
-
Try the code below to change your post link headings with a hover colour as well.
#wrapper #content .post-header h2 a {color:#f00;} #wrapper #content .post-header h2 a:hover {color:#00f;}
- The topic ‘changing colour of post titles’ is closed to new replies.