Log in

View Full Version : Drop Down menu problem.



LizzieD
04-27-2007, 05:03 AM
I wonder if someone here, would be so kind as to have a look at this page.
http://www.europeancookingvacations.com/working2.html
It's obviously a test page I'm working on.
I have been working on trying to get my drop down menus to work properly for over a week now, with no success.
As you see, the link from France, seems to be working properly.
However, I cannot get the other links to show a drop down list.
I'm sure it's something silly that I'm just missing, but it's driving me crazy at this point.
Any help would be so appreciated.
Thanks so much.
Lizzie

alphonse.tan
04-27-2007, 08:54 AM
You named all the arrays "menu1" even for your menu contents for 2, 3, and 4.. Below code is working just copy and paste... enjoy!

//Contents for menu 1
var menu1=new Array()
menu1[1]='<a href="http://www.europeancookingvacations.com/StJeandeLuz.html">St. Jean du Luz</a>'
menu1[2]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'
menu1[3]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'


//Contents for menu 2
var menu2=new Array()
menu2[1]='<a href="http://www.europeancookingvacations.com/StJeandeLuz.html">St. Jean du Luz</a>'
menu2[2]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'
menu2[3]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'


//Contents for menu 3
var menu3=new Array()
menu3[1]='<a href="http://www.europeancookingvacations.com/StJeandeLuz.html">St. Jean du Luz</a>'
menu3[2]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'
menu3[3]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'


//Contents for menu 4
var menu4=new Array()
menu4[1]='<a href="http://www.europeancookingvacations.com/StJeandeLuz.html">St. Jean du Luz</a>'
menu4[2]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'
menu4[3]='<a href="http://www.europeancookingvacations.com/home.html">EChome</a>'

LizzieD
04-27-2007, 12:59 PM
Alphonse.Tan.
You are an Angel! Thank you so, so much. You have no idea how much your help means to me.
Lizzie