how to remove css style dropdown

how to remove error css style dropDownList

e.g.

<select class="styled" name="Quotes[vehicleId]" id="Quotes_vehicleId">

<option value="">Please Select</option>

<option value="1">Select 1</option>

<select/>

if nothing is selected

<select class="styled error" name="Quotes[vehicleId]" id="Quotes_vehicleId">

<option value="">Please Select</option>

<option value="1">Select 1</option>

<select/>

I do not want class="styled error" in my drop down list.

Maybe CHtml::$errorCss property (https://github.com/yiisoft/yii/blob/master/framework/web/helpers/CHtml.php#L35) would help you. I mean that you can temporary change error class to something else.

centplay