Recent Questions
Q: I can't figure out how to change the names of each tab for the simple dhtml tabs!
A: You can set the name of each tab in the Deluxe Tuner.
Double click on the item name in the Items area.
Or set the name of the tab using   var bmenuItems:
  var bmenuItems = [
 ["Name of Tab1","content1", "", "", "", "", "1", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Name of Tab2","content2", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Name of Tab2","content3", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Contact us","content4", "", "", "", "", "2", "", "", ],
];
Q: Just wondering if it is possible to select a specificdhtml tab via JavaScript.
 Eg. A link on the page to select the next tab (or any other for that matter)
A: You can use the following function to open appropriate tab:
Unfortunately Deluxe Tabs doesn't support API functions now.
You can use the following function to open specific tab:
dtabs_itemClick(menuInd,itemInd);
where
menuInd - index of a tab menu on a page, >= 0.
itemInd - index of a item, >=0.
For example:
<DIV onClick="dtabs_itemClick(0,2)" style="width: 200px; border: 2px solid #000;">Click to open the third tab</DIV>
Q: When my page loads up, there is a flash for about a second of all the text that is used in the java menus. This looks really bad to visitors like I am using hidden text on the page. Is there a way to prevent this flash of text?
A:  I suppose that you see search engine friendly code.
 <!-- Code for Deluxe Menu Items. Generated by Deluxe Tuner -->
 <div id="dmlinks" style="font:undefined;color:#000000;text-decoration:none">
 <a id="dmI0" href="testlink.html">Home</a>
 <a id="dmI2" href="testlink.html">Features</a>
...
 </div>
 <!-- End of Code for Deluxe Menu Items -->
You won't see this text in most cases. We use it on our websites too.
But you can delete this code if you want.
Q: Is it possible to centere mouse over drop down menu?
 
A: Check that you set relative position for the menu:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";
Place your menu in DIV or TABLE with center alignment.