Recent Questions
Q: We have several problems with your menu. 
 Notice when trying to select a drop down item…the item disappears, rather than holding in place as the mouse is over the menu item. 
 Second, we’d like to know how to expand the width of the main headers and sub headers. Currently, they are not of the same width. 
 Lastly, we’d like to change the font and load new fonts to match the branding of the menu items. 
 Please let us know where we can find instructions to make these modifications/customizations.
 
A: Please, try to write your menuItems parameter correctly. 
You should set "iconOver" parameter for each item (you can set ""). 
Please, see how you should write your menuItems: 
 ["","index.php","nav_home_out.gif","nav_home_over.gif","","_self","0",,,], 
 ["","","nav_experience_out.gif","nav_experience_over.gif","","_self","0",,,], 
      ["|Contestants","experience_contestants.php","","","_self","2",,,], 
... 
> Second, we’d like to know how to expand the width of the 
> main headers and sub headers. Currently, they are not of the 
> same width. 
You should use Individual styles, for example: 
   var itemStyles = [ 
["itemWidth=120px","arrowImageMain=image1,image2=home_out.gif,home_over.gif"],     // style 0 
["itemBorderWidth=2","itemBorderStyle=solid,solid", "itemBorderColor=#AA0000,#0000FF"],     // style 1 
["fontStyle=bold 12px Arial,Helvetica", "fontDecoration=none,underline"],     // style 2 
]; 
  var menuItems = [ 
["","index.php","nav_home_out.gif","nav_home_over.gif","","_self","0",,,], 
     ["","","nav_experience_out.gif","nav_experience_over.gif","","_self","0",,,], 
... 
For submenus you should set the following parameter: 
  var smWidth="150px"; 
> Lastly, we’d like to change the font and load new 
> fonts to match the branding of the menu items. 
You should also use Individual styles. 
But you should set this parameter: 
  var fontStyle=""; 
And then use different fonts for your items. 
Q: I want to use free Non-Profit License of down menu button for my own application that I'm doing.
 
A:  We issue non-profit licenses for Internet websites only. 
If you want to use Deluxe Menu within your own application you shouldbuy Developer License.
Q: How can I make top items different colors in the dhtml pop up menu? 
A: You should create 6 Individual Styles and assign them to you topitems.
  var itemStyles = [
 ["itemBackColor=#0000ff,#0000ff","showByClick=0"], //style 0
 ["itemBackColor=#FF00FF,#FF00FF","showByClick=0"], //style 1
 ["itemBackColor=#00ffff,#00ffff","showByClick=0"], //style 2
 ["itemBackColor=#00ff00,#00ff00","showByClick=0"], //style 3
 ["itemBackColor=#FFFF00,#FFFF00","showByClick=0"], //style 4
 ["itemBackColor=#FF0000,#FF0000","showByClick=0"], //style 5
];
 ["Find out Who we are","http://www.yoursite.org/", "", "", "", "", "0", "0", "", "", "", ], //style 0
 ["Apply For Fellowship","http://www.yoursite.org/info.html", "", "", "", "_blank", "1", "", "", "", "", ], //style 1
 ["Fellows Corner","", "", "", "", "", "2", "", "", "", "", ], //style 2
 ["Enroll in a course","", "", "", "", "", "3", "", "", "", "", ], //style 3
 ["Engage in a discussion","", "", "", "", "", "4", "", "", "", "", ], //style 4
 ["Read The Bulletin","", "", "", "", "", "5", "", "", "", "", ], //style 5
Q: Hi there ... how do I add in the following javascript code so an exit pop doesn't go off: 
 onClick="exit=false;" 
 I read this page, but it didn't work 
 http://deluxe-menu.com/javascript-link-menu-support.html#
A:  Unfortunately, you can't assign onmouseover/onClick event to each item. However, you can achieve this by using standard html objects within items, for example: 
   var menuitems = [ 
 ["<div onClick='your_code_here'>item text</div>", "index.html"] 
 ];