Recent Questions
Q: How do I connect a link (i.e. document) to one of the javascript text menu items.
A: You should add links in the "Link" field of the Item Parameters Window.
http://deluxe-menu.com/data-samples/java-menu-program.htm
You can find more info about menu items here:
http://deluxe-menu.com/menu-items-info.html
Q: I have problems with the incorrect copyright in IE7 – I have tried to change as described on your FAQ but it doesn¦t seem to work. 
A: Scott, now you're using dmenu.js file v1.14 and data.js file of Deluxe Menu v2.0. 
Please, replace dmenu.js file with the licensed one v2.0. 
Please, place all this files in the folder where your menu iscreated in. 
Q: I have been using Deluxe Menu quite a bit, but am now running into a problem on a site I developed. When I add a submenu, it appears separated by about 100 pixels down. In this case I left it on the Menu Item “Why Maumelle” for you to look at. 
 Can you help me out? 
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). 
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:relative"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example: 
For example, you should add style="position:relative;"
to the 
<DIV class=MainBody> 
<DIV class=Banner></DIV> 
<DIV class=Menu> 
So, you'll have: 
<DIV class=MainBody style="position:relative;"> 
<DIV class=Banner></DIV> 
<DIV class=Menu style="position:relative;"> 
Now we have only such solution for this problem. 
We'll try to fix this problem in the future versions.
Q: Is it possible via code customization to remove the border only for the top level of popup navigation
 and subsequent menu levels with the border? 
If yes, would you provide technical assistance with the required code change?
A:  You can use Individual Item Style in that case.
You should create Individual Style, for example:
  var itemStyles = [
 ["itemBorderStyle=none,none"], // style 0
 ];
 And assign it for top items:
  var menuItems = [
 ["Home","testlink.html", "", "", "", "", "0", "", "", "", "", ], // assign style 0
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "0", "", "", "", "", ], // assign style 0
  ["|Features","testlink.html", "deluxe-menu.files/icon2.gif", "deluxe-menu.files/icon2o.gif", "", "", "", "", "", "", "", ],
  ["|Installation","", "deluxe-menu.files/icon2.gif", "deluxe-menu.files/icon2o.gif", "", "", "", "", "", "", "", ],
  ["|Supported Browsers","", "deluxe-menu.files/icon2.gif", "deluxe-menu.files/icon2o.gif", "", "", "", "", "", "", "", ],
    ["||Windows OS","", "deluxe-menu.files/icon3.gif", "deluxe-menu.files/icon3o.gif", "", "", "", "", "", "", "", ],
    ["||Internet Explorer","", "deluxe-menu.files/icon5.gif", "deluxe-menu.files/icon5o.gif", "", "", "", "", "", "", "", ],
    ["||Firefox","", "deluxe-menu.files/icon5.gif", "deluxe-menu.files/icon5o.gif", "", "", "", "", "", "", "", ],
 ["Samples","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "0", "", "", "", "", ], // assign style 0
  ["|Sample 1","testlink.html", "deluxe-menu.files/icon6.gif", "deluxe-menu.files/icon6o.gif", "", "", "", "", "", "", "", ],
  ["|Sample 2 is Disabled","testlink.html", "deluxe-menu.files/icon6.gif", "deluxe-menu.files/icon6o.gif", "", "_", "", "", "", "", "", ],
 ["Purchase","http://deluxe-menu.com/order-purchase.html", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "_blank", "0", "", "", "", "", ], // assign style 0
 ["Contact Us","testlink.htm", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "0", "", "", "", "", ], // assign style 0
];
More info you'll find here:
http://deluxe-menu.com/individual-item-styles-info.html