I can't seem to figure out how to color the user groups? Is it under User Name CSS? If so what is the html code for it. I am used to vB, sorry lol
Its very simple: Just add this to username CSS: Code: color: #FF1A00; font-weight: bold; And change the color code number to your preference.
You'll have to go into the the sidebar_online_users Template and make the following change. Search: Code: class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{$user.username}</a><xen:if is="{$i} < {$onlineUsers.limit}">,</xen:if> Replace with: Code: class="username{xen:if '!{$user.visible}', ' invisible'}{xen:if {$user.followed}, ' followed'}">{xen:helper richUserName, $user}</a><xen:if is="{$i} < {$onlineUsers.limit}">,</xen:if>