Recent Questions
Q: When I export the file sometimes the links doesn't work in css tabbed menu
 
A: See, you can use links if you have 
  var tabMode=1; 
only. 
If you have 
  var tabMode=0; 
You should use the ID of the DIV. 
But you can try to open your pages using different targets in thefollowing way 
["tab text", "javascript: window.open('test.html', 'frameName')", ...], 
["tab text", "javascript: window.open('http://deluxe-tabs.com/test.html', '_self')", ...], 
["tab text", "javascript: window.open('html/test.html', '_blank')", ...], 
Where frameName - the name of the frame where to open the page test.html.
Using this method you can create Deluxe Tabs in  var tabMode=0; and   var tabMode=1;
Q: I regret to inform you that I have not fail understand, how can change place of the icon in software Deluxe Tuner(Menu).
 
A: You should add icons for the item in the "Item Parameters" window. 
Now you have: 
  var arrowImageMain=["vertikalno menu.files/icon_office_tuner2.gif","vertikalno menu.files/arrv_black.gif"]; 
  var arrowImageSub=["vertikalno menu.files/arrv_black.gif","vertikalno menu.files/arrv_black.gif"]; 
But you should add "vertikalno menu.files/icon_office_tuner2.gif" iconin the "Item Parameters" window. 
So you will have in your menuItems 
  var menuItems = [ 
 ["New Item","testlink.html", "vertikalno menu.files/icon_office_tuner2.gif", "vertikalno menu.files/icon_office_tuner2.gif", , , , , , ], 
  ["|New Item ","", , , , , , , , ], 
  ["|New Item","", , , , , , , , ], 
 ["New Item","", "vertikalno menu.files/icon_office_tuner2.gif", "vertikalno menu.files/icon_office_tuner2.gif", , , , , , ], 
  ["|New Item","", , , , , , , , ], 
  ["|New Item","", , , , , , , , ], 
 ["New Item","http://deluxe-menu.com/order-purchase.html", "vertikalno menu.files/icon_office_tuner2.gif", "vertikalno menu.files/icon_office_tuner2.gif", , "_blank", , , , ],
  ["|New Item ","", , , , , , , , ], 
  ["|New Item","", , , , , , , , ], 
 ["New Item","testlink.htm", "vertikalno menu.files/icon_office_tuner2.gif", "vertikalno menu.files/icon_office_tuner2.gif", , , , , , ], 
  ["|New Item ","", , , , , , , , ], 
  ["|New Item","", , , , , , , , ],
Q: In IE 6.0 and Firefox 1.5.0.4, the dropdown submenus are not visible and it does not float in firefox (floats in IE but no submenus) whereas in Opera 8.53 and Opera 9 it works fully.
 
A: Now you have two entries of dmenu.js file on your site in the <head> and <body> tags. 
You must have only one entry of dmenu.js file. 
You should write so: 
...
<body> 
<script type="text/javascript">  var dmWorkPath = "http://www.gaurangapada.org/data.files/";</script> 
<script type="text/javascript" src="http://www.gaurangapada.org/data.files/dmenu.js"></script> 
</body> 
Please, delete the same code from the  tag. 
 Now you have: 
  var transparency="0"; 
That is why you can't see your subitems. 
Please, write, for example, so: 
  var transparency="80";
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";