Quote:
Originally Posted by Sim9
Good plugin!
I'd like to add my vote for width support. I added it in myself using this code for sizedsig (width limited to 500 pixels):
Code:
<style>
<!--
.sizedsig {
max-height:{1}px;
max-width:500px;
height:expression(this.scrollHeight > {1}? "{1}px" : "{2}" );
width:expression(this.scrollWidth > 500? "500px": "auto" );
overflow:{2};
overflow-x:hidden;
}
// -->
</style>
This seems to be compatable with IE and FireFox (untested in Opera).
|
OK...Ill take a look early this week and add the width thing.