Recent Questions
Q: I'd like to re order the position of the drop down menu's items (by example) the cities.
 A-city
 C-city
 D-city
 B-city
 E-city etc.....
 B-city had to come under A-city, how can we do that? 
 Thank you 
A: 	I'm not sure I understand where you would like to change the position.In Deluxe Tuner or dynamically on your html page.
To move items in Deluxe Tuner select items you want and use a mouse drag'n'drop method.
See the attached screenshot. Click on the item you want to move.Move your mouse in the correct place (holding left mouse button).Wait till you'll have gray line in the place where you want to insertthe item and release mouse button.
To dynamically change your items you can use the following API function:function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
See more info:
http://deluxe-menu.com/functions-info.htmlQ: I ran IE7 and now the "Incorrect Copyright" message appears again on the menu. Please advise. 
A: What version of Deluxe Menu you're using now? 
Deluxe Menu v2.0 works fine in IE. 
If you're using older version you should upgrade you Deluxe Menu to v2.0, please, visit thefollowing page. You can find all info about the upgrade here: 
http://deluxe-menu.com/rq-css-vertical-menu-v2.0-support.html. 
Q: I am looking for a way to use "position:fixed; in order to keep my drop menu navigation at the top of the screen when scrolling down. 
 Can you tell me how to do this?
A: You should use floating feature to keep your drop menu navigation at the top of thescreen when scrolling down.
See more info here:
http://www.deluxe-menu.com/floatable-menu-sample.html
Q: My site requires me to regularly update the menu by inserting a new menu item at the top of the list. Creating a sub-item automatically places it at the bottom and I haven't yet found a way to move java animated menu items to the top apart from manually editing the data.js file. 
A:  You should use new engine files v3.2.5 and add items using thefollowing function:
function dm_ext_addItemPos (menuInd, submenuInd, iParams, Pos)
Adds the new item to a submenu.
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0. See more info about indexes here.
iParams = [array] - the array of item parameters. This parameter has the same structure as an item in menuItems array. You can assign parameters of another existent item of the menu (for example, when you want to create a duplicate of the existent item) or create new ones.
Structure of iParams:
 [item_text, link, icon_normal, icon_over, tip, target, individual_style_index, jsFilename]
Pos - the position in the menu where you want to add new item.
Find more info:
http://deluxe-menu.com/functions-info.html