Recent Questions
Q: No matter where I paste the script in the html for the drop down menu I created, it shows up at the top left corner of the page. 
 I would like it to go below the blue banner at the top of the page.
 Please advise as to what I am doing wrong. 
A:  Now you're using absolute position for the menu: 
  var absolutePos=1; 
  var posX="10px"; 
  var posY="10px"; 
Try to use relative position 
  var absolutePos=0; 
  var posX="10px"; 
  var posY="10px";
Q: I am unable to see any separators when working with Deluxe Menu. I’ve looked at other templates and don’t see where they are implemented. Am I missing something? Thanks! 
A: Please, see the following parameters: 
//------- Separators ------- 
//--- Separators 
  var separatorImage=""; 
  var separatorWidth="5"; 
  var separatorHeight="100%"; 
  var separatorAlignment="right"; 
  var separatorVImage="images/public/separator.gif"; 
  var separatorVWidth="3"; 
  var separatorVHeight="100%"; 
  var separatorPadding=""; 
You should set a separator in the menuItems, for example: 
  var menuItems = [ 
 ["Home","index.cfm", , , , , , , , ], 
 ["-"], 
 ["About Us","about.cfm", , , , , , , , ], 
]; 
Try that.
Q: I'm using your DHTML menu product. 
 I've read the parameters but am unable to make the drop down menu links stop spawning a new window on click. 
 I love the product and want to use it on my web but I've got to make it stop having babies! Have you some advice for me or a FAQ page you can send? 
A: You should use the following parameter 
  var itemTarget = "_self"; 
Please, see also individual items targets, for example: 
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", , "_blank", , , , ], 
Change "_blank" to "" or to "_self".
Q: I am not professional website developer … I’ve installed your trial software … but not able to add navigation menu tree in my website. Can you please guide me how I can add tree menus in left side bar of website?
A: Unfortunately we don't have step by step tutorial yet.
We'll try to create it in the nearest time.
1. Create your menu in Deluxe Tuner application.
You can create any menu you like in Deluxe Tuner.
You can use ready to use templates. You can find them in the templateswindow.
When you open Deluxe Tuner ( Deluxe Tree ) 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
http://www.deluxe-tree.com/parameters-info.html
You can also use Individual Styles for items and subitems.
2. You should install the tree menu on your page.
You can click, for example, File/Export to HTML.
Add several rows into your html page.
<head>
...
<!-- Deluxe Tree -->
<noscript><a href="http://deluxe-tree.com">Javascript Tree Menu by Deluxe-Tree.com</a></noscript>
<script type="text/javascript">  var tWorkPath="deluxe-tree.files/";</script>
<script type="text/javascript" src="deluxe-tree.files/dtree.js"></script>
<!-- (c) 2006 - 2007, http://deluxe-tree.com --> 
...
</head>
<body>
...
<table>
<tr><td><script type="text/javascript" src="menudir/data-tree.js"></script> </td></tr> //data-tree.js - data file created in Deluxe Tuner.
</table> 
...
</body>
You should also copy all engine files
dtree.js - menu engine file
dtree_add.js - additional module for floatable/movable menus
dtree_dyn.js - additional module with Javascript API to change the menu "on-the-fly"
dtree_ajax.js - additional module with the AJAX-like support
into "deluxe-tree.files/" folder. You should place this folder in thesame folder with your index.html page.
Try that.