MyBB Community Forums

Full Version: How to fix the alignment?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: c214ab74bae00ee009d6c6ec9d78ca2f.png]
How do i fix this? (The post #)
Go to Templates and postbit template then postbit, after that between the {$post['groupimage']} and {$post['iplogged']} put a <br> tag between them like below...

{$post['groupimage']}
<br>
{$post['user_details']}
{$post['iplogged']}
(2014-06-10, 01:16 AM)Skatehawk11 Wrote: [ -> ]Go to Templates and postbit template then postbit, after that between the {$post['groupimage']} and {$post['iplogged']} put a <br> tag between them like below...

{$post['groupimage']}
{$post['user_details']}
<br>
{$post['iplogged']}

I think you mean this:

{$post['groupimage']}
<br>
{$post['user_details']}
{$post['iplogged']}
(2014-06-10, 09:07 AM)eNvy Wrote: [ -> ]
(2014-06-10, 01:16 AM)Skatehawk11 Wrote: [ -> ]Go to Templates and postbit template then postbit, after that between the {$post['groupimage']} and {$post['iplogged']} put a <br> tag between them like below...

{$post['groupimage']}
{$post['user_details']}
<br>
{$post['iplogged']}

I think you mean this:

{$post['groupimage']}
<br>
{$post['user_details']}
{$post['iplogged']}
Thanks both of you!