How to change default font colors in Fresh & Clean theme
-
I’m using the Fresh & Clean theme at my blog here: http://katbellies.wordpress.com/
I would like to change the default font color for writing bulleted (numbered or dotted) lists.
I was able to change the Headings color in the appearance> custom design>colors tab.
I was able to change the default paragraph color by adding this bit of code to my appearance>custom design> CSS stylesheet editor (this took quite a bit of googling to find):
p {
color: black;
}What is the code to add to change the default color of bullet lists?
The blog I need help with is: (visible only to logged in users)
-
What is the code to add to change the default color of bullet lists?
I went in search of a specific example on your blog and I found these posts that have bulleted and numbered lists in them:
http://katbellies.wordpress.com/2013/02/12/you-know-its-monday-when/
http://katbellies.wordpress.com/2013/02/11/this-month-in-dance/This CSS will cover all the text inside the posts’ main content area in the Fresh & Clean theme, including both kinds of lists:
.entry-content { color: #000; }That rule basically covers all text inside a post or page that doesn’t have another specific rule set somewhere in the theme’s CSS (which you probably don’t need to worry about).
This example would just affect bulleted lists in content areas:
.entry-content ul { color: #000; }And this example would just affect numbered lists in content areas:
.entry-content ol { color: #000; }Hopefully that gives you an idea about how to setup similar CSS rules in case you run into any other lists you’d like to adjust the text color for.
Great background image on http://katbellies.wordpress.com/ ! I’ve always loved shadows and silhouettes in photography.
-
-
- The topic ‘How to change default font colors in Fresh & Clean theme’ is closed to new replies.