Messed around with it, now no javascript is used (IIRC that was to add a bottom margin?) and it's all css based now.
I have it installed on both my test forum as well as my live one. Looks okay?
Basically got rid of the javascript call, deleted the css signa and changed this in viewtopic_body.html
Code: Select all
<!-- MOD: Sig2Bottom -->
<!-- IF postrow.SIGNATURE --><div class="clear"></div>
<div id="sigwrap">
<div id="sig{postrow.POST_ID}" class="signature signa">{postrow.SIGNATURE}</div>
</div><!-- ENDIF -->
to this
Code: Select all
<!-- MOD: Sig2Bottom -->
<!-- IF postrow.SIGNATURE --><div class="clear"></div>
<div id="sigwrap">
<div id="sig{postrow.POST_ID}" class="signature">{postrow.SIGNATURE}</div>
</div><!-- ENDIF -->
warning though, my css foo is weak but it works okay...I think.
