Just incase anyone needs to know this for the future, you can edit the act_VariantListHeader.html to enable each drop down to be a standard width.
As follows:
<!-- VariantListHeader HTML begin -->
<!-- This template is used for a product variant list box header. -->
<SELECT NAME="NETQUOTEVAR:ATTRIBUTEREF" style="width: 400px">
<!-- This template is used for a product variant list box header. -->
<!-- VariantListHeader HTML end -->
You can then also add a class to the drop down if you are using css.
<!-- VariantListHeader HTML begin -->
<!-- This template is used for a product variant list box header. -->
<SELECT NAME="NETQUOTEVAR:ATTRIBUTEREF" style="width: 400px" class="main1">
<!-- This template is used for a product variant list box header. -->
<!-- VariantListHeader HTML end -->
Actinic seems to try to add a </select> tag at the end of the above each time you re-open the html file, however if you delete this it seems to work fine.
Cheers
As follows:
<!-- VariantListHeader HTML begin -->
<!-- This template is used for a product variant list box header. -->
<SELECT NAME="NETQUOTEVAR:ATTRIBUTEREF" style="width: 400px">
<!-- This template is used for a product variant list box header. -->
<!-- VariantListHeader HTML end -->
You can then also add a class to the drop down if you are using css.
<!-- VariantListHeader HTML begin -->
<!-- This template is used for a product variant list box header. -->
<SELECT NAME="NETQUOTEVAR:ATTRIBUTEREF" style="width: 400px" class="main1">
<!-- This template is used for a product variant list box header. -->
<!-- VariantListHeader HTML end -->
Actinic seems to try to add a </select> tag at the end of the above each time you re-open the html file, however if you delete this it seems to work fine.
Cheers
Comment