Quote:
Originally Posted by skariko
Anyone know how to make this on VBulletin 4.0?
|
In postbit/postbit_legacy template:
Replace the code:
Code:
{vb:raw post.signature}
With:
Code:
<hr size="1" style="color:#678B06" />
<div valign="bottom" style="width:100%; max-height:400px; overflow: auto">
{vb:raw post.signature}
</div>
If you want to hard limit the size and prevent scrollbars completely, change:
overflow: auto to
overflow: hidden.
Edit - changed height: to max-height: so height is not fixed if signature is smaller.