How do I create a dropdown navigation menu?

  • Thread starter ANDRÉ VAN WYK
  • Start date
A

ANDRÉ VAN WYK

How do I create a dropdown navigation menu?

I hope this is the right terminology.
 
S

Steve Easton

If you mean a dropdown select box it's done like this:

<form>
<p align="center"><b>Select a Site </b>
<select id="setit" style="color: #0000FF" size="1" name="test">
<option value="">Select one</option>
<option value="http://www.altavista.com">AltaVista</option>
<option value="http://www.yahoo.com">Yahoo</option>
<option value="http://www.google.com">Google</option></select>
<input type="button" value="Go"
onclick="window.open(setit.options[setit.selectedIndex].value)">
</p></form>

Change value to reflect you web pages.

If you mean a mouseover dropdown / flyout check help for DHTML and Behaviors.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Top