Recent Questions
Q: This is the problem I need to solve. 
 When the page loads with dhtml menu with images in Firefox 3, ALL the copy in ALL the tabs is displayed in the browser and I can't figure out what I need to do to change that. What I want displayed is ONLY the copy assosiated with the default tab. 
A:  You should add style="visibility: hidden;" for a content DIVs.
 <div id="stilotig" style="visibility: hidden;">
 <div id="history" style="visibility: hidden;">
 ...
Q: Can I expand all tree category, or expand two tree category?
 I like your javascript menu expand product.
A:  You can expand all items in Deluxe Tree, set:
  var texpanded=1;
To expand specific items you should add "+" sign before item's text:
 ["+Samples Gallery","", "", "", "", "XP Title Tip", "", "1", "0", "", ],
  ["|+Samples Block 1","", "default.files/icon3_s.gif", "default.files/icon3_so.gif", "", "", "", "", "", "", ],
    ["||New Sample 1","testlink.htm", "default.files/iconarrs.gif", "", "", "", "", "", "", "", ],
    ["||New Sample 2","testlink.htm", "default.files/iconarrs.gif", "", "", "", "", "", "", "", ],
Q: Now it works fine in Firefox and mostly in IE.... Only problem... In IE...
 When the page with dhtml tab menu first loads ... It does not load the content of the first DIV....
 It's fine in Firefox...now IE just does not load the first div... I've tried added a JS function to set to visible the first DIV onLoad...but that does not work either...
 Is there anyway to hard-code in ...to set the first DIV to visible?
A: I've just checked your website. Your dhtml tab menu work correctly.
You should check that you use correct value of
  var bselectedItem=1;
parameter.
That is mean that second item in menuItems array will be highlighted.
 ["-","", "", "", "", "", "", "", "", ], //0
 ["About","content1", "", "", "", "", "", "", "", ], //1
 ["FAQs","content2", "", "", "", "", "", "", "", ], //2
 ["Before & Afters","content3", "", "", "", "", "", "", "", ], //3
 ["Pre/Post Care","content4", "", "", "", "", "", "", "", ], //4
 ["Special Offers","javascript:location.href = '../specials/index.htm'", "", "", "", "", "", "", "", ], //5
Now you have also:
<script type="text/javascript" src="data-deluxe-tabs.js"></script>
<table cellpadding="0" cellspacing="0" border="0" width="500">
<tr>
 <td align=center valign=top>
<table cellpadding="0" cellspacing="0" border="0" width=500 height=250 align=center>
<tr>
 <td valign=top height=1>
 <script type="text/javascript" src="../scripts/templates/tabs-opera.js"></script>
 </td>
</tr>
I think that it is not correct. You should write:
<table cellpadding="0" cellspacing="0" border="0" width="500">
<tr>
 <td align=center valign=top>
<table cellpadding="0" cellspacing="0" border="0" width=500 height=250 align=center>
<tr>
 <td valign=top height=1>
<script type="text/javascript" src="data-deluxe-tabs.js"></script>
 </td>
</tr>
Q: I really like floatable tree menus and want to add in this website.
 I am not professional website developer … I’ve installed your trial software …
 but not able to add tree menus in my website. 
Can you pls guide me how I can add dhtml vertical 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" on the 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.