Hi! I would like some help in changing the body font of posts into grey. Currently I am using the Inuit theme.
Thanks in advance.
Regards
The blog I need help with is ishitaunblogged.com.
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 would like some help in changing the body font of posts into grey. Currently I am using the Inuit theme.
Thanks in advance.
Regards
The blog I need help with is ishitaunblogged.com.
To change the base font color in the Inuit Types theme to grey, try this:
body {
color: grey;
}
Now, that change affects any text that doesn't have a color set later in the Inuit Types stylesheet with a more specific rule. For example, the Inuit Types theme uses this rule to set the font color in individual posts separately:
.entry {
color:#333;
}
Most themes, including Inuit Types, also set a specific color rule for fonts and headings.
So, to change all of the headings and content links to red, you would want to add a rule like this:
a, h1, h2, h3, h4, h5, h6 {
color: red;
}
For all of these examples, you can adjust the color name or code to your liking. There are a lot of shades of grey. :)
Also, to find out what other color settings the Inuit Types theme uses, open the original Inuit Types stylesheet and look for any rules that mention the "color:" property:
https://s-ssl.wordpress.com/wp-content/themes/pub/inuit-types/style.css?m=1354393395g&minify=false
If you need help adjusting any other text colors, point us to which text and please include a link where we can look at the text to investigate.
This topic has been closed to new replies.