Format featured article byline
- The topic ‘Format featured article byline’ is closed to new replies.
Need help? Check out our Support site, then
How can I change the font-size, font color and background color of the “byline” (date, comment) for featured articles on my homepage?
Also, is it possible to remove the comment count?
Thanks,
M
P.S. Yes, I have Custom Design.
The blog I need help with is: (visible only to logged in users)
Hi M,
Try this for an example:
#main .post-meta {
font-size: 10px;
color: #000000;
background: #ffffff;
}
#main .post-meta a {
color: #000000;
}
You could also hide the comment count with this:
#main .post-comments {
display: none;
}
Thanks!
Scott
Perfect, thanks!