Recent Questions
Q: I would like to make the main bar for the menu javascripts more consistent in the spacing.
A: Try to set exact width for each top menu item using Individual Styles:
  var itemStyles = [
 ["itemWidth=131px"], //style0
];
  var menuItems = [
 ["home","", "", "", "", "", "0", "", "", "", "", ], //style0
 ["artist index","", "", "", "", "", "0", "", "", "", "", ], //style0
 ["the gallery","", "", "", "", "", "0", "", "", "", "", ], //style0
];Q: Is there a parameter in Tree Menu I can add and/or adjust in data.js toforce the menu text to wrap and add here to a set menu width? 
A: You should use 
 tags, for example: 
  var tmenuItems = [ 
 ["line 1
line 2"], 
]; 
Width of the menu you can set so: 
  var tmenuWidth = "500px"; 
Try that. 
Try to specify units in "px". 
  var tmenuWidth = "182px"; 
It's necessary to specify exact value for Mozilla browsers. It helpsto position menus correctly. 
You should set this parameter: 
  var tmenuHeight = "auto"; 
 
Q: In Firefox, the menu bar css is hidden behind Flash player. Anyway to fix this? 
A: See fix for flash in Firefox here:
http://deluxe-menu.com/objects-overlapping-sample.html
Q: My office-colleague gilles petremand just bought your "deluxe menu" and all-in-all it looks great!!!! 
 What we don't manage to do is to create a moving java menu sample based on. 
 Is this only possible with the "ms office toolbar-like mode" 'coz we'd like to use the image based menue template and change it to a moving one - POSSIBLE?!? 
A:  To create a movable or floatable menu you should set severalparameters in your data file only.
See more info here:
http://deluxe-menu.com/movable-menu-sample.html
To create movable menu you should set the following parameters:
//--- Movable Menu
  var movable=1;
  var moveWidth=12;
  var moveHeight=20;
  var moveColor="#AA0000";
  var moveImage="movepic2x20.gif";
  var moveCursor="move";
  var smMovable=1;
  var closeBtnW=13;
  var closeBtnH=16;
  var closeBtn="closebtn.gif";
http://deluxe-menu.com/floatable-menu-sample.html
To create floatable menu you should set the following parameters:
//--- Floatable Menu
  var floatable=1;
  var floatIterations=6;
  var floatableX=1;
  var floatableY=1;