MyBB Community Forums

Full Version: Put a gap between user bar and stars in post bit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: jhi51i.png]

How would I increase that gap?
Got to your postbit template(AdminCP -> Templates -> Current Theme Templates -> Postbit -> postbit)

There find this code:
{$post['userstars']}
{$post['groupimage']}

Adding a space between them will add a space in the forum
(2012-06-12, 11:55 PM)Aniruddh Wrote: [ -> ]Got to your postbit template(AdminCP -> Templates -> Current Theme Templates -> Postbit -> postbit)

There find this code:
{$post['userstars']}
{$post['groupimage']}

Adding a space between them will add a space in the forum

Did you mean just press Enter or is there some type of code (sorry I'm new to this forum stuff Toungue)? I pressed enter to separate them but it didn't add any gaps between them.
Add a <br /> after userstars.
{$post['userstars']}<br />

If thats what you wanted.
(2012-06-13, 12:09 AM)wmc Wrote: [ -> ]Add a <br /> after userstars.
{$post['userstars']}<br />

If thats what you wanted.

The gap is very huge. I only wanted to move it down a few pixels.

[Image: LlGVYz.png]
See if this does anything.

{$post['userstars']}<div style="margin: 0 0 .5em 0;"></div>
or
{$post['userstars']}<span style="margin: 0 0 .5em 0;"></span>

Not sure if correct method or not.
(2012-06-13, 12:27 AM)wmc Wrote: [ -> ]See if this does anything.

{$post['userstars']}<div style="margin: 0 0 .5em 0;"></div>
or
{$post['userstars']}<span style="margin: 0 0 .5em 0;"></span>

Not sure if correct method or not.
Those are perfect mate! Thank you so much!