Recent Questions
Q: I want that the font of an selected menupoint for the horizontal tree view is bold and red.
 What is the variable to define that?
A: Try to use the following parameter:
  var tpressedFontColor = "#AA0000"; 
 // Color of a text of selected items. Used when   var ttoggleMode = 1. Date: 10.21.2005
Q: Do you have a Mac version for javascript menu navigation?
A: You should download free trial version on MAC.
So, you'll have MAC version of Deluxe Menus.
And use the licensed engine files from the licensed .zip
 (you candownload it from the link in your license message).
Unfortunately we don't have html version of the Tuner for Deluxe Tree
and Deluxe Tabs now. We'll try to create it in the nearest future.
You can find all templates for Deluxe Tree, Deluxe Tabs, Popup Window, Calendar in thetrial package.
More info about installation and parameters you can find on our websites:
http://deluxe-menu.com
http://deluxe-menu.com/css-menu/
http://deluxe-tabs.com
http://deluxepopupwindow.com/
http://calendardatepicker.com/
Q: I have been trying to get ‘Content’ in to the float tab, and I cannot find how that is done. 
A: You should specify any Object ID name of the DIV.
See, for each item you should assign the ID property of the contentDIV (see data file with your menu parameters).
 ["Style Name","contentName", "", "", "", "", "1", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Description","contentDescription", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Variations","contentVariations", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Empty","", "", "", "", "", "2", "", "", ],
And on your html page you should create DIV's with such ID. You canset background image for these DIV's in styles.
 <div id="contentName" style="height: 0%; visibility: hidden; background-image: url('img/back.jpg'); background-repeat:repeat-y;" class="tabPage">
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p>
 You should paste your content here!!!!!
 </div>
 <div id="contentDescription" style="height: 0%; visibility: hidden;" class="tabPage">
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p>
 You should paste your description here!!!!!
 </div> 
Q: My site has three levels of a folder structure.  Can I create a menu that will allow me to link in and out of folders?  Or must I design three menu's with different link locations.   
A:  You can use one menu.
Use additional parameters to make menu paths absolute:
  var pathPrefix_img = "http://domain.com/images/";
  var pathPrefix_link = "http://domain.com/pages/";
These parameters allow to make images and links paths absolute.
For example:
  var pathPrefix_img = "http://domain.com/images/";
  var pathPrefix_link = "http://domain.com/pages/";
  var menuItems = [
 ["text", "index.html", "icon1.gif", "icon2.gif"],
];
So, link path will be look so:
http://domain.com/pages/index.html
Images paths will be look so:
http://domain.com/images/icon1.gif
http://domain.com/images/icon2.gif
Please, try to use these parameters.