Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:42
3rd tier submenu not appearing
Poster: Ronni
Dated: Wednesday January 31 2007 - 23:21:35 GMT
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
Poster: Andy
Dated: Thursday February 1 2007 - 0:02:06 GMT
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:
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";
_menuCloseDelay=500;
_menuOpenDelay=150;
with(menuStyle=new mm_style()){
fontfamily="Verdana, Tahoma, Arial";
fontsize="10px";
fontstyle="normal";
fontweight="bold";
Try changing it to:
Code:
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";
_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