This is the code I got working about a month ago
In admin/functions.php
FIND:
PHP Code:
// ###################### Start getpostbit #######################
function getpostbit($post) {
// sorts through all the stuff to return the postbit template
// user
global $bbuserinfo,$ignore;
// showthread
global $counter,$firstnew,$sigcache,$highlight,$postid,$forum;
// global options
global $showdeficon,$showonline,$displayemails,$enablepms,$allowsignatures,$wordwrap,$dateformat,$timeformat,$logip,$replacewords,$postsperday,$avatarenabled,$registereddateformat,$viewattachedimages;
// database
global $DB_site;
UNDER IT ADD
PHP Code:
// begin glowing admin
$post[specialusername] = $post[username];
$usergroupid=$post[usergroupid];
if ($usergroupid == 6) { $post[specialusername] = "<table style=\"filter:glow(color=blue, 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=blue, strength=4)\"><tr><td><font size='-1' color='white'><b>$post[username]</b></font></td></tr></table>"; }
// end glowing admins
This works for supermods and admins... Supermod usergroupid is 5, admin is 6.