Recent Questions
Q: I'm trying to display the submenus to the left of the menu. I searched your questions and found one that said to use the following:
  var smViewType=2;
I added this but it didn't do anything.
A: Try to use this parameter:
  var subMenuAlign = "left"; Q: I have just downloaded your trial version and am trying to use delux tuner using the windows xpstyle template. 
I can only seem to get the top button showing as grey but can change colors of submenus in dhtml xml menu. 
Am I missing something? ?ow do I get the top button showing the same as submenu buttons.
A: To change submenu colors you should change the following parameters:
  var menuBackColor="#F2F3F2";
  var itemBackColor=["#F2F3F2","#535353"];
and Individual Submenu Style:
  var menuStyles = [
 ["menuBackColor=#F2F3F2","menuBorderWidth=0","itemSpacing=0","itemPadding=4px","smOrientation=undefined"],
];
For the top items you should change Individual Item style:
  var itemStyles = [
 ["itemHeight=21px","itemBackColor=#F2F3F2,#535353"],
];
Q: I am trying to implement something with your wonderful product and have annoying problem that I am sure You are going to solve.
 I am using 2 deluxe-menus on the same page.
 The first one for showing some hierarchy of sites, and the second for showing pop-up right-click context menu (that clicked on some menu-item from the first deluxe-menu) .
 The problem is that in case the user clicked on some sub-menu from the first css horizontal menu drop down, then all the sub menus disappear. I want them to stay.
 I tried to give to the first deluxe-menu *smHideOnClick*=0 , but it doesn't help. 
A:  Try to set the following parameter:
  var smHidePause=-1;Q: I want to activate script pop up by a hyperlink.
A: Drop down menu items is an array of arrays. It has the following structure:
  var menuItems = [
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 ...
];
where target is target for an item link.
Available values: _self, _blank, _parent, _search, _top.
So you can set the target value _blank for the items you need.
For example:
  var menuItems = [
 ["Home","testlink.html", "", "", "", "", "", "", "", "", "", ],
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "", "", "", "", "", ],
  ["|Features","http://deluxe-menu.com", "", "", "", "_blank", "", "", "", "", "", ],
  ["|Installation","", "", "", "", "", "", "", "", "", "", ],
  ["|Dynamic Functions","testlink.html", "", "", "", "_blank", "", "", "", "", "", ],
 ["Purchase","http://deluxe-menu.com/order-purchase.html", "", "", "", "", "", "", "", "", "", ],
 ["Contact Us","testlink.htm", "", "", "", "", "", "", "", "", "", ],
];
More info you can find here:
http://deluxe-menu.com/menu-items-info.html