Recent Questions
Q: Can you tell me how I can position my menu-tree with a relative position and make it floatable at the same time? 
A: Unfortunately now it is not possible. Your menu will float withabsolute position only.
Q: I would like to separate each main menu item in a dhtml menu bar with a dotted line graphic. 
A: To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical 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, for example:
  var menuItems = [
 ["item 1"],
 ["-"], // this item is separator
 ["item 2"],
];
Q: I cannot see my menu in IE7. Please, help! 
A:  Try to set exact value for the menu width 
  var menuWidth="700px"; 
Try that.
Q: Is there a way to add an email address as a menu item in the html free menu?
A: You can open any files using Deluxe Menu including PDF files.
You can insert any html code within menuItems, for example:
  ["|You can place <b>any HTML code</b><br> to item, for example <u>image</u>:<br><img src=img/logo.gif>","testlink.html"],
  ["|Index  <select style='width:120px;height:17px;font:normal 10px Tahoma,Arial;'><option>
Section 1<option>Section 2<option>Section 3</select>", "", "", "", "", "", "", ""],
  ["|Search <input type=text style='width:80px;height:17px;font:normal 10px Tahoma,Arial;'>  <input type=button value='Go' style='width:30px;height:17px;font:normal 10px Tahoma,Arial;'>", "", "", "", "", "", "", "0"],
  ["|Write Us", "mailto:[email protected]", ""],