Recent Questions
Q: All dhtml dropdown menu links opens in a new window even when they're configured to open in the same page (or another frame).
A: Check the following dhtml dropdown menu parameters:
  var itemTarget="_self";
["menu item","link.htm", "", "","Tip", "_self", "", "", "", "", "", ],
Q: If you take a look at the upper menu, I have "|" separating all of the various menu items. How can I do this with Deluxe Menu? 
 I don't want to resort to using messages and would like to use the "|" character if at all possible.
 
A: You can paste a separator. 
Please, see the following parameters: 
//------- Separators ------- 
//--- Separators 
  var separatorImage=""; 
  var separatorWidth="5"; 
  var separatorHeight="100%"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; 
  var separatorVWidth="3"; 
  var separatorVHeight="100%"; 
  var separatorPadding=""; 
You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
];
Q: I am curious why there are no font settings for "Individual Styles" for"Submenu styles".
 Basically I want to have a different font and color for my submenu items so they appear differently than the normal primary Items - but it seems there is only two options for fonts:
 - The global font parameters affecting all fonts (primary and sub). 
 - And the Individial Styles for primary Item Styles. 
 Why no font paramenters for Submenu Items?
 
A: You can assign Item Style for the submenu item too. 
See the example:
  var itemStyles = [ 
 ["fontStyle=normal 13px Comic Sans MS"], //item style 0 
]; 
  var menuStyles = [ 
 ]; 
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", , , "0", , , ], //item style 0 
    ["||How To Setup","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", , , "0", , , ], //item style 0 
Q: How I make sure, that long menu items in dhtml menu sample can wrap into two lines? 
 
A: You should set the following parameter:
  var noWrap=0;
Or use standard <br> tags inside item's text:
 ["International Music X Home<br>Decoration X Books","", "", "", "", "", "0", "0", "", "", "", ],