Ok in admin/functions.php
find:
PHP Code:
// user
global $bbuserinfo,$session,$ignore,$cookietimeout;
// showthread
global $counter,$firstnew,$sigcache,$highlight,$postid,$forum;
// global options
global $showdeficon,$displayemails,$enablepms,$allowsignatures,$wordwrap,$dateformat,$timeformat,$logip,$replacewords,$postsperday,$avatarenabled,$registereddateformat,$viewattachedimages;
after I have
PHP Code:
// begin glowing admin
$post[specialusername] = $post[username];
$usergroupid=$post[usergroupid];
if ($usergroupid == 6) { $post[specialusername] = "<table style=\"filter:glow(color=#0066CC, strength=6)\"><tr><td><font size='-1' color='white'><b>$post[username]</b></font></td></tr></table>"; }
if ($usergroupid == 5) { $post[specialusername] = "<table style=\"filter:glow(color=orange, strength=8)\"><tr><td><font size='-1' color='white'><b>$post[username]</b></font></td></tr></table>"; }
if ($usergroupid == 7) { $post[specialusername] = "<table style=\"filter:glow(color=#669999, strength=8)\"><tr><td><font size='-1' color='white'><b>$post[username]</b></font></td></tr></table>"; }
// end glowing admins
What do I have to add in there to make registered users or anyone who isn't a mod, supermod, or admin glow a certain color? Anyone know????