I really like this modification, but was looking for a simple way to make users aware of the height restriction so that they are not confused when their signature displays in the preview but are confronted with an error message in forum posts if their signature is too tall. I developed a simple template edit to display a height restriction warning on the Edit Signature page. I have included it below in case it is helpful to anyone else.
1) Add the following to modifysignature.css:
Code:
<h2 class="blockhead">{vb:rawphrase signature_height}</h2>
<div class="blockbody formcontrols settings_form_border1">
{vb:rawphrase signature_restriction_text}
</div>
<br>
2) Add the following to vbulletin-formcontrols.css:
Code:
.blockbody.settings_form_border1 {
border-{vb:stylevar right}: {vb:stylevar formrow_border};
border-{vb:stylevar left}: {vb:stylevar formrow_border};
border-bottom: {vb:stylevar formrow_border};
padding: 4px;
padding-left: 10px;
}
3) Create global variables signature_height (for title text) and signature_restriction_text (for body text).
Place the additional code in modifysignature.css wherever you would like the box to appear
on the Edit Signature page. I placed it at the very beginning of the template. Here is what it looks like:
EDIT: Working on 4.1.12