Comment Color

Hi,
Im trying to change colour of the text & also it shows ADMIN, can we have another name instead of ADMIN, as the person posting.
Please see link : http://avecshaz.com/askforadvice/

Kindly help me, how to change both : Font colour of the Comment Section Text & Name of the Admin

Hi, Can any one help me with this asap?

Hi @masumi,

I hope you are well today and thank you for your questions.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

#comment_list .comment-content {
    color: #000;
}
#comment_list cite.fn.ama-author-name {
    font-size: 0;
}
#comment_list cite.fn.ama-author-name:before{
    content: "Masumi";
    font-size: 12px;
}

Please change the admin text “Masumi” and color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin