Find the usergroupid for your Asst. Admin group, and change this:
PHP Code:
if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i><font color=red>$loggedin[username]</font></i></b>"; // Color for Admin
} else if (($loggedin['usergroupid'] == 5) and $highlightadmin) {
$username = "<b><font color=darkred>$loggedin[username]</font></b>"; // Color for Supermod
to this:
PHP Code:
if ($loggedin['usergroupid'] == 6 and $highlightadmin) {
$username = "<b><i><font color=red>$loggedin[username]</font></i></b>"; // Color for Admin
} else if (($loggedin['usergroupid'] == replace_this_with_your_ass_admin_usergroup_id) and $highlightadmin) {
$username = "<b><font color=somecolor>$loggedin[username]</font></b>"; // Color for Assistant admin (Remember to change the color)
} else if (($loggedin['usergroupid'] == 5) and $highlightadmin) {
$username = "<b><font color=darkred>$loggedin[username]</font></b>"; // Color for Supermod
Do the replacement at both places.
Remember to back up your file, since I have not tested this.