MyBB Community Forums

Full Version: Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm currently having this problem on my forum.

Theme - Sleek
I'm also using the latest version of MyBB.

[Image: zOuGwlM.png]

Is there anyway I can put the post count under the group image?
navigate to postbit_classic template of the theme and find {$post['user_details']} - add <br /> before it and save the template

admin panel >> templates >> (Sleek templates) >> Post Bit Templates >> postbit_classic
Quote: {$post['usertitle']}<br />
<span class="smalltext">
{$post['useravatar']}
{$post['groupimage']}
<br />{$post['user_details']}
{$post['iplogged']}

That's how it looks right now. I saved it. But it still didn't fix it.
^ can we have your forum url
(2013-08-10, 01:19 PM).m. Wrote: [ -> ]^ can we have your forum url

http://lethal-pvp.com/forums
can you post content of postbit_author_user template (Sleek templates)
Have you tried putting <br> at the end of {$post['groupimage']}?

Try this:

{$post['groupimage']}<br>
(2013-08-10, 02:19 PM)Lingo Wrote: [ -> ]Have you tried putting <br> at the end of {$post['groupimage']}?

Try this:

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

I've tried that. It didn't work.

(2013-08-10, 01:58 PM).m. Wrote: [ -> ]can you post content of postbit_author_user template (Sleek templates)

I just looked in the postbit_author_user.

Quote:{$post['postnum']} Posts
{$post['replink']}{$post['warninglevel']}

I added <br> in front of it. It worked. Smile

Thanks a lot.