Forum Moderators: open
.pulldown {
background-color: #ccc;
color: #333;
font-size: 9pt;
width: 150px;
}
I just put the class in the <select> tag;
<select name="whatever" class="pulldown">
It's the width attribute that's the key. It keeps the pulldown to 150 px wide. When the user clicks on the pulldown it expands to accommodate the long lines, but when it's not open it's a tidy 150px wide.
Thanks for the reply anyway. Hopefully, this will help others, as well.
Tim