MyBB Community Forums

Full Version: Move the Buddy_online image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there anyway you can move the buddy_online.gif / buddy_offline.gif image to be under the avatar in the postbit? So that it comes out like example 2?

Example 1 -
[Image: example1s.png]

Example 2 -
[Image: example2p.png]

Go to AdminCP > Templates & Style > Templates > (click the template you like to edit) > Postbit Templates > postbit_classic ... Then change:
		<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
		<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}
			{$post['useravatar']}<br />
			{$post['user_details']}
		</span>
to
		<strong><span class="largetext">{$post['profilelink']}</span></strong><br />
		<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}
			{$post['useravatar']}<br />
			{$post['onlinestatus']}<br />
			{$post['user_details']}
		</span>
Thanks, worked a treat!