Ahhh...so you were the one sneaking around there.

Did you see all of the cob-webs on the forum?
I can give you the code and where I put it, but I don't remember the original code. It should be pretty easy to find though.
In the online.php, find this:
PHP Code:
$count = 0;
while ($user = $DB_site->fetch_array($allusers)) {
if ($user['userid']) { // Reg'd Member
$key = $user['userid'];
if (($userinfo["$key"]['lastactivity'] < $user['lastactivity']) or !$userinfo["$key"]['lastactivity']) {
$userinfo["$key"]['realname'] = $user['username'];
if ($user['usergroupid'] == 6 and $highlightadmin) {
And this is what I have below it:
PHP Code:
$userinfo["$key"]['username'] = "<b><i><font color=\"red\">$user[username]</i></b></font>";
} else if (($mod["$key"] or $user['usergroupid'] == 5)and $highlightadmin) {
$userinfo["$key"]['username'] = "<b><font color=\"darkred\">$user[username]</b></font>";
} else {
$userinfo["$key"]['username'] = "<font color=\"blue\">$user[username]</font>";
}
Hope that helps.
If you need it in any other places, just let me know.
Quote:
Originally posted by dssforum
Boofo
I saw on your forums u had Super mods in red and mods in another color and admins in another can u give me the code to add to have that ?
|