How can I give all dropDownList the same width?

Hello,

I need to give all dropDownList in _form and _search the same width. How can I do that?

Thanks.

At the end of main.css, add next line:

select{

width:200px;

}

If you want to change width just for some select boxes, you need to add css classes or ids.

because you have written "in _form and _search" i suggest to modify file form.css like this:




div.form input[type=text],

div.form textarea,

div.form select

{	

        width:200px;

}



best regards ;)