MyBB Community Forums

Full Version: Multiple Group Images Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guy. I have small problem and I'm hoping you can help. We recently installed this mod for mybb 1.8. So far it's successful. However, the additional user group images in the post bit appear stacked instead of side by side. We would prefer them side by side but we can't figure out how to do that for the life of us.

Below I've included our templates post bit code. Any help is appreciated.

{$ignore_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="post {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author">
<br />	{$post['useravatar']}
	<div class="author_information">
			<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
			<span class="smalltext">
				{$post['usertitle']}<br />
				{$post['userstars']}
                                {$post['groupimage']}{$post['additional_images']}
			</span>
	</div>
	<div class="author_statistics">
		{$post['user_details']}<br />{$post['usermood']}
	</div>
</div>
<div class="post_content">
	<div class="post_head">
		{$post['posturl']}
		{$post['icon']}
		<span class="post_date">{$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span></span>
	</div>
	<div class="post_body scaleimages" id="pid_{$post['pid']}">
		{$post['message']}<br />
	</div>
	{$post['attachments']}
	{$post['signature']}
	<div class="post_meta" id="post_meta_{$post['pid']}">
	</div>
</div>
<div class="post_controls">
	<div class="float_left">
		{$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}{$post['iplogged']}{$post['ratemf']}
	</div>
	<div class="float_right">
		{$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
	</div>
</div>
</div>