Recent Questions
Q: I am still struggling with multiple menus on one page. 
 It is probably something I am doing wrong, but I cannot see it.
 
A: Now you have: 
  var absolutePos=1; 
  var posX="10"; 
  var posY="10"; 
 
So, both of your menus have the same absolute position. 
You can use relative position and place your menu inside <table>. In this case you should write so: 
  var absolutePos=0; 
Q: I tried to add a fixed width on some of the items that I thought had too much empty space on the right of the text but would not work. Is it possible to have a fixed amount of pixels after the text for all navigation items of the css drop-down menu?
A:  You can set padding parameter in the following way:
  var itemPadding="3px 15px 3px 3px";
                            top right bottom left
Q: My Deluxe Menu works super. 
 Anyway, I would like to make it more comfortable for my users. 
 
 So, I would like to know if it possible to create a "Multicolumn Menu" 
 (http://deluxe-menu.com/multicolumn-menu-sample.html) 
 and separate define which submenu should be multicolumn and wich one looks "normal".
 In your example all menu options which have submenus become multicolumn-look.
 Is it maybe also possible to create such Multicolumn-look? 
 Group_01       Group_02       Group_03 
    - xxx             - xxx             - xxx 
    - xxx             - xxx             - xxx 
    - xxx             - xxx             - xxx 
 Group_04       Group_05       Group_06 
    - xxx             - xxx             - xxx 
    - xxx             - xxx             - xxx 
    - xxx             - xxx             - xxx
 
A:  Yes, you can create such menu. 
You can create "normal" items using separator. 
     ["|-","testlink.htm"], 
Please, see the attached example.
Q: Is it possible to keep the main menu highlightedcorresponding to the page you are in? So, if you're on a specific page that button on the menu will automatically be highlighted. 
 I searched the FAQ on your site and it gave me something about "Special Parameters" that didn't make sense to me...
 
A: You should set a pressed item using Javascript API: 
 
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items.