Changing Comment Section [Colors]

Posted in: Newspaper
Post count: 38

Hi,

I inserted the following lines of code in, Theme Panel > Custom CSS > YOUR CUSTOM CSS:

.comment-author .vcard .fn a{color:#00FF00;}
.comment-body p a{color:#C0C0C0;}
.comment-author.vcard .fn a{color:#e29700}
.comment-author.vcard .fn a:hover{color:#FF0000;}
.comment-list .comment-meta a{color:#303030 ;}

However, they did not make the changes I had expected. Could you possibly let me know what I am doing wrong here?

Thank you.

(For reference: http://s3.postimg.org/peh0nb9er/Untitled.jpg)

Post count: 1291

Hi,

Sometime you have to use the !important parameter to make it work, ex:

.comment-author .vcard .fn a{color:#00FF00 !important;}

Thank you, Emil G.

Post count: 38

Hello Emil G,

I changed my code (above) to:

.comment-author .vcard .fn a{color:#00FF00 !important;}
.comment-body p a{color:#C0C0C0 !important;}
.comment-author.vcard .fn a{color:#e29700 !important;}
.comment-author.vcard .fn a:hover{color:#FF0000 !important;}
.comment-list .comment-meta a{color:#303030 !important;}

And it seems no changes were made to the comment section :s

Any suggestions?

Thanks.

Post count: 6600

Hi,

Please send a link to your site and point me what do you want to change using this css, I need to inspect this so I can provide an relevant answer.

Thanks

Post count: 38

http://www.Leadnr.com

Basically, I want to change the Content Font from 400 weight to 300 weight for Roboto font.

Thank you.

Post count: 6600

Hi,

Use this css: http://screencast.com/t/TGmLb11X

body {
font-family: 'Roboto','PT Sans',sans-serif !important;
font-weight: 400 !important;
}

Will change the font and font-weight on the whole site.

Thanks

Post count: 38

Hi,

I will try that code, where should I put it? Btw, I want 300 font weight, not 400. So should I change that “400” value to “300” I’m guessing?

Also, changing the comment section colors using the code you have provided me:

.comment-author .vcard .fn a{color:#00FF00 !important;}
.comment-body p a{color:#C0C0C0 !important;}
.comment-author.vcard .fn a{color:#e29700 !important;}
.comment-author.vcard .fn a:hover{color:#FF0000 !important;}
.comment-list .comment-meta a{color:#303030 !important;}

Does not seem to work.

You can see a live preview of my comment section here: http://leadnr.com/featured/heres-to-a-cool-looking-post-page

Post count: 6600

Hi,

I can’t see your site so I can’t inspect it to check this. Please provide a link where I can see this issue and also provide more details on what do you want to achieve.

Thanks

Viewing 8 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic.