Recent Questions
Q: I have tried various different ways,I cannot get a separator image I have specified in the Separators section to display for the navigation-bar-menu. I have verified that the image exists, but still nothing. 
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 (you can do it in Deluxe
Tuner, use "Add separator" button), for example:
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
    ["||-"],
    ["||Pricing & Ordering Info","gallery_pricing.html", , , ,"_self", , , , ],
 
Q: I recently purchased a license to use Deluxe Tree Menu.
 The javascript array menu is looking great in IE6.0, but there are some very odd images that show up in Firefox. Please help me resolve this issue.
 I believe I made modifications from the template of Vista Style 7, although I'm not certain of this. I've deleted unnecessary images from the folder, zipped it up, and have attached it to this email. You'll see the problem on the AboutUs, Services, and Gallery pages. 
A:  Please, check that you have blank.gif image in the correct place.
For AboutUs page:
  var tblankImage="aboutusmenu.files/blank.gif";
Q: Can a clear drop down menu transparent go over a Flash and be transparent?
A:  Yes, it is possible.
To set transparence for submenus you should set the followingclear drop down parameter:
  var transparency="70";
Q: I fixed that problem, but if you look at the website, I have the first 2 links in the javascript sliding menu set to show up in the mainframe but nothing happens. When I open deluxe menu on my computer, it also shows that I have the third link set up to show in the mainframe too but when I upload it to the website, it acts like it's not pointing to any file/url 
A:  Now you have:
 ["Home","main.html", "", "", "", "#mainframe", "", "", "", "", "", ],
 ["County Departments","dept.html", "", "", "", "#mainframe", "", "", "", "", "", ],
 ["Board Members","", "", "", "", "mainfrm", "", "", "", "", "", ],
It is not correct to set target as "#mainframe". You should write"mainframe":
 ["Home","main.html", "", "", "", "mainframe", "", "", "", "", "", ],
 ["County Departments","dept.html", "", "", "", "mainframe", "", "", "", "", "", ],
 ["Board Members","", "", "", "", "mainframe", "", "", "", "", "", ],