Try this and it should work, and it should work on both the regular postbit and legacy.
Open postbit:
# Find:
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
# Remove it #
# Find:
<!-- / edit note -->
</if>
</td>
</tr>
# Directly below this add:
<tr>
<td class="alt2">
</td>
<td class="alt1" align="$stylevar[right]">
<if condition="$post['signature']">
<!-- sig -->
<div>
__________________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>
</td>
</tr>
---------------------------------------------------------------------------------------------
Done! To align the signature on the left hand side just change the align="$stylevar[right]"> to align="$stylevar[left]">. Hope this helps.
|