Change color in default body Text and Widget Body Test
-
Please check out my Structure Theme Homepage Featured Topics LEFT sidebar Widget, when you hover over the post selection, the text color is too light to read and I would like to change it. Also, If you click on Featured Post titled “Pray with Me” the entire body text is a HEADING style, because the default body text is that same light grey that is in the widget text and is not readable. How can I change my Post default body text color.
Thanks ,
please see
wipoutreach.wordpress.com
The blog I need help with is wipoutreach.wordpress.com.
Add this to the end of your CSS and edit the color code as desired for the sidebar link hover colors:
#sidebar_right .widget ul li a:hover, #sidebar_left .widget ul li a:hover {
color: #33BB33;
}
The text color for post and page content is inherited from the body color setting:
body {
color: #33BB33;
}
If you want to change just the post/page content text color, you can use this instead, which is more specific:
.postarea p {
color: #33BB33;
}
OMG, “THANKS”, it all works, You have saved me soooo many headaches. Now I can move on to Content layout matters.
The topic ‘Change color in default body Text and Widget Body Test’ is closed to new replies.