MyBB Community Forums

Full Version: CSS Badges in Postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you'd like to have CSS group badges in your postbit, it's really simple. First, open your Post Bit Templates > postbit_author_user template, and add this to the very top:

<div class="{$usergroup['title']}">{$usergroup['title']}</div>	
<br />

You can then style each group in your CSS, like this:

.Administrators {
display: inline-block;
height: 30px;
line-height: 30px;
padding: 0 15px;
color: red;
}

This only works for the postbit though, so keep that in mind.


I've attached an example image, which you can get by using the CSS button resource here: http://community.mybb.com/thread-137656.html
how about on profile?
I didn't get this really.
Here's a more detailed version of the tutorial, Jimmy. Smile

http://community.mybb.com/thread-137656.html
Very nice