Recent Questions
Q: I am trying to get my submenu to be all black along with the main menu item that I am hovering over. 
 But I cannot do it. 
A:  Now you have 
  ["|About Us","About_Us", , , ,"Tip Text" , , , ,"0"], 
it is not right. You should write 
  ["|About Us","About_Us", , ,"Tip Text", , ,"0",],
Q: We purchased your software and would like a way to give our users the ability to right click (or equivalent) and open a link in to a new window. 
 Is there a way to do this? If not, do you have a work around that people have found helpful. 
 As an example, I have a menu item that goes to http://www.google.com. Typically, it loads this in to one of our frames. However, I would like the end user to have the ability to either load it in to one of our existing frames or to load it in its own window.
A:  You can try to write the following code for your items: 
 ["<a href='index.html' target='_blank' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ], 
And create styles 
.home{ 
color: #FFFFFF;} 
.home:hover{ 
color: #FFBEBE;}
Q: In javascriptcoding I have id of the submenu. How can retrieve id of the parent menu item in the drop-down menus?
A: You can try to use the following function
function dm_ext_getSubmenuParams (menuInd, submenuInd)
Returns submenu parameters in the array:
 [submenu_id, items_count, parent_item_id, submenu_level, is_horizontal]
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
Using this function you can retrieve the parent_item_id.
More info see:
http://deluxe-menu.com/functions-info.html
Q: How I center a menu on the deluxe javascript menu creator?. 
 I am making a menu right now for my new site. 
A:  It is not possible to center the menu in Deluxe Tuner, you can centerit on your html page.
In Deluxe Tuner you can use absolute position.
To center the menu on your html page you should set the followingparameter and install the menu in the following way:
  var absolutePos=0;
<div align=center>
 <script type="text/javascript" src="deluxe-menu/dmenu.js"></script>
</div>