3rd tier submenu not appearing

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
Ronni
Beginner
Beginner
Posts: 4
Joined: Tue Jan 30, 2007 12:49 am

3rd tier submenu not appearing

Post by Ronni »

I need a third-tier submenu to appear when a user rolls over Products > Automotive at this URL: http://www.firecomms.com/test/default.aspx

But nothing appears. Not sure if it's because my main menu's position is relative or...I tried making the submenu position relative and experimented with offsets, but the sub-sub menu never appears.

The submenu code can be found at:
http://www.firecomms.com/test/menu_data.js and the main menu code is:

and the main menu code can be viewed by viewing the source at:
http://www.firecomms.com/test/default.aspx


Thanks in advance for your help and time!
Ronni
User avatar
Andy
Milonic
Milonic
Posts: 3308
Joined: Sun May 19, 2002 8:23 pm
Location: Menu Developer
Contact:

Post by Andy »

Hi,

This is a simple fix, you are missing a couple of mandatory global variables.

You just need to change your menu_data.js file. At top it looks like this:

Code: Select all

fixMozillaZIndex=true; //Fixes Z-Index problem  with Mozilla browsers but causes odd scrolling problem, toggle to see if it helps
_menuCloseDelay=500;
_menuOpenDelay=150;

with(menuStyle=new mm_style()){
fontfamily="Verdana, Tahoma, Arial";
fontsize="10px";
fontstyle="normal";
fontweight="bold";



Try changing it to:


Code: Select all

fixMozillaZIndex=true; //Fixes Z-Index problem  with Mozilla browsers but causes odd scrolling problem, toggle to see if it helps
_menuCloseDelay=500;
_menuOpenDelay=150;
_subOffsetTop=0;     // Sub menu offset Top position
_subOffsetLeft=0;  // Sub menu offset Left position


with(menuStyle=new mm_style()){
fontfamily="Verdana, Tahoma, Arial";
fontsize="10px";
fontstyle="normal";
fontweight="bold";

Hope this helps,
Andy
Ronni
Beginner
Beginner
Posts: 4
Joined: Tue Jan 30, 2007 12:49 am

Post by Ronni »

Thanks very much - that was indeed my problem. :oops:
Post Reply