Recent Questions
Q: The problem I am having is specfically on the home page. The Navigation dhtml horizontal menu is at the top of the page. There are also Flash documents on this page only. When you go to the dhtml horizontal menu and select and option that has Sub-Items and position your mouse over those items, when the menu expands to show all of the text, it is cut off on theright side, this only occurres when there is a flash document behind the menu. All of the other pages work fine. 
 Do you have any idea why this occurrs? I have tried several things to fix this, but no luck. Is there a fix for this? 
A:  Try to set exact width for your sub menus. You can do it usingIndividual Submenu style:
  var menuStylesNames=["Top Menu","width1","width2",];
  var menuStyles = [
 ["menuBackColor=transparent","menuBorderWidth=0","itemSpacing=0","itemPadding=5px 6px 5px 6px"],
 ["smWidth=100px"],
 ["smWidth=210px"],
];
  ["|Modifieds ","mods.html", "", "", "", "_parent", "", "1", "", "", "", ],
  ["|Amateur Winter Race Bonnanza","http://triovalspeedway.vflyer.com/1/index.html", "", "", "", "", "", "2", "", "", "", ], 
Q: I would like to separate each main js dropdown menu item (Find an Expert, Contact...etc) with a dotted line graphic. If you look at the js dropdown menu, you will see that each graphic is separated by a dotted line. I am trying to replicate that look in the Deluxe Menu. Is there a way I can do that? I tried to use the "separatorImage" value in the DeluxeTuner, but it didn't seem to do anything. Is there a way to put a dotted border just along the bottom of them item, instead of around the whole item (like a box)? Or is there a way to insert the graphic between the items?
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 have images that I want to use for the top level of the menu. How do I create a menu using images that were created in a different program? I tried to look in the frequently asked questions but IcouldnТt find anything that told me how. Thank you in advance for your help.
 
A:  You can use any image for the top items. 
You can set 
  var itemBackImage=["",""]; 
Or, create Individual style 
  var itemStyles = [ 
 ["itemWidth=92px","itemBorderWidth=0","fontStyle=normal 11px Tahoma","fontColor=#FFFFFF,#FFFFFF","itemBackImage=data-vista-03.files/btn_magentablack.gif,data-vista-03.files/btn_magenta.gif"],
]; 
The new method of making image-based menus: if item text is empty, icon fields will be used as item images. 
 For example: 
 ["", "index.html", "itemImageNormal.gif", "itemImageOver.gif", "Home Page"]
Q: I can not figure out how to fix the menu from going off the page inMozilla by using html code. I don't know where to put the code. I would likeit to be flush right.
 
A: Try to set exact width for the menu width and menu height, try to specify unitsin "px": 
  var menuWidth="500px"; 
It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly. 
  var menuHeight="20px"; 
You should also check your padding parameter, you should write it so:
  var itemPadding="1px 1px 1px 12px";