Quote:
Originally Posted by Alphawolf83
I solved it a week ago I guess... so here is the solution. Works for me.
In postbit_legacy oder postbit template on top
Replace:
PHP Code:
<if condition="!$post['islastshown']"><div style="padding:0px 0px $stylevar[cellpadding]px 0px"></if>
with
PHP Code:
<if condition="!$post['islastshown']"><div style="padding:0px 0px $stylevar[cellpadding]px 0px"><else /><div style="padding:0px 0px $stylevar[cellpadding]px 0px"></if>
And at the end of the template
Replace:
PHP Code:
<if condition="!$post['islastshown']"></div></if>
with
PHP Code:
<if condition="!$post['islastshown']"></div><else /></div></if>
Greetz 
|
This wouls be the same as:
In postbit_legacy oder postbit template on top
Replace:
PHP Code:
<if condition="!$post['islastshown']"><div style="padding:0px 0px $stylevar[cellpadding]px 0px"></if>
with
PHP Code:
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
And at the end of the template
Replace:
PHP Code:
<if condition="!$post['islastshown']"></div></if>
with