with some products that have many options to choose from, a long list of options is not ideal and can be confusing for the visitor.
one solution would be the option to wrap an option template with a class or id, this way the designer could apply special styling to that group of options and make its purpose clear to the visitor.
consider a product that has 5 options, the first three are part of an option template group, and the last two are product specific
instead of this, which results in a flat list:
Code:
label 1 | option 1
label 2 | option 2
label 3 | option 3
label 4 | option 4
label 5 | option 5
we could have this, which would allow custom styling:
instead of this:
Code:
label 1 | option 1
label 2 | option 2
label 3 | option 3
label 4 | option 4
label 5 | option 5
in our store, we have the option for visitors to put a 'gift tag' on each product, including a to/from and message. it would be great if we could style these options to appear with a gift tag image as the background rather than having a flat list.