by Jim » Tue Mar 03, 2009 9:54 am
The html generated for an option list will be something like this
<form action="http://mydomain.com/cgi-bin/sc/order.cgi" method=post>
<select name="3:finopt:0" size=1>
<option value="Small">Small
<option value="Medium">Medium
<option value="Large">Large
</select>
</form>
To indicate the default pre-selected option you would add the word "selected" between the "option" and "value" for that option like this.
<option selected value="Medium">Medium
When the product is displayed the Medium option will be highlighted and when they add to the cart it will be the option selected there.