I'm sorry if I don't understand..
here is my html, could you insert the "style" in my html. thank you <form name="doublecombo">
<p>
<select name="example" size="1" onChange="redirect(this.options.selectedIndex)">
<option>Choose</option>
<option>Energy-Fire</option>
<option>Energy-Electricity</option>
<option>Energy-Gas</option>
<option>Energy-Nuclear</option>
<option>Energy-Hydro</option>
</select>
If you mean the select box, I'm not sure that you can do that. While you can set the font-size for a select box, you cannot set the line-height... Get the Best Answers! faq333-2924
Is this an asp FAQ? faq333-3048
Tek-Tips Best Practices: FAQ183-3179
yeah- not sure about a style, but a clear image would work and you could make the space inbetween whatever you wanted it to be- just adjust the height attribute (here I have it at 10):
<p>
<select name="example" size="1" onChange="redirect(this.options.selectedIndex)">
<option>Choose</option>
<option>Energy-Fire</option>
<option>Energy-Electricity</option>
<option>Energy-Gas</option>
<option>Energy-Nuclear</option>
<option>Energy-Hydro</option>
</select><br>
<img src="images/clear.gif" HEIGHT="10" width="1"><br>
<select name="stage2" size="1">
<option>Choose</option>
<option>Safety Education</option>
<option>General Knowledge</option>
</select>
<br>
<input name="SUBMIT" type="button" id="SUBMIT"
onClick="go()" value="SUBMIT">
<br>
</p>
I thought he was trying to increase the spacing of the elements of the select box itself, not between them. Get the Best Answers! faq333-2924
Is this an asp FAQ? faq333-3048
Tek-Tips Best Practices: FAQ183-3179
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.