Recent Questions
Q: In the navigation bar below (done in Spanish) I am trying to display the word “Niños” (Children) but looks like this special character is not displayed correctly.  How I fix this?
 
A: Try to write it in the following way:“Niños”
Q: I just noticed as well that I cannot change the spacing of the buttons.
 Right now the buttons are tight together, how do I create a gap between each dhtmlmenu button?
A: You can paste the separator.
Please, see the following parameters:
//------- Separators -------
  var separatorWidth = "10";
  var separatorHeight = "20";
  var separatorAlignment = "center";
  var separatorImage = "C";
  var separatorVWidth = "150";
  var separatorVHeight = "10%";
  var separatorVImage = "image.jpg";
You can create separators using menuItems, for example:
  var menuItems = [
 ["item 1"],
 ["-"], // this item is separator
 ["item 2"],
];
You can also use this parameter:
  var itemPadding = "4px";
You can also set multiple values, for example:
"2px 15px 5px 5px";
(top, right, bottom, left)
Q: I have downloaded the trial software and built my tabs, 
 but at this point, all I have is the tabs... I need the entire box under the menu tabs in css, 
 and I need to be able to insert my content for each tab. 
A: You should specify any Object ID name of the DIV.
See, for each item you should assign the ID property of the content
DIV (see data file with your menu parameters).
 ["Style Name","contentName", "", "", "", "", "1", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Description","contentDescription", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Variations","contentVariations", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Empty","", "", "", "", "", "2", "", "", ],
And on your html page you should create DIV's with such ID. 
You canset background image for these DIV's in styles.
 <div id="contentName" style="height: 0%; visibility: hidden; background-image: url('img/back.jpg'); background-repeat:repeat-y;" class="tabPage">
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p>
 You should paste your content here!!!!!
 </div>
 <div id="contentDescription" style="height: 0%; visibility: hidden;" class="tabPage"> 
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p> 
 You should paste your description here!!!!!
 </div> 
Q: It is possible to have context menu work with your tree? 
 More specifically, when you right click on a tree node, have a context menu appear.
 
A: Please, try to use this API function: 
function apyt_ext_userRightClick(itemID)
More info you can find here: 
http://dhtml-menu.com/tree-examples/dynamic-functions.html