Changing font colour of date post entry
-
Hi there,
Managed to change the circle date post from black to white on my blog, however, I cannot seem to figure out how to change the font colour – as you’ll be able to see on my blog, the actual date is white! (I’d preferably like it to be a gray colour)
If anyone can help that would be amazing!
https://lifeofanarthistorian.wordpress.com
The blog I need help with is: (visible only to logged in users)
-
Hi!
You can change that in customize>CSS by adding this code. I put rgb(221,221,221) because this is current month and year color.
.entry-header .post-date .entry-day { color: rgb(221, 221, 221); }I hope this helps you
-
Thanks so much. That helped, except now it’s only changed the number of the date.
Any clue how I can get the whole date to be the same colour?
Thanks again!
-
Hi again!
No problem about that. You can use .entry-month and .entry-year instead of .entry-day to add new rules to your theme CSS
Or, if you want to change both three in one row
.entry-header .post-date .entry-date { color: rgb(221, 221, 221); }I hope this helps you.
- The topic ‘Changing font colour of date post entry’ is closed to new replies.