9
The one you have to change is /modules/system/templates/system_comments.html
currently it should be something like
<tr>
<td class="head"><a id="comment<{$comment.id}>">a> <{$comment.poster.uname}>td>
<td class="head"><div class="comDate"><span class="comDateCaption"><{$lang_posted}>:span> <{$comment.date_posted}> <span class="comDateCaption"><{$lang_updated}>:span> <{$comment.date_modified}>div>td>
tr>
<tr>
<{if $comment.poster.id != 0}>
<td class="odd"><div class="comUserRank"><div class="comUserRankText"><{$comment.poster.rank_title}>div><img class="comUserRankImg" src="<{$xoops_upload_url}>/<{$comment.poster.rank_image}>" alt="" />div><img class="comUserImg" src="<{$xoops_upload_url}>/<{$comment.poster.avatar}>" alt="" /><div class="comUserStat"><span class="comUserStatCaption"><{$lang_joined}>:span> <{$comment.poster.regdate}>div><div class="comUserStat"><span class="comUserStatCaption"><{$lang_from}>:span> <{$comment.poster.from}>div><div class="comUserStat"><span class="comUserStatCaption"><{$lang_posts}>:span> <{$comment.poster.postnum}>div><div class="comUserStatus"><{$comment.poster.status}>div>td>
<{else}>
<td class="odd"> td>
<{/if}>
<td class="odd">
<div class="comTitle"><{$comment.image}><{$comment.title}>div><div class="comText"><{$comment.text}>div>
td>
tr>
<tr>
<td class="even">td>
<{if $xoops_iscommentadmin == true}>
<td class="even" align="right">
<a href="<{$editcomment_link}>&com_id=<{$comment.id}>"><img src="<{$xoops_url}>/images/icons/edit.gif" alt="<{$lang_edit}>" />a><a href="<{$deletecomment_link}>&com_id=<{$comment.id}>"><img src="<{$xoops_url}>/images/icons/delete.gif" alt="<{$lang_delete}>" />a><a href="<{$replycomment_link}>&com_id=<{$comment.id}>"><img src="<{$xoops_url}>/images/icons/reply.gif" alt="<{$lang_reply}>" />a>
td>
<{elseif $xoops_isuser == true && $xoops_userid == $comment.poster.id}>
<td class="even" align="right">
<a href="<{$editcomment_link}>&com_id=<{$comment.id}>"><img src="<{$xoops_url}>/images/icons/edit.gif" alt="<{$lang_edit}>" />a><a href="<{$replycomment_link}>&com_id=<{$comment.id}>"><img src="<{$xoops_url}>/images/icons/reply.gif" alt="<{$lang_reply}>" />a>
td>
<{elseif $xoops_isuser == true || $anon_canpost == true}>
<td class="even" align="right">
<a href="<{$replycomment_link}>&com_id=<{$comment.id}>"><img src="<{$xoops_url}>/images/icons/reply.gif" alt="<{$lang_reply}>" />a>
td>
<{else}>
<td class="even"> td>
<{/if}>
tr>
each part that has
class="head" in it will need a new class like
class="head_orange"You will then have to set the CSS Element in style.css in your theme just put it below #head, tr.head td {}
See
CSS_Xoops2 for more CSS Data; Once you have edited this you will have to do an update on the system module and possibly clear out your /template_c path.