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
can be that it is a conflict with a plugin or theme. i donĀ“t know, i have so much installed
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