Okay, so I figured out how to highlight admins comments. Here are the 2 codes I'm using:
This code for the comments.php:
<li class=”user_id)
$oddcomment = “admincomment”;
echo $oddcomment;
?>” id=”comment-”>
And this code for the style.css:
.admincomment{
background:#FF0000;
border:1px solid #99FF00;
padding:5px 0px 5px 0px;
}
The problem is I want it to be a user ID instead of "Admincomment" because for some reason it is also highlighting another subscriber users comments... PLEASE HELP!