Postbit Legacy - Signature Inside a Cell

Ever hate the horizontal line in the signatures? Well here is a great way to separate your signatures and give your forum a nice and clean vertical look. This is for the Postbit_Legacy template layout. I will help with this mod. I am not an expert coder so if anyone wants to give advice it is totally welcomed in a constructive fashion. Enjoy!!!

Find:
Code:
$template_hook[postbit_signature_start]

[color=Red]Remove Code in Between Here[/color]

$template_hook[postbit_signature_end]
Find:
Code:
        $template_hook[postbit_controls]
        <!-- / controls -->
    </td>
</tr>
</table>
Add Below:
Code:
<table class="signature" width="100%">
        <if condition="$post['signature']">
            <tr>
            <td class="alt2">
                <!-- sig -->
                <div>
                    $post[signature]
                </div>
                <!-- / sig -->
            </td>
            </tr>
        </if>  
</table>
Add in the additional CSS Area of Your Template
Code:
.signature { 
border-left: solid 1px #0B198C;
border-right: solid 1px #0B198C;
border-bottom: solid 1px #0B198C;
background: #FFFFFF;
}
For the above code I suggest matching this with your .tborder values. Enjoy!


</span></span>
 
Top