Posts: 12
Threads: 4
Joined: Mar 2014
Sorry - Commentics newbie question.
Need to change font of name of commenter in comment box. Just can't find where.
Thanks for great script.
Posts: 2,904
Threads: 59
Joined: Jun 2010
Hi,
This gives me a great opportunity to explain the new override system! I'm going to write some proper documentation about it this weekend.
What you should do is create a new CSS file in the folder /commentics/css/
custom/ and call it default.css. If it's easier then just copy the one in /commentics/css/. In the new CSS file, put only the styles that you want to override. This new file will be safe when you next upgrade so all of your custom styles will be preserved.
In the new file add this:
Code:
.cmtx_admin_name_without_website_text {
color: red;
}
.cmtx_name_without_website_text {
color: red;
}
It wasn't clear from your post whether you wanted to change the font family or font colour etc so I used colour as an example as that's what most people want to change.
Have
you completed
the interview?
Posts: 12
Threads: 4
Joined: Mar 2014
Many thanks Steven - both for prompt informative reply and great script.