Recent Questions
Q: I used your trial version. In my application, I need one column of submenu to be displayed, all other columns should be closed.
 
A:  You should adjust the following parameters, for example you should write so: 
  var transDuration=350; //Delay of a transitional effect (in ms) on submenu's showing. 
  var transDuration2=200; //Delay of a transitional effect (in ms) on submenu's hiding.
Q: How can I have the sub tab option that initiated the action highlighted once the new page is reloaded?  I want to highlight the tab which is done with 'bselectedItem', please tell me about the sub-tab option.
A: See you cannot create subitems in
  var tabMode=0;
it is not correct.
You should set
  var tabMode=1;
The following parameters set the pressed items for top items andsubitems:
  var bselectedItem=0; //top items
  var bselectedSmItem=2; //subitems
where 0,1,2... is the index of the item in bmenuItems.
- delete   var bselectedItem=1; and   var bselectedSmItem=2; parameters from your data file
- set correct parameters on each page before you call data file, forexample:
<noscript><a href="http://deluxe-tabs.com">Javascript Menu by Deluxe-Tabs.com</a></noscript>
<script type="text/javascript" src="menudir/dtabs.js"></script>
<script type="text/javascript">  var bselectedItem=3;
   var bselectedSmItem=5; </script>
...
<script type="text/javascript" src="menudir/data.js"></script>
Q: What an incredible menu!! I have never seen anything like it.Would it be possible to create a version of the dhtml menu that displays items one level down from the top menu in a 6x4 cell layout (effectively a rectangle) rather than vertically? If so, how much would the customization cost?
A: Yes, you can place the menu to the any part of your html code.Please contact support (at) deluxe-menu.com for the customization rates.
Q: How can I use Danish characters in my dhtml menu bars?
A: You should turn on "Tools/Use utf8 encode" property.
In that case your data file will be saved in UTF-8 encode. So, you
should set UTF-8 encode on your page too
<meta http-equiv="Content-Type" content="text/html"charset="UTF-8">
If you don't want to use UTF-8 encode on your page you should turn off
"Tools/Use utf8 encode" property, save your data file and manually
change your letters in any text editor.