[REQ] How to limit signature using Iframe

First Post
Code:
<div STYLE="width: 500px; height: 300px; overflow: auto;">
$post[signature]
</div>
This will create a DIV instead of an iFrame which is better looking and more effective. This will only show a scrollbar if the content exceeds the 500x300 space you have indicated.

Let me know how it does for you.

second post:
To implement it, in template postbit (and/or postbit_legacy, if you use it), find:
Code:
$post[signature]
Replace that with:
Code:
<div STYLE="width: 500px; height: 300px; overflow: auto;">
$post[signature]
</div>
 
Back
Top