Changing font color some fonts in Organization Theme
-
I need some css help to change the font color (currently lime green) for the author, date posted, category, tags, and href fonts.
The blog I need help with is: (visible only to logged in users)
-
Good day,
You can change the color of the above post attributes by using the below CSS (for example, change color to “aqua”):
.entry-date.published {
color: aqua;
}.a.url.fn.n {
color:aqua;
}.post-meta a {
color:aqua;
}If you have WordPress Premium or Business, then please add the above codes into the Custom CSS field by following the below guide:
https://en.support.wordpress.com/custom-design/editing-css/
Hope this help.
-
Thanks for the code snippet. Unfortunately, the font color didn’t change. Would it make any difference if I tried using the hex codes for black for date and post meta and blue for url? This is a Premium theme, so I used the built-in css customizer.
-
Hi, to change the author, use the following custom CSS.
.author a { color: #000 }I see the lime green in sidebar and content links as well. If you wish to change those, use the following custom CSS.
a, a:link, a:visited { color: #000; }
- The topic ‘Changing font color some fonts in Organization Theme’ is closed to new replies.