Recent Questions
Q: Is there any luck with getting your popup menusto work with the dynamic drive script..?
A:  Unfortunately we don't work with dynamic drive script.
But I suppose that you can use it with Deluxe Menu without any problems.
But in that case you should move menuItems and dm_init(); function from your data file tothe html page directly.
For example delete the following code from your data file
  var menuItems = [
 ["Aston Martin Page","javascript:ajaxpage('ajaxfiles/external3.htm', 'rightcolumn');\"", "", "", "", "", "", "", "", "", "", ],
];
dm_init();
and paste it in SCRIPT tags on your html page in the place where you want to have a menu:
...
<div>
<script type="text/javascript">
   var menuItems = [
 ["Aston Martin Page","javascript:ajaxpage('ajaxfiles/external3.htm', 'rightcolumn');\"", "", "", "", "", "", "", "", "", "", ],
 ];
 dm_init();
 </script>
</div>
Q: I should mean the font style that I failed to update after I have selected and assign font as shown in the pic above. 
 Step 1. using the sample data file 
 Step 2. select the font section of the Parameter Step3. click the font style and a window box will show up all the installed fonts 
 Step4. the default font is Tahoma, so I change it Times Roman 
 Step5. select Times Roman and click the Assign Font button There is no response with or without option Auto 
 The style font box did not update nor the preview
 
A:  You should click OK button, not "Assign Font" button when you choosethe font. It is possible that you have to click "Update" button on the"Preview" window.
Q: My mainmenu items are not links. So i need no link cursor. My submenu item are links, so i need a pointer(hand).
 How can i define 2 different cursors. I tried all the possible settings for the cursor in the program but noting works. 
 I tried is also with a CSS class for the submenu, but that wasn't also working. 
 In brief: i want an arrow cursur in my mainmenu, and an hand cursor in my submenu. With smart scroll doesn't solve my problem. 
 Can you give me a hint to do this.
 
A:  Unfortunately, you can't change cursor type for different items. 
But you can write so:
 ["<a href='http://deluxe-menu.com/'>Home</a>","", , , , , , , , ], 
 ["Product Info","", , , , , "0", , , ], 
  ["|What's New","", , , , , "0", , , ], 
In all items with links you should use <a> tag. 
Set this parameter: 
  var itemCursor="default";
Q: I am interested in your dhtml menu product, I did not see any examples using a target attribute for the url, i.e.
 <a href=http://yoursite.com/ target-"_blank"> 
 Also if this is supported if you could send me an example of how to configure this...
 
A: You should use the following parameter 
  var itemTarget = "_self"; 
 
Please, see also individual items targets, for example: 
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", , "_blank", , , , ], 
Change "_blank" to "" or to "_self".