Recent Questions
Q: I am trying to placed a separator image in between each item in my css vertical dropdown menu. I have placed the image in the seperator field and it will not display. How can I get an image to be a separator in between items on my css vertical dropdown menu?
A:  To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in css vertical dropdown menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in css vertical dropdown menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems (you can do it in DeluxeTuner, use "Add separator" button), for example:
  var menuItems = [
 ["item 1"],
 ["-"], // this item is separator
 ["item 2"],
];
Q: Can a drop down menu go over a Flash and be transparent?Let me know. 
A: Yes, it is possible.
To set transparence for submenus you should set the followingparameter:
  var transparency="70";
Q: Mouseover "QUICK LINKS" at the top. The bottom java menu navigation item is falling behind the mainnav table. 
 It works fine in FireFox. Any suggestions? 
A:  Try to add a high z-index for the DIV with top menu, for example:
<DIV id=containerHeaderNav style="POSITION: absolute; z-index:50;">
Q: Only problem left is that we see an empty image in the left corner of the java pulldown menu.
 I can't find how to remove this image. Do you know where this comes from?
 
A:  You should delete the following string from your menuItems 
 ["","", , , , , "0", ], 
Try that.