MyBB Community Forums

Full Version: post bit re-arrangement
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i re-arrange my post bits?

heres a screenshot of my issue. most of the items are populated on the right-hand side, i want to move around some of them on the left side, just to make it balance.

thanks

[attachment=17781]
Templates & Styles >> Templates >> Your current theme >> Postbit >> Postbit
i have other mods installed that display on the post bit. i dont really see those mods on >>template>>post bit>>post bit
bump!
Can somebody help me on this?

Thanks
(2010-03-31, 02:43 AM)DannysForum Wrote: [ -> ]Templates & Styles >> Templates >> Your current theme >> Postbit >> Postbit

That is how you would do it.... and if you have plugins installed, it would appear like
{$modname}
Is this the part I need to edit? If yes, how? I want to put the Post Count and Joined Date below the Rank Images. Thanks
<tr>
			<td class="trow1 {$unapproved_shade}">
				<table cellspacing="0" cellpadding="0" border="0" style="width: 100%;">
					<tr>
						<td class="post_avatar" width="1" style="{$post['avatar_padding']}">
							{$post['useravatar']}
						</td>
						<td class="post_author">
							<strong><span class="largetext">{$post['country']}{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
							<span class="smalltext">
								{$post['usertitle']}<br />
								{$post['userstars']}
								{$post['groupimage']}
							</span>
						</td>
						<td class="smalltext post_author_info" width="165">
							{$post['user_details']}
						</td>
					</tr>
				</table>
			</td>
		</tr>
Post Count and Joined Date are in the postbit_author_user template.

	{$lang->postbit_posts} {$post['postnum']}<br />
	{$lang->postbit_joined} {$post['userregdate']}
What should I edit?