Recent Questions
Q: I cannot see the shadow on the top items of the menu. Can you help me?
 
A: Now you have shadow the submenus only, if you want to have shadowfor the top items you should set the following parameters: 
//--- Transitional Effects & Filters 
  var shadowLen=4; 
  var shadowColor="#B1B1B1"; 
  var shadowTop=1; 
You can see the shadow in Internet Explorer 5+ only.
See more info here: 
http://deluxe-menu.com/filters-and-effects-sample.html
Q: I am trying to get my text within a single menu item to have text on two lines as opposed to be all on one line. 
 For example, I currently have CumberlandHeadElementary School all on one line of a menu. I would like to have Cumberland Head on one line and Elementary School on a line below Cumberland Head. Hope this makes some sense. 
Thanks for your help.
 
A: Try to set this parameter: 
 
  var noWrap=0; 
 
If it is not suitable for you, try to use <br> tags in the item text, for example: 
 
  var menuItems = [ 
 ["please, select the color you<br>prefer for the background 
 of<br>the image of the photo of your son",,,], 
]; 
Q: I've just updated my menu from 2.4 to 3.2. All is fine except two of my java script pop up menu (vertical) appear on the left instead of the right, all the others pop out to the right as before. I've tried saving it as a completely different file name, same problem, both within a browser and within your preview pane.
 Any help would be much appreciated, I'm at a loss.
A:  You can try to change the following parameter:
  var subMenuAlign="left";
You can also send us a direct link to your website, so we can check it.
Q: I can't figure out how to get menu items to swap images to use like a traditional image rollover. In the Dhtml menu, I can change the style background without needing images, or I can use generic images as a background, but I have situations where I need to use unique images for each state of a button. 
 These unique image buttons contain text and graphics, and there are different images for different states: normal, mouse over, mouse down.
 
A: The menu has only two states normal and mouseover. 
You should use Individual Item Styles. 
Please, see the example of Deluxe Menu here: 
http://deluxe-menu.com/data-templates/vista-style-02-template-sample.html 
You should use "itemBackImage" parameter. 
  var itemStyles = [ 
 ["itemWidth=92px","itemBorderWidth=0","fontStyle=normal 11px Tahoma","fontColor=#FFFFFF,#FFFFFF","itemBackImage=btn_greenblack.gif,btn_green.gif"],
];