Quote:
Originally Posted by ACIKillJoy
For those who are using postbit_legacy templates that do not include this line:
PHP Code:
<td class="alt2" width="175" style="border: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]; border-top: 0px; border-bottom: 0px">
I have found a fix.
You need to find this:
PHP Code:
<tr valign="top">
<td class="alt2" width="175">
<div id="postmenu_$post[postid]">
then change it to this:
PHP Code:
<tr valign="top">
<td class="alt2" width="175" rowspan="2">
<div id="postmenu_$post[postid]">
Then delete this:
PHP Code:
$template_hook[postbit_signature_start]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
find this:
PHP Code:
<!-- / edit note -->
</if>
</td>
</tr>
and after add this:
PHP Code:
<tr>
<td class="alt1" valign="bottom" style="border-right: $stylevar[cellspacing]px solid $stylevar[tborder_bgcolor]">
$template_hook[postbit_signature_start]
<if condition="$post['signature']">
<!-- sig -->
<hr size="1" style="color:$stylevar[tborder_bgcolor]" />
<div valign="bottom">
<center>$post[signature]</center>
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
</td>
</tr>
I added a center tag around my $post[sig] code just to make it look better on my site. feel free to remove it if you want.
This is working on 3.6.7
To see it working on my site here is a link to a post
http://www.anticheatinc.com/forums/s...02&postcount=1
|
This almost solved it for me - only there's a sort of ugly white long above the black line now.