Hi,
I'm really interested by this function.
I have joomla 1.5.23 and jcomments 2.2.0.2.
in the source code of my web pages, I found what you said
Code:
<div class="comment-box usertype-super-administrator">
and in /components/com_jcomments/tpl/default/tpl_comment.php file, I found what you said,
Code: (php)
if (isset($comment->usertype)) {
$commentBoxIndentStyle .= ' usertype-' . $comment->usertype;
}
and what I understood is that I have to add in one css file :
Code: (css)
.usertype-super-administrator {color: red !important;}
So my question is simple, in which file and where in this file, I have to add this line?
Thank you so much for your help.