Recent Questions
Q: I'm trying deluxe-menu, but when I'm making my own menu, I often get error messages.
 It will not work. I get these messages when I use individual styles.It is a very nice program, but I think with a few bugs. 
A: You have errors in your data file. 
  ["|De Groese Til","", , , , , , "0", , ], 
  ["|De Supermarkt","", , , , , , "0", , ], 
In this items you assigned menu styles, but there is no menu style in your parameters. You have only item style. 
You should write them so: 
  ["|De Groese Til","", , , , , "0", , , ],  ["|De Supermarkt","", , , , , "0", , , ],
Q: The page that I am creating lists out notes from our system - there is a "options" button to the right of each note - when the cursor hovers over this button I want to dynamically load the drag drop menu. 
A: You can try to use pop up drag drop menu.
http://deluxe-menu.com/popup-mode-sample.html
You may also generate a menus from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.
Q: Is there a way to hide a menu options in the navigation menu using either CSS or the java api based on the site user?
A: Deluxe Menu supports Javascript API.
You can find more info here:
http://deluxe-menu.com/dynamic-functions-sample.html
You can try to use API functions in that case:
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
To disable items you should set the target parameter to "_".
You can try to use the following function
function disable() {
 dm_ext_changeItem(0, 1, 1, ["", "", "", "", "", "_"]);
 }
to disable your items.
Q: On the left menuline under the a1 link, shall appear the javascript menu div, but after several refreshes, nothing happens.
 On the local computer, the javascript menu div is working perfectly!
 Can you send me instructions, why this problem appears?
A: You've placed the javascript menu div in
<TD class=sidebar vAlign=top width=160>
tag with the following styles:
.sidebar TR {
 DISPLAY: none! important
}
TD.sidebar IMG {
 DISPLAY: none
}
.sidebar TABLE TR TD IMG {
 DISPLAY: none
}
.sidebar TABLE TR TD {
 DISPLAY: none}
That's why you cannot see the javascript menu div. Delete "DISPLAY: none" propertyfrom the style.