Recent Questions
Q: I just purchased your product and I’d like to generate a menu with NO DROP SHADOW effect.
 Is that possible?
 
A: Thanks for your interest in our products. 
Yes, you can do it. Try to set the following parameter: 
  var shadowLen=0;
Q: I attached on Image (Screen shot).  Please observe that I marked with black color line.  How can I adjust the menu so scroll bar and menu should end with same line.  Why Scroll occupying more space than menu item. Please assist me to remove that extra space.
 
A:  Try to set  var tmenuHeight="auto";
Q: I have tried various different ways, but I cannot get a separator image I have specified in the Separators section of javascript menu builder to display. I have verified that the image exists, but still nothing. The rest of the menu works perfectly. Any help will be appreciated. 
A: 		To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in vertical menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems (you can do it in DeluxeTuner, use "Add separator" button), for example:
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
    ["||-"],
    ["||Pricing & Ordering Info","gallery_pricing.html", , , ,"_self", , , , ],
Try that. You can also send us a copy of your html page (including .js files) ora direct link to your website, so we can check it.
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>