Hello!
I'd like to change the appearance of the number of comments that we can see for each article of the homepage.
I'd like to see them biger with another color, it is possible?
Thanks!
Fabrice
Hello!
I'd like to change the appearance of the number of comments that we can see for each article of the homepage.
I'd like to see them biger with another color, it is possible?
Thanks!
Fabrice
Hey,
the small blog meta in general is set in your style.css under
.entry-content, .blog-meta
and
.blog-meta, .blog-meta strong
The link color is set in your minimal-skin.css under
.blog-meta, .blog-meta a
Or you can target the "X Comments" in particular by adding this to your custom.css
.comments-link, .comments-link strong{
color: #FF0099 ! important;
font-size: 20px ! important;
}Thanks:-)
Glad that Chris could help you :)
Well it's not working in fact.
I didn't see them in the CSS file. I'd like to change only the apparance of the number of the coments in the homepage at the right of the date
Try following code in css/custom.css:
.blog-meta a.comments-link {
color: #AAAAAA;
}You must log in to post.