Recent Questions
Q: Can I have the pop-out menus in the floating navigation bar go left instead of right.
 
A: You should use the following parameter (Deluxe Tuner->Positioning):
  var subMenuAlign="left";
Q: Also I have a problem getting the separator to show in my javascript right click menu. I have individual settings for the main menu items. I then tried to place an after item image, and they will show, though then the mouseover image does not work. 
A:  To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical javascript right click menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems (you can do it in DeluxeTuner, use "Add separator" button), for example:
  var menuItems = [
 ["item 1"],
 ["-"], // this item is separator
 ["item 2"],
];
Q: I am using the dhtml-tabs code. I have 2 tabs that I use for a basic form and an advanced form. The advanced form is on the second tab. When I submit, I get results. When I click the back button, the selected drop menu bar tab is the first one, and not the second. Is there a way to configure the tabs to be persistent or sticky. Such that clicking on the back button will result on being on the second tab, which was the last tab before going to a new page? 
A:  You can try to use the following function:
dtabs_itemClick(0,1)
To open your second tab.
Q: We create the menu code via ASP, and we need to have 2 menus on one page. Normally you do this by having 2 java scripts includes. 
 However it looks like the bottom menu activates the first menu?
A: Now you have two entries of dmenu.js file on your site in the  tag. 
You must have only one entry of dmenu.js file. 
You should write so: 
... 
<head> 
 <!-- Deluxe Menu --> 
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
 <script type="text/javascript">  var dmWorkPath = "menu2.files/";</script> 
 <script type="text/javascript" src="menu2.files/dmenu.js"></script> 
 <!-- (c) 2006, by Deluxe-Menu.com --> 
</head> 
Please, delete the same code from the  tag.