
Admin
Well-Known Member
Staff member
Administrator
This tiny hack will strictly limit signature height. It will take ALL things what the user have in the signature (no matter what is it ... text, image, video, code ... ) and it will crop it based on choosed value.
Original hack was made by Mazinger, but it was a bit outdated and it didn't work for IE7, so there is a newone for vB 4.x
Installation:
Styles & Templates -> Style Manager -> Edit Templates -> edit additional.css
add following code:
Change the red number to anything you want
Original hack was made by Mazinger, but it was a bit outdated and it didn't work for IE7, so there is a newone for vB 4.x

Installation:
Styles & Templates -> Style Manager -> Edit Templates -> edit additional.css
add following code:
Code:
.signaturecontainer {
max-height:[COLOR="Red"][B]200[/B][/COLOR]px;
_height: expression(this.scrollHeight > [COLOR="Red"][B]200[/B][/COLOR]? "[COLOR="Red"][B]200[/B][/COLOR]px" : "auto" );
overflow:hidden;
}