Menus not showing up!

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
sleeburg27
Beginner
Beginner
Posts: 2
Joined: Tue Apr 10, 2007 3:22 am

Menus not showing up!

Post by sleeburg27 »

Hey folks, I just found the Milonic DHTML menus today and got excited because they were just what I was looking for. Unfortunately, no matter what I do I can't seem to get them to even so much as show up on my site. I've checked in multiple browsers and tried relative and exact links to the javascript files and that didn't help either.

The page I'm trying to implement the menus on (to then further play with to customize) is here:

http://www.pendantaudio.com/includes/inc_navbar2.php

Any help you can provide would be greatly appreciated. I'm about ready to tear my hair out. :(
User avatar
Andy
Milonic
Milonic
Posts: 3308
Joined: Sun May 19, 2002 8:23 pm
Location: Menu Developer
Contact:

Post by Andy »

You have a syntax error in your data - There is a missing ; on the last menu.

I've attahed your fixed menu data here:


Code: Select all

fixMozillaZIndex=true;
_menuCloseDelay=500;
_menuOpenDelay=150;
_subOffsetTop=2;
_subOffsetLeft=-2;

with(menuStyle=new mm_style()){
bordercolor="#999999";
borderstyle="solid";
borderwidth=1;
fontfamily="Verdana, Tahoma, Arial";
fontsize="75%";
fontstyle="normal";
headerbgcolor="#ffffff";
headercolor="#000000";
offbgcolor="#eeeeee";
offcolor="#000000";
onbgcolor="#ddffdd";
oncolor="#000099";
outfilter="randomdissolve(duration=0.3)";
overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color=#777777', Direction=135, Strength=3)";
padding=4;
pagebgcolor="#82B6D7";
pagecolor="black";
separatorcolor="#999999";
separatorsize=1;
subimage="http://milonic.com/menuimages/arrow.gif";
subimagepadding=2;
}

with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
left=10;
orientation="horizontal";
style=menuStyle;
top=10;
aI("text=Home;url=http://www.pendantaudio.com/;");
aI("showmenu=FAQ;text=FAQ;");
aI("showmenu=Original;text=Original Shows;");
aI("showmenu=Fan;text=Fan Shows;");
aI("showmenu=Store;text=Store;url=http://www.pendantaudio.com/store.php;");
}

with(milonic=new menuname("FAQ")){
overflow="scroll";
style=menuStyle;
aI("text=About;url=faq.php#about;")
aI("text=News;url=faq.php#news;")
aI("text=Staff;url=faq.php#staff;")
aI("text=Contact;url=faq.php#contact;")
aI("text=CD-quality Torrents;url=faq.php#torrent;")
aI("text=Join;url=faq.php#join;")
aI("text=Links;url=faq.php#links;")
aI("text=Release Schedule;url=faq.php#schedule;")
}

with(milonic=new menuname("Original")){
style=menuStyle;
aI("text=Umket Industries Presents: The Dixie Stenberg and Brassy Battalion Adventure Theater;url=dixie.php;");
aI("text=The Kingery;url=kingery.php;");
aI("text=Once Upon a Time in Vegas;url=vegas.php;");
aI("text=Seminar: An Original Anthology Show;url=seminar.php;");
aI("text=TWIP: This Week in Pendant!;url=twip.php;");
}

with(milonic=new menuname("Fan")){
style=menuStyle;
aI("text=Superman: The Last Son of Krypton;url=superman.php;")
aI("text=Batman: The Ace of Detectives;url=batman.php;")
aI("text=Wonder Woman: Champion of Themyscira;url=wonderwoman.php;")
aI("text=Imperium (Superman, Batman, Wonder Woman crossover);url=imperium.php;")
aI("text=Star Trek: Defiant;url=defiant.php;")
aI("text=James Bond: To The End;url=bond.php;")
aI("text=Indiana Jones and the Well of Life;url=indy.php;")
}

drawMenus();
sleeburg27
Beginner
Beginner
Posts: 2
Joined: Tue Apr 10, 2007 3:22 am

Post by sleeburg27 »

Ahh, thank you so much!
Post Reply