custom text color in 'Fresh and Clean'
-
I am using the Fresh and Clean theme to which I’ve made various CSS changes.
I’m still stuck on two things. First, I’d like to change the post body color. I’ve tried writing code, e.g. { color: #FF000;} with no luck.
I’d also like to change the blue links to orange. I’ve managed to change most all the links except for what you see in blue there.
Thanks for any help!!!
The blog I need help with is: (visible only to logged in users)
-
Firstly, hex color codes have 6 digits and your example above only has 5. Probably just a miss when you typed it in above since I see you have 6 digits in the color changes you’ve made in the CSS so far.
Post body color:
.entry-content { color: #FF0000; }Remaining blue link colors to orange:
.entry-meta a { color: #FF8833; } -
-
- The topic ‘custom text color in 'Fresh and Clean'’ is closed to new replies.