MyBB Community Forums

Full Version: Text being bumped
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I thought this was an issue with the theme I was using, but it occurs even with the default theme ... please see the attachment.

There is no line break there. It seems as if the post number and checkbox are forcing the text downwards.
I believe it's somewhat intentional (and does somewhat depend on your browser).

You can add a
<div class="clear"></div>
in the postbit template to fix the issue. If you need more assistance, post back.
(2008-08-05, 07:23 AM)ZiNgA BuRgA Wrote: [ -> ]You can add a
<div class="clear"></div>
in the postbit template to fix the issue. If you need more assistance, post back.

Where do I add this?

Also, I don't get this issue while browsing this forum, with the same browser.
I have installed yet another theme (Afresh), have not modified it, and am still having this issue. Help?
Add the code under:
{$post['posturl']}
In the postbit and postbit_classic templates.
(2008-08-06, 07:28 AM)ZiNgA BuRgA Wrote: [ -> ]Add the code under:
{$post['posturl']}
In the postbit and postbit_classic templates.

Do I put anything inside the div tags?
No you don't need to put anything.
This just pushes the entire subject line down ... which is not really the solution I was hoping for. :x
Put it immediately before this (in postbit_classic). I doubt you need it for the horizontal postbit.

<!-- put it here -->
<div id="pid_{$post['pid']}" style="padding: 5px 0 5px 0;">
				{$post['message']}
			</div>
That did it, great! Thank you!