Add this to your headers if you don't have it...
<script src="/jquery.js"></script>
Footers:
<script>
function color_group_name() {
//Created by Agent Moose (smcodes.smfforfree3.com)
var group = new Array()
group[group.length] = ["Newbie","orange"]
group[group.length] = ["MEMBER GROUP","COLOR"]
for(f=0;f<group.length;f++){
$("div.smalltext").each(function() {
if(this.innerHTML.match(group[f][0])){
this.innerHTML = this.innerHTML.replace(group[f][0],"<font color='" + group[f][1] + "'>" + group[f][0] + "</font>");
};});};}
color_group_name();
</script>
What this code does is let you add color to the Membergroup name that showes up in the post. It doesn't change the color of the username, just the little membergroup that showes under there username.
MEMBER GROUP = The Name of the member group.
COLOR = The color it will be.
Preview