Hi, I'm trying to change the colour of post headings use the CSS upgrade. Can anyone help? The site is enterthevortex.org
The blog I need help with is enterthevortex.org.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Hi, I'm trying to change the colour of post headings use the CSS upgrade. Can anyone help? The site is enterthevortex.org
The blog I need help with is enterthevortex.org.
I'm not 100% I know what you're referring to, but if you mean the title for each individual post, this is the CSS you need to modify:
#single h1.entry-title {
margin: 20px 0pt 12px;
color: red;
}
where "red" could be any named or hexadecimal color
for example,
color: #215E21;
would change your post titles to hunter green.
brilliant, thanks. this works in the actual post but doesn't work on the 'home' page where the post synopsis are displayed?
Cheers
@leighandlowton
The blog linked to your username is wearing the Twenty Ten theme. Will you please post an active link starting with http:// to the blog wearing the Suburbia theme?
ah here you go http://enterthevortex.org/
To change the color for post titles on the Suburbia home page, you can add a selector ".post h2 a" to the rule you added before. Here is an example:
#single h1.entry-title,
.post h2 a {
color: red;
}
Adjust the color name or color code as necessary.
This topic has been closed to new replies.