Is it possible to format the text into columns or tabbed when using drop down lists. My wish is to have a part number, size/description and price aligned underneath each other, so, when the whole selection is seen by the customer it looks neat, rather than all over the place as it is at present.
Announcement
Collapse
No announcement yet.
Drop Down Lists
Collapse
X
-
That's tricky. You can't have HTML in <OPTION> items. Just plain text. You might be able to use CSS to set the <SELECT..> tag style to fixed width font and space out your option text so that it looks columnar.
You could make this easier by laying out your options in Notepad one line after another, spacing them out to look nice and then copy / paste them into the Choices.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
-
The suggestion above will work but you'll also need to edit VariantListHeader.html (in Site1) and change
Code:<SELECT NAME="NETQUOTEVAR:ATTRIBUTEREF">
Code:<SELECT style="font-family:courier; white-space:pre" NAME="NETQUOTEVAR:ATTRIBUTEREF">
Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
Aaaarrgh!!! It doesn't work as it should on all browsers. Make a small etst first and see it it's useful.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
Comment