Recent Questions
Q: How can I set the padding for the dhtml horizontal menu text at the top? I want more padding on the left of the text but I don't want it centered. 
A:  You can set bigger left padding for your Submenu Style, for example:
  var menuStyles = [
 ["menuBackColor=transparent","menuBorderWidth=0","itemSpacing=1","itemPadding=0px 5px 0px 25px"],
];
itemPadding=0px 5px 0px 25px
                  top right bottom leftQ: Can Deluxe menus work with tables? 
A: Yes, you can place your menu into the <div> or <table> tag. 
For example: 
 <table> 
    <tr> 
        <td><script type="text/javascript" src="menudir/data.js"></script></td> 
   </tr> 
  </table>
 
Q: Very interested by your product.I want to know, before buy, if I can call javascript function when the user click on a items in the horizontal drop down menu?
A: You're able to use Javascript for each item, for example:
   var menuitems = [
 ["item text", "javascript:your_code_here"]
 ];
 Unfortunately, you can't assign onmouseover/onClick event to each item.
 However, you can achieve this by using standard html objects within items, for example:
   var menuitems = [
 ["<div onClick='your_code_here'>item text</div>", "index.html"]
 ];
Q: Is it possible to add a combo box or a search field to a tree view component?
A:  You can paste any html code inside item's text, for example:
 ["+Support", "", "icon5_t.gif", "icon5_to.gif", "", "Support Tip"],
  ["|Index  <select style='width:120px;height:17px;font:normal 10px Tahoma,Arial;'><option>Section 1<option>Section 2<option>Section 3</select>","", "", "", "", "", "", "0"],
  ["|Search <input type=text style='width:80px;height:17px;font:normal 10px Tahoma,Arial;'>  <input type=button value='Go'style='width:30px;height:17px;font:normal 10px Tahoma,Arial;'>", "", "", "", "", "", "", "0"],
  ["|Write Us", "mailto:[email protected]", ""],
  ["|<INPUT TYPE=checkbox CHECKED ID=chk1 onclick='choosebox1()'>Uncheck this check box for some free advice","","","",],
 ["<img src='img/sep.gif' width=113 height=1>"],