Nishita – font color change not working
-
How do I go about changing the color of the body font in Nishita theme? This is what I have in my css, but the color is not changing.
body {
background: #fc9d9a;
color: #83af9b;
font-family: “HelveticaNeue-Light”, “Helvetica Neue Light”, “Helvetica Neue”, Helvetica, Arial, “Lucida Grande”, sans-serif;
font-size: 12px;
}The blog I need help with is: (visible only to logged in users)
-
Do you want to change the font color for your posts?
Try this:
.hentry { color: #83af9b; } -
Thank you, lorenzocaum! That worked for the text of my posts, but how do I also change the following text font colors to match:
-text of the date, category, number of comments so it matches
-text of my widget areas
-text of the commentsThank you!
-
Add these and change the hex numbers:
.photo-meta-inner a { color: #123456; } #sidebar-footer p { color: #123456; } .comment-content { color: #123456; }If you want the same color for all three, you can combine them into one:
.photo-meta-inner a, #sidebar-footer p, .comment-content { color: #123456; } -
-
- The topic ‘Nishita – font color change not working’ is closed to new replies.