Implemented [Suggestion] Signature limits

This suggestion has been implemented. Votes are no longer accepted.
If all you're worried about is the height, simply use the EXTRA.css method of chopping sigs off at x pixels height.
Code:
/* limited sigs */
.signature
{
max-height: 100px;
padding: 0px;
overflow:auto;
overflow-y: hidden !important;
overflow-x: hidden !important;
}
About that, is possible to limit that in Signature Preview? This way would be fine for check if the signature will be cutted off.. :)
 
About that, is possible to limit that in Signature Preview? This way would be fine for check if the signature will be cutted off.. :)
it would require a template edit to make the above css apply to the signature preview.

in template account_signature_preview:

change this line
Code:
<div class="messageText primaryContent baseHtml">{xen:raw $signatureParsed}</div>

like so:
Code:
<div class="messageText primaryContent baseHtml signature">{xen:raw $signatureParsed}</div>
 
it would require a template edit to make the above css apply to the signature preview.

in template account_signature_preview:

change this line
Code:
<div class="messageText primaryContent baseHtml">{xen:raw $signatureParsed}</div>

like so:
Code:
<div class="messageText primaryContent baseHtml signature">{xen:raw $signatureParsed}</div>
I Love You Already. :)
 
Top Bottom