MyBB Community Forums

Full Version: Posbit rep, Post, join date on the left side
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I change mine to something like that instead of the default mybb postbit look.

[Image: XCXGx.png]

please help me guys
Edit Admin CP >> Templates >> Post Bit Templates >> Post bit as follows

<td class="post_author">
<strong><span class="largetext">{$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>

CHANGE THE ABOVE TO:
<td class="post_author">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}
{$post['groupimage']}
{$post['user_details']}
</span>
</td>