how do I insert multi level navigation bar in front page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am new to front page, although I have minimal web site development from
another programme. I want to insert a drop down menu withh all of my links on
the homepage - css or whatever. can anyone please advise
 
See http://www.dynamicdrive.com/dynamicindex1/

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I am new to front page, although I have minimal web site development from
| another programme. I want to insert a drop down menu withh all of my links on
| the homepage - css or whatever. can anyone please advise
 
Insert this code into the HTML View...

<form class="hdrSel"><select class="hdrSel"
onchange="window.parent.location.href='http://'+this.options[this.selectedIndex].value+'.com'">
<option>Select A Page</option>
<option value="Your First Page.htm">Page Description Here</option>
<option value="Your Second Page.htm">Second Page Description
Here</option>
</select></form></div>

....then just insert the addresses of the pages.
 
Back
Top