One of the items in the multiple select box is much longer than the others, is there a way to hack it to make the width of it smaller
<select size="1">
<option>item</option>
<option>item</option>
<option>item is really long</option>
<option>item</option>
</select>
You can do this with CSS, either in-line style or using a class.
With in-line style:
Using a class:
And in your CSS file or embedded stylesheet:
Of course, change 50px to whatever width you need.