When i inspect Custom option values which are displaying in product view page , i got below code is reason to display those values.
code :
<span id="options-<?php echo $_option->getId() ?>-container"></span>
inspect element :
here, is there any chance we can display different color for different custom option values, for example, Black = > Black, Green = > Green .
can we use different css classes or ids for each value ?
<dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>
<div class="input-box">
<?php echo $this->getValuesHtml() ?>
<?php if ($_option->getIsRequire()): ?>
<?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_RADIO || $_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_CHECKBOX): ?>
<span id="options-<?php echo $_option->getId() ?>-container"></span>
<?php endif; ?>
<?php endif;?>
</div>
</dd>

simple product with custom options, i am not usingconfigurable product, can you please tell what is the css class for code i posted in question , is it_455_2?Black & Greenfor all products, i tried adding internal css as.options_453_3 { color : red; } .options_453_2 { color : red; }, but it did't displayed in "red" color..... is the way i am doing is right ?