Recent Questions
Q: Can I use my own images as the tabs in a div tab menu?
A: The Drop down menu items have the following structure:
   var menuItems = [
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 [text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
 ...
];
Where iconNormal, iconOver - Icons of an item: icon in normal state, icon in mouseover state.
So you can set your menu items in a such way:
  var menuItems = [
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
 ["","", "icon2.gif", "icon2o.gif"],
  ["|","testlink.htm", "icon3.gif", "icon3o.gif"],
  ["|","testlink.htm", "icon4.gif", "icon4o.gif"],
  ["|","testlink.htm", "icon5.gif", "icon5o.gif"],
 ["","testlink.htm", "icon1.gif", "icon1o.gif"],
];
Q: The menu is the table imbedded to the layer. 
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.js"></script> 
</div> 
Please, set exact value for   var menuWidth parameter, for example: 
  var menuWidth = "500px"; 
This can help to align your menu correctly in all browsers.
Try also to specify units in "px".
Set also: 
  var absolutePos = 0; 
If you want to use absolute position for the menu, use varabsolutePos=1 instead of absolute position for div. 
Q: I use v3.0.
 I cannot manage to search within the menu.
 I have done this:
   var dmSearch=2
 "search:" in the link of a new item
 
A:  You forgot to copy dmenu_search.js file on your server.
See the attached example. Search works fine.
You can also specify styles for the search box:
  ["|Doorzoek menu ","search:value='search..' style='border:1px;width:60px;height:14;font-size:10px;'", "", "", "", "", "", "", ],
Q: How can I use Danish characters in my dhtml menu bars?
A: You should turn on "Tools/Use utf8 encode" property.
In that case your data file will be saved in UTF-8 encode. So, you
should set UTF-8 encode on your page too
<meta http-equiv="Content-Type" content="text/html"charset="UTF-8">
If you don't want to use UTF-8 encode on your page you should turn off
"Tools/Use utf8 encode" property, save your data file and manually
change your letters in any text editor.