how to make administrator and moderator names in colors?
Admin and mod names in color
Collapse
X
-
heres what i do on my site (you'll need to modify it to suit yours)
function
PHP Code:function get_user_class_color($class) {
switch($class) {
case 10: $color = "owner"; break;
case 5: $color = "moderator"; break;
default: $color = "member";
}
}
Code:.owner { color: #ff0000; } .moderator { color: #0000ff; } .member { color: #000000; }
PHP Code:echo "You are viewing <span class='".get_user_class_color($user['class'])."'>".$user['username']."</span>'s profile!";
Comment
Comment