Recent Questions
Q: Can your free dhtml menu have boarderes around the sub-menus only..
A: You should create Individual style and assign it to the first item in each submenu.
  var menuStyles = [
 ["menuBorderWidth=1","menuBorderStyle=solid","menuBorderColor=#813A07"],
];
  var menuItems = [
 ["Home","testlink.html", "", "", "", "", "", "", "", ],
 ["Product Info","", "border-example.files/icon1.gif", "border-example.files/icon1o.gif", "", "", "", "", "", ],
  ["|Features","testlink.html", "border-example.files/icon2.gif", "border-example.files/icon2o.gif", "", "", "", "0", "", ],
Q: I pushed the js files you attached and it fixed my Trial error message but now my left menus APPLMENU.JS and APPL2MENU.JS won't mouse over and won't open the submenus and it gives a javascript error.
 
A:  Now you have several errors in you data files appl2menu.js andapplmenu.js. 
Now you have 
  var menuBackColor="cccccc"; 
  var menuBorderWidth=""; 
  var itemBorderWidth=""; 
This is not right. 
Try to write them: 
  var menuBackColor="#CCCCCC"; 
  var menuBorderWidth="0"; //this parameter cannot be empty 
  var itemBorderWidth="0"; //this parameter cannot be empty
Q: We would like it so when you click on an option in the free dhtml menu, the page shows up in the main middle frame..So far, I can only seem to get it to show up in its own page. 
A: You should set the correct target parameter for your items.
You can set target parameter for all items:
  var itemTarget="main";
Where main - is the name of the main middle frame where you want to open the link.
["Home","testlink.html", "", "", "", "main", "", "", "", "", "", ], Q: I have built a menu with deluxe menu and I have put everything in the same map but the page doesn't display the drop down menu it says there is an error. Could you look what I do wrong? 
A: It is not correctly to write local paths on your website. They won'twork:
<script type="text/javascript" src="file:///C:/Test%20website%202008/x5/data.js"></script></td>
You should upload your data.js file in the same folder with yourdmenu.js file and write:
<script type="text/javascript" src="data.files/data.js"></script></td>