Is it possible to format the menu items in the drop down box? Below is the code used at the moment. What I would like is to make Yes = Green, No = Red and N/A stay black. I tried using the class and style setting on the inline code but had no luck. Can anyone please shed some light on how I would go about this?
<select name="ob_admin_quals" class="standard_left" id="ob_admin_quals">
<option value="Yes"<?php echo($ob_admin_quals == 'Yes') ? ' selected' : '';?>>Yes</option>
<option value="No"<?php echo($ob_admin_quals == 'No') ? ' selected' : '';?>>No</option>
<option value="N/A"<?php echo($ob_admin_quals == 'N/A') ? ' selected' : '';?>>N/A</option>
</select>