View Full Version : Email Form: drop down menu


ellen2321
12-04-2005, 01:20 PM
In my email form I would like to have a drop down list with choices. I only saw a code for a menu and couldn't figure out what to change in it. So can someone give me the code? Thanks so much!

luvhartz
12-04-2005, 01:27 PM
I believe its this:

<select NAME="name">
<option value="value" selected="selected">name</option>
<option value="value" selected="selected">name</option>
<option value="value" selected="selected">name</option>
</select>

replace the colours, for example this is how i used it:

<select NAME="h1color">
<option value="000000" selected="selected">Black</option>
<option value="CCCCFF" selected="selected">(Light)Blue</option>
<option value="3399FF" selected="selected">Blue</option>
<option value="CCCCCC" selected="selected">Gray</option>
</select>

=)