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:
You can then style each group in your CSS, like this:
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
<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