Does anybody know where the font size of the 'Country Name' field on Checkout Page 1 is controlled from, as I would like to increase it's size slightly
I have searched through Design | Text without luck and the layout does not contain the span class controlling it.
It is being set by a span class="actxsmall", but don't want to alter the font size for 'actxsmall' as this will make changes throughout the site.
The appropriate layout appears to be the 'INVOICE COUNTRY' layout
and I assume the relevant bit of code is being generated by Actinic in the following bit of the layout:
My guess is that an Actinic script is generating this code but I have no idea which one to look through.
Full Code output by Actinic:
I have searched through Design | Text without luck and the layout does not contain the span class controlling it.
It is being set by a span class="actxsmall", but don't want to alter the font size for 'actxsmall' as this will make changes throughout the site.
The appropriate layout appears to be the 'INVOICE COUNTRY' layout
and I assume the relevant bit of code is being generated by Actinic in the following bit of the layout:
Code:
<Actinic:LOCATION TYPE='INVOICECOUNTRY'> <td> <input type="text" name="INVOICECOUNTRY" size="20" maxlength="75" value="<actinic:variable name="InvoiceCountry" />" /> </td> </Actinic:LOCATION>
Full Code output by Actinic:
Code:
<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left"><span class="actxsmall">Canary Islands</span><input type="hidden" name="INVOICECOUNTRY" value="Canary Islands" /></td> <td align="right"><input type="submit" name="ACTION" value="Change" /></td> </tr> </table>
Comment