View Full Version : How do u make those boxy drop down thingys?


MelodyUkOk
07-09-2003, 06:54 PM
How do you make them cos I dont want a drop down menu. I want one for form mail. Someone help?

crazyjls7890
07-09-2003, 08:04 PM
Here are some ways to do drop down menus:
http://www.lissaexplains.com/fun.shtml

bellportal
07-10-2003, 01:12 PM
For a form, you need this as Lissa's page creates a navigational drop down list:

<select name="drop1">
<option value="option1">Option 1</option>
<option value="option2">Option 2</option>
</select>

Create as many <option>'s as you need.

You may need to configure your form mail script to include this field.

HTH,

MelodyUkOk
07-10-2003, 05:01 PM
Is that all I have to put in it? Thanx.