MyBB Community Forums

Full Version: how to make the background of admins/mods postbit a different color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to make the background of admins/mods postbit a different color?
Just a guess but you could probably alter the postbit template to use a css based on the usergroup.

	<div class="post_body scaleimages" id="pid_{$post['pid']}">
		{$post['message']}
	</div>

Add something like $post['groupname'] to the class then add the appropriate CSS. No need for a plugin or complex code.
There's a tutorial to accomplish this here, it is more or less exactly how labrocca described:

https://community.mybb.com/thread-134747.html

Good luck! Smile