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
3rd tier submenu not appearing
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:
Try changing it to:
Hope this helps,
Andy
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