dropdownlist error css class

if in a form there is a activeDropDownList that has error the css class "red" is not applied. i had a look at form.css and tried to change



div.yiiForm input.error,


div.yiiForm textarea.error


{


	background-color: #ffc9ca;


	border: 1px solid red;


}


to



div.yiiForm input.error,


div.yiiForm textarea.error,


div.yiiForm select.error,


{


	background-color: #ffc9ca;


	border: 1px solid red;


}


but without success.

Are you using IE? dropdownlist styling is not quite consistent across browsers.

Also, you CSS has an extra comma at the end of "select".

you are right,

without the comma problem solved. is it a good idea to add the line in form.css of the framework?

Yeah, already added.