is there a way to get a drop down menu to stay a certain size. i know you can assign it a certain size or width but its not working. when there is a large value in it, it will widen to however long the value is...
<select name="Cause" width="50px" overflow:hidden;" id="Cause" onchange="frmL.submit()" tabindex="26">
<option value=""></option>
<% DO WHILE NOT CauseRS.EOF %>
<option value='<%= CauseRS("Cause")%>' <%if CauseRS("Cause")=ValComboCause then %> selected <%end if %> >
<%=CauseRS("Cause") %>
<%
CauseRS.MoveNext
Loop
CauseRS.Close
Set CauseRS=Nothing
%>
</select>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.