Recent Questions
Q: I'm struggling with one last issue on my navigation. When you have a screen resolution about the same size as the site width, when a sub menu pops up, It displays sometimes to the left of the first drop down menu list rather than the left. Is there a way of changing the way this displays if the screen size is smaller than 800px wide or so. 
A: If there is no enough room on the right side of your browser windowdrop down menu list submenus will be shown on the left side.
Q: I see you have a right click in expanding menu javascript, is this function available in Deluxe Menu? 
A: Unfortunately, you can't assign onmouseover/onClick/onContextMenu event to each item. 
 However, you can achieve this by using standard html objects within items, for example: 
   var menuitems = [ 
 ["<div onContextMenu='your_code_here'>item text</div>", ""] 
 ];
Q: A few of my users have reported issues with the menu like the one below. Where the drop down menu is just a white box with a little scroll bar in it. Can you please let me know how I might correct it or what is wrong? We are using version 2.4. 
A:  I've just checked your website. It works fine. 
 You can have such effect when the page entirely was not loaded yet. So, images were not loaded yet. 
 If you don't want to have such effect you can try not to use back images for the submenus.
Q: A brief one on dynamic menu in the perspective of bilinguism
 I understood from the tuner that a menu can be made dynamic (although it is somewhat minimally documented ;-))
 Leaving alone all the beautiful sophisticated and complex mechanic of it
 Say I have my main menu that says : 
   var dynamic=1; (that's all I got from the doc ..)
 And then 
   var menuItems = [
 ["Choice 1 ","page1.php", "", "", "Choice 1",", "_self", "", "", "", "", "", ],
 ["Choice 2","page2.php", "", "", "Choice 2", "_self", "", "", "", "", "", ], 
 ]; 
 Minimalist ? ;-) right ?
 1/ first I'm not too sure about what exactly in order are these 11 parameters although I'm fine with the only 4 I have here
 2/ if I would want to change on the fly menu javascript dropdown page on a PHP parameter Page1.php?lang=French (I perfectly master how to capture the PHP value)
 So that My menu becomes on the fly 
 ["Choix 1 ","page1.php", "", "", "Choix 1",", "_self", "", "", "", "", "", ],
 ["Choix 2","page2.php", "", "", "Choix 2", "_self", "", "", "", "", "", ], 
 Thanks in advance if you can shed some light on this
 PS : And although I used hardly 1% of deluxe capability my first customer is very happy about it.. 
A:  Actually you can find all info about the menu javascript dropdown parameters and featureson our website:
- menu parameter and items, Individual Styles:
http://deluxe-menu.com/parameters-info.html
http://deluxe-menu.com/menu-items-info.html
http://deluxe-menu.com/individual-item-styles-info.html
http://deluxe-menu.com/individual-submenu-styles-info.html
- dynamic functions:
http://deluxe-menu.com/functions-info.html
http://deluxe-menu.com/dynamic-functions-sample.html
> 2/ if I would want to change on the fly page on a PHP parameter
> Page1.php?lang=French (I perfectly master how to capture the PHP value)
> So that My menu becomes on the fly
> ["Choix 1 ","page1.php", "", "", "Choix 1",", "_self", "", "", "", "", "", ],
> ["Choix 2","page2.php", "", "", "Choix 2", "_self", "", "", "", "", "",> ], 
 To change the menu items on the fly you can use API functions
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
function dm_ext_addItem (menuInd, submenuInd, iParams)
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)