Profile Username Styling

JordanH

Well-known member
I want it so if you go to a members profile, their username at the top has the css styling for which group they are in. I also want it to show up in the profile status and comments:

db0cdbd0047a418f9ba6ae0.png



The photo above is what i mean where I want the CSS styling to show instead of jsut the text. How can this be done? I went through the theme templates but could not find out where to do it. Thanks in advance.
 
Thanks, and based on that I was also able to go and edit the comment part of the status's.

But now theres the actual status that needs to be done. Do you know if theres a way to do it for the example below:
91f8b335f6234512a28c657.png


Again, thanks in advance.
 
Template message_simple find it
PHP:
<div class="messageContent">
<xen:username user="$message" class="poster"/>
<article><blockquote class="ugc baseHtml{xen:if $message.isIgnored, ' ignored'}">{xen:helper bodyText, $message.message}</blockquote></article>
</div>
Replace by
PHP:
<div class="messageContent">
<xen:username user="$message" class="poster" rich="true" />
<article><blockquote class="ugc baseHtml{xen:if $message.isIgnored, ' ignored'}">{xen:helper bodyText, $message.message}</blockquote></article>
</div>
 
Top Bottom