Recent Questions
Q: I'm in search for a product like "Deluxe Menu".
 Before buying your software, I'd need to know if I can use images (eg *.jpgs) within rollover drop menu instead of just text; my menu items need to be images. Does "Deluxe Menu" support this?
A:  Yes, you can create image-based rollover drop menu.
If item text is empty, icon fields will be used as item images.
 For example:
 ["", "index.html", "itemImageNormal.gif", "itemImageOver.gif", "Home Page"]
Q: I am evaluating your product and would like to display my top menu without a border, but have the dropdown (child menus) all have a border and shadow. 
 If I change the menuBorderWidth to anything but 0, I get a menu on both the top menus and dropdowns. I need a topBorderWidth and a childBorderWidth. 
 Is there any way to accomplish this?
 
A: Yes, you can do it. 
Please, set: 
  var menuBorderWidth=0; 
To set border for submenus you should use Individual Submenu styles, for example: 
  var menuStyles = [ 
     ["menuBorderWidth=1","menuBorderColor=#9A9CA7"], //style 0 
]; 
  var menuItems = [ 
     ["Home","testlink.html", , , , , , , , ], 
     ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", , , , , , ],
          ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", , , , "0", , ], //style 0 
      ["Samples","", "default.files/icon1.gif", "default.files/icon1o.gif", , , , , , ], 
          ["|Sample 1","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", , , , "0", , ], //style 0 
           ["|Sample 2 is Disabled","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", , "_", , "-1", , ], 
...
You should assign style for the first item in the submenu. 
Q: When I add links to the java pop up menu items, the mouse icon does not change to the usual pointer on hover. Any ideas? 
A:  You should set the following java pop up menu parameter:
  var itemCursor="pointer";
Q: For some reason all of the menu items are squished together when I put the js code in my page. 
 Is my site's CSS overriding the ones set in the menu css? If so how do I get around this?
 
A: See, the problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
 To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css