Recent Questions
Q: Is there a way to highlight the selected item in the dhtml treemenu of the current page when the link target is _self? 
Or pass in the selected item to the new page?
A:  You can set a pressed item using Javascript API:
function dtreet_ext_setPressedItem (menuInd, itemID)
Please, see here:
http://deluxe-tree.com/functions-info.html
You can also set
  var tsaveState = 1;
More info you can find
http://deluxe-tree.com/data-samples/tree-menuxp-save-state.htm
To expand specific items you should use API function
function dtreet_ext_expandItem (itemID, expand)Q: I am having a lot of trouble trying to get the menu to work properly. I want to make sure that I get it working before I make the licesning purchase. 
 The menu is to be CSS based but while I have the main menu somewhat in location, none of the settings are correct. Can you help? 
A:  See, the problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
 To get the value you should move .css style into style="POSITION: relative;" attribute.
Please, try to add your 
 css file -> inline css 
 Try to write so: 
<DIV id=if-navbar style="POSITION: relative;">
Q: I just don't understand the 'concept" of how It should be put into my html page.
I plan on having more than one menu on my page. and this would be an example of one of the drp down menus I want on it. I'm fairly new to making a webpage, but this menu is what I would like on my page.
 sorry for being a little slow at this, I DO LOVE how it lays out and cant wait to get it to work on my webpage. 
A:  1. Create your menu in Deluxe Tuner application. 
You can create any menu as you like in Deluxe Tuner. 
Deluxe Tuner v2.4 supports Deluxe Menu (http://deluxe-menu.com) &Deluxe Tree (http://deluxe-tree.com) & Deluxe Tabs (http://deluxe-tabs.com) 
You can use ready to use templates. You can find them in the templateswindow. 
When you open Deluxe Tuner ( Deluxe Menu ) you can click "File/New"and add items and subitems using buttons "Add Item" and "Add Subitem" onthe main window. 
You should set items and subitems parameters on the "Item Parameters"window. 
See also other parameters for the menu on the main window. 
More info about menu parameters you can find on our site (you can alsouse local version of the site which you can find in the trial package"Deluxe Menu / deluxe-menu.com /") 
http://deluxe-menu.com/parameters-info.html 
http://deluxe-menu.com/menu-items-info.html 
You can also use Individual Styles for items and subitems 
http://deluxe-menu.com/individual-item-styles-info.html 
http://deluxe-menu.com/individual-submenu-styles-info.html 
2. You should install the menu on your page. 
You can click, for example, File/Export to HTML (you can't do it inthe MAC version). 
Add several rows into your html page. 
<head> 
... 
 <!-- Deluxe Menu --> 
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
 <script type="text/javascript">  var dmWorkPath="deluxe-menu.files/";</script> 
 <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script> 
... 
</head> 
<body> 
... 
<table> 
<tr><td><script type="text/javascript" src="deluxe-menu.files/data.js"></script></td></tr> //data.js - data file created in Deluxe Tuner.
</table> 
... 
</body> 
You should also copy all engine files 
dmenu.js 
dmenu4.js 
dmenu_add.js 
dmenu_dyn.js 
dmenu_key.js 
dmenu_cf.js 
dmenu_popup.js 
dmenu_ajax.js 
into "deluxe-menu.files/" folder. You should place this folder in thesame folder with your index. html page. 
If you want to install several menus on the one page you should writethe following code once 
 <!-- Deluxe Menu --> 
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript> 
 <script type="text/javascript">  var dmWorkPath="deluxe-menu.files/";</script> 
 <script type="text/javascript" src="deluxe-menu.files/dmenu.js"></script> 
And then call your data files several times. 
<script type="text/javascript" src="deluxe-menu.files/data.js"></script> 
<script type="text/javascript" src="deluxe-menu.files/data1.js"></script> 
<script type="text/javascript" src="deluxe-menu.files/data2.js"></script> 
<script type="text/javascript" src="deluxe-menu.files/data3.js"></script> 
Try that.
Q: How do I set the width of sub menu items to be the same width as the parent horizontal dhtml menu item? I can see how to set a px or % width, and when the at least one sub menu item exceeds the parent item the the entire menu stretches to that width (which is fine), but what about the instance where the sub menu items are not as wide as the parent item - in this case, the sub menu is not as wide as the parent item, which looks odd. Is there any way to force it to be (at least) the same width as the parent item? 
 I hope this is all clear to you, if not, please give me a shout for clarification. 
A: 	 You can set exact width for your top items using Individual Item Styles and set submenu width usingIndividual Submenu Style.
You should also set the following parameter:
  var noWrap=0;