I'm using the following for vB 3.0.3 and it takes care of the gap at the left and bottom aligns the signature, but because I'm using cellspacing="1" in my table I'm getting an annoying cellspacing line in the posts. This works good for IE. I haven't tested it in other browsers though.
In postbit_legacy, find:
Code:
<td class="alt2" width="175">
Change to:
Code:
<td class="alt2" width="175" rowspan="2">
Then find:
Code:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
Delete it.
Now find:
Code:
<!-- / edit note -->
</if>
</td>
</tr>
Directly underneath add:
Code:
<tr>
<td class="alt1" valign="bottom">
<if condition="$post['signature']">
<!-- sig -->
<div valign="bottom">
__________________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
</td>
</tr>