Change Color Featured Post Text
- The topic ‘Change Color Featured Post Text’ is closed to new replies.
Need help? Check out our Support site, then
I would like to change the color of the date on the featured post slider. How do you do that? Is it also possible to put a background or a drop shadow to make the text more visible?
The blog I need help with is: (visible only to logged in users)
Hi, please go to Design > Customize > CSS and add the following CSS:
.featured-posts .entry-meta .posted-on .entry-date { color: #c00; }
And replace “#c00” with your color.
To add a background or text shadow, please use this code:
.featured-posts .entry-meta .posted-on .entry-date {
color: #c00;
background: #fff; /* your background */
padding: 2px 5px;
text-shadow: 1px 1px 2px #fff; /* text-shadow */
}
Thanks!