I need to stylize each element in the attribute drop down list. I noticed by looking at the source that there is an option box, and each element is there but there isn't a class or id tag for any of them. See the code sample:
How would I go about adding a class to each of the options, so they're like this?Code:<div class="wrapperAttribsOptions"> <h4 class="optionName back"><label class="attribsSelect" for="attrib-11">Size</label></h4> <div class="back"> <select name="id[11]" id="attrib-11"> <option value="69">4" ( $4.00 )</option> <option value="70">6" ( $4.00 )</option> <option value="71">8" ( $5.00 )</option> -----snip----- </select> </div> <br class="clearBoth" /> </div>
That way, I can style each element individually (each one will be a different color.. client request). Here's something similar to what I'm going for: http://www.outfront.net/tutorials_02...unkyforms5.htm (scroll to the last dropdown on the page)Code:<option class="69" value="69">4" ( $4.00 )</option> <option class="70" value="70">6" ( $4.00 )</option>
Thanks



