Recent Questions
Q: I had test on php but I have problem with content "ABC-1" not show when run page first of the tab menu javascript, anh then I click it is show content.
A: Check parameter:
  var bselectedItem = 0;
Selected tab index by default. Index is an tab number in bmenuItems array.
It Must be > = 0;
Q: What window do I go to in the dhtml menu creater to add the hyperlinks target??? I created menus and submenu but I don't know how to add the hyperlinks to them? 
A:  You should add links and target in Deluxe Tuner in "ItemParameters" window. See the attached example.To set target for all items you should use the following parameter("Common" section):  var itemTarget="_self";
Q: I have managed to insert a separator in a menu and set the image path but the separator image does not show. 
 
 Is there anything else I need to do?
 
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 ordered & installed the dhtml collapsable menu. 
 I can't seem to get the floating function to work. Here's how I have the variables set in the data-tree.js file:
   var tfloatable = 1;
   var tfloatIterations = 10;
   var tfloatableX = 0;
   var tfloatableY = 1;
 And here are the links to the .js files in my HTML doc <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="tree-menu/";</script>
 <script type="text/javascript" src="tree-menu/dtree.js"></script>
 <script type="text/javascript" src="tree-menu/dtree_add.js"></script>
 <script type="text/javascript" src="tree-menu/dtree_ajax.js"></script>
 <script type="text/javascript" src="tree-menu/dtree_dyn.js"></script>
 <!-- Copyright (c) 2006, Deluxe Tree, deluxe-tree.com -->
 Please let me know if there are any other settings that need to be changed. I'm hoping to go live with this site wed. so a quck reply is appreciated.
A: Notice, your dhtml collapsable menu won't float with relative position. You shouldset:
  var tabsolute=1;