I have a listbox and I want to decrease its width.
Here is my code:
try the !important argument to make sure the CSS is not conflicting with any other styles you have specified. Also using a reset.css is good before you add your own styles.
!important
select#wgmstr { max-width: 50px; min-width: 50px; width: 50px !important; }
or