Anyone that has a aftermarket skin may have the problem with that line that is directly under the post and then a big space and then the signature.
Well I hated the line there and played with some code until I got it looking the way I wanted it to.
So here is my edition of this mod.
Go to the postbit_legacy template for the skin you are working with.
Find This:
Code:
<td class="alt2" width="175">
Replace With This:
Code:
<if condition="$post['signature']">
<td class="alt2" width="175" rowspan="2">
<else />
<td class="alt2" width="175">
</if>
Find This:
Code:
$template_hook[postbit_signature_start]
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
$template_hook[postbit_signature_end]
Replace With This:
Code:
$template_hook[postbit_signature_start]
<if condition="$post['signature']">
<tr height="1">
<td class="alt1" valign="bottom">
<!-- sig -->
<div valign="bottom">
$post[signature]
</div>
<!-- / sig -->
</td>
</tr>
</if>
$template_hook[postbit_signature_end]
Now save the template and refresh the forum and it should show a bit neater then it did before.
Tmod