Recent Questions
Q: I'm using the deluxe-tree. On the top of the tree there is a title. When I click on the title of expandable tree the whole menu collapse. How can I disable this option?
 I want to keep the collapse option when I click on the collapse button but not when I click on the title. I'm using the Xp style1 and I also want to keep the aspect of this title.
 I hope I'm clear to you ... if you need me to be more precise let me know. 
A:  Try to set the following parameter:
  var texpandItemClick=0;
Q: How do I add content to each tab in the hover tab menu so that the content will appear on this same page 
(as opposed to having to move to another page)?
A: You should paste your content in the <div> ..  tags.
 <div id="content1" style=" visibility: hidden;" class="tabPage">
 <p align=center><img src="img/logo_DM.gif" width=262 height=56 alt="Deluxe-Menu.com"></p>
 </div>
 <div id="content2" style="visibility: hidden;" class="tabPage"> 
 <p align=center><img src="img/logo_DT.gif" width=262 height=56 alt="Deluxe-Tree.com"></p>
 </div>
 <div id="content3" style=" visibility: hidden;" class="tabPage">
 <p align=center><img src="img/logo_DTabs.gif" width=254 height=58 alt="Deluxe-Tabs.com"></p>
 </div>
See in Deluxe Tabs there are two modes:
1.   var tabMode=0;
You can create only one level of tabs and assign Object Id's of the
DIV's to show when you click on the tab.
 ["XP Tab 1","content1", "", "", "", "", "", "", "", ],
 ["XP Tab 2","content2", "", "", "", "", "", "", "", ],
 ["XP Tab 3","content3", "", "", "", "", "", "", "", ],
 ["XP Tab 4","content4", "", "", "", "", "", "", "", ],
2.   var tabMode=1;
You can assign only links in this mode.
You should create top level items with subitems.
 ["XP Tab 1","", "", "", "", "", "", "", "", ],
  ["|Link 1_1","http://deluxe-tabs.com", "", "", "", "", "0", "", "", ],
  ["|Link 1_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 2","", "", "", "", "", "", "", "", ],
  ["|Link 2_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 3","", "", "", "", "", "", "", "", ],
  ["|Link 3_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_5","testlink.htm", "", "", "", "", "0", "", "", ],
You can use Object ID as well as Link in both modes. Use the following prefixes within item's link field:
"object:" - means that there is object id after it; 
"link:" - means that there is a link after it.
"javascript:" - means that there is a javascript code after it, for example:javascript:alert(\'Hello!\')
So, you should write for example:
  ["|Link 1_1","object:Content1_1", "", "", "", "", "0", "", "", ],
Q: Hello, Could you please help me with an alignnment issue with my website. If you go to mt website you will see the problem. I set the x alignment to=266 but the y alignment is left blank because I would like to keep the menu centered on the site. 
A: If you want to center the menu paste itwithin the <div> or <table> with a static position and specify a center alignment for it, for example: 
<DIV align=center> 
<SCRIPT src="data/data.js" type=text/javascript>
</SCRIPT> 
</DIV> 
Please, set exact value for   var menuWidth parameter, for example: 
  var menuWidth = "300px"; 
This can help to align your menu correctly in all browsers. 
Try also to specify units in "px". 
Set also: 
  var absolutePos = 0; 
Try that. 
Q: I have a question that I cannot find in your FAQ section about your Deluxe Tree Menu. 
 Bought the whole set a few days ago and is very happy about it, I am uzzled & frustrated about one thing now though. 
 - = Link 
 + = Link with subCat. 
 I have a menu that looks something like this: 
 - Home 
 + Our products 
 + FAQ 
 + Stores 
 - Contact
 + Wholeseller 
 + About us
 Now every link here has a icon/s to the right that shows if the category is folded up or not. Trouble is that so has the - Home and - Contact that DON'T have any subitems! How to create dhtml menu so those two tree items won't get the rightsided icons? 
 The frustrating/confusing thing is if I place - Home or - Contact into lets say + Our products, the right side icon goes away and there it looks as I want it. But I NEED it to look this way in the top section. 
A: You have icons in the top items on the right side in XP-style only.
You can set the following parameter to turn off XP-style:
  var tXPStyle=0;