Add a css color property like here
For more info go to css color property
Without a valid link it is almost impossible to help. however, this code will change some of the colors but not all because some of the defaults needs to be over-ridden!
body {
color: blue !important;
}
After pasting the above code in your child theme’s css file, you need to deal with other HTML tags and change their color in almost the identical fashion.
Anyway, you have got the ideas how to do now.
Hi!
Thanks guys for the suggestions but they don’t work. Let me be more detailed. My problem is in changing the font color of my blog heading, not the body. Someone has helped me changed the font style with this code and it works very well:
.post h2 {
font-size: 18px !important;
font-family: Verdana, “Times New Roman”, Times, serif;
}
Now I tried changing the color and put code like this:
color: blue !important;
in to the CSS but nothing happens. Please remember, my problem is in changing the font color of the blog heading, not the body. And it is also a Child Theme of Response. My blog is here http://ectindia.com
Assistance will be very appreciated.Thanks!