MyBB Community Forums

Full Version: How can i put image on posbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone..!I've a question about putting image on posbit.
[Image: imagezb9.png]
You can see my problem with this picture.
I can't put image on reputation and warning level part.The image is always near the join part.But it must be near the reputation part.I put <br /> code.But it was useless.Solve my problem please.Thanks!
Post your postbit_author_user template here and we can see what's what.
<img src="images/newtheme/message.png" width="16" height="16" />
{$lang->postbit_posts} {$post['postnum']}<br />
<img src="images/newtheme/join.png" width="16" height="16" />
{$lang->postbit_joined} {$post['userregdate']}
<img src="images/newtheme/reputation.png" width="16" height="16" />
{$post['replink']}{$post['warninglevel']}

I'm still waiting.
Try putting an image in the reputation template (postbit_reputation). So after:

<br />{$lang->postbit_reputation} {$post['userreputation']}

add

<img src="images/newtheme/reputation.png" width="16" height="16" />

And then the same in postbit_warninglevel. See what that does.
Thanks a lot.
No problem. I might also use this, never thought of adding images there.