UH...i can't find it, try this
find the following in online.php
Code:
if ($user['usergroupid'] == 6 and $highlightadmin) {
$userinfo["$key"]['username'] = "<b><i>$user[username]</i></b>";
and replace with
Code:
if ($user['usergroupid'] == 6 and $highlightadmin) {
$userinfo["$key"]['username'] = "<b><i>$user[username]</i></b>";
if ($user['usergroupid'] == XX and $highlightadmin) {
$userinfo["$key"]['username'] = "<b><i>$user[username]</i></b>";
Repalce XX with the id of the group
Drk