Recent Questions
Q: I would like to know how to put the items for the popup menu on multiple lines (i.e. create a line feed), how do I tell my code to start a new menu item on the NEXT line? 
A: There are 2 ways to do that:
1. set
  var noWrap=0;
2. use 
 tags, for example:
  var menuItems = [
 ["|Here is where <br> I would like 
to have a line<br> feed",,"","", "", "", "", "", "", "", "",],
];
Q: At present the javascript drop down menus expand intelligently into the area with more real estate (i.e. up or down). How can I force the menus to only expand down?
 
A: Set the following parameter:
  var subMenuVAlign="bottom";
Q: Is there a way to change the height of the main buttons in Dhtml Menu. When I use the GUI tool there is nowhere to change the main button height. And when I tried to change it in the script file, it did me no good. I want all of the main buttons to be the same size.
A: You can use standard <img> object to set menu height, for example:
  var menuItems = [ 
 [" <img src='blank.gif' width=1 height=50>text"], 
];
Q: We were wondering is there any api for the css menu tabs available?
 We would need to programatically open a particular tab.
A: No, 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>