Just thought i would post this for x-cart 4.0.11 code for the Contact Us address to make the post-code in capitals.
xcart/skin1/help/contactus.tpl
Code:
<TR>
<TR valign="middle">
<TD class="FormButton">{$lng.lbl_zip_code}</TD>
<TD>{if $default_fields.b_zipcode.required eq 'Y'}<FONT class="Star">*</FONT>{else}{/if}</TD>
<TD nowrap>
<INPUT type="text" id="b_zipcode" name="b_zipcode" size="32" maxlength="32" value="{$userinfo.b_zipcode}" onChange="check_zip_code();this.value=this.value.toUpperCase()">
{if $reg_error ne "" and $userinfo.b_zipcode eq "" and $default_fields.b_zipcode.required eq 'Y'}<FONT class="Star"><<</FONT>{/if}
</TD>
</TR>
Regards
TonyS