MyBB Hacks

Full Version: help font not in line
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
can someone help me..
in my forum when someone use align center the first part of that thread become to the left..

here the screenshot
[attachment=709]
Does it happen to your horizontal postbit style too?
Hi,

i had the same problem before some weeks Smile
can be that it is a conflict with a plugin or theme. i donĀ“t know, i have so much installed Biggrin

solution:

find in Post Bit Templates/postbit_classic (in your chosen theme):

PHP Code:
<div id="pid_{$post['pid']}" style="padding: 5px 0 5px 0;">
				{$post['message']}
			</div>


add "<br />" before {$post['message']}:

PHP Code:
<div id="pid_{$post['pid']}" style="padding: 5px 0 5px 0;">
				 <br />{$post['message']}
			</div>


works fine for me Yes

wow...thx for help
great forum, great helpBiggrin
Reference URL's