Recent Questions
Q: I am trying to placed a separator image in between each item in my css vertical dropdown menu. I have placed the image in the seperator field and it will not display. How can I get an image to be a separator in between items on my css vertical dropdown menu?
A:  To add a separator you should
//--- Separators
  var separatorImage=""; //for subitems (top items in css vertical dropdown menu)
  var separatorWidth="100%";
  var separatorHeight="3px";
  var separatorAlignment="right";
  var separatorVImage="separator.gif"; //for the top items (subitems items in css vertical dropdown 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:
  var menuItems = [
 ["item 1"],
 ["-"], // this item is separator
 ["item 2"],
];
Q: I cannot see the shadow on the top items of the menu. Can you help me? 
A: Now you have shadow the submenus only, if you want to have shadowfor the top items you should set the following parameters: 
//--- Transitional Effects & Filters 
  var shadowLen=4; 
  var shadowColor="#B1B1B1"; 
  var shadowTop=1; 
You can see the shadow in Internet Explorer 5+ only.
See more info here: 
http://deluxe-menu.com/filters-and-effects-sample.html
Q: Is there a way to increase the margin between the text on the main tree menu and the edge of the dhtml menu control. The text appears to be right up against the left margin.
A:  You can add   symbol before item's text, for example:
 ["    Deluxe Tree: XP Style","", "", "", "", "XP Title Tip", "", "0", "0", "", ],
or you can write:
 ["+<div style='padding-left: 15px;'>Deluxe Tree: XP Style</div>","", "", "", "", "XP Title Tip", "", "0", "0", "", ],
Actually you can use any html code within dhtml menu control items.
Q: I am currently testing the DHTML Tabs product, and I am trying to find ways of replicating how it is being done in your website at 
http://deluxe-tabs.com/. 
 In your website, when I click on a Tab, the content relevant to that tab appears. I understand that the site is using "div id= " method to control. However, my question is how can I code the DIV to appear in the JS file of my mouseover tabs?
A:  See, for each item you should assign the ID property of the contentDIV (see data file with your menu parameters).
 ["Style Name","contentName", "", "", "", "", "1", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Description","contentDescription", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Style Variations","contentVariations", "", "", "", "", "", "", "", ],
 ["-","", "", "", "", "", "0", "", "", ],
 ["Empty","", "", "", "", "", "2", "", "", ],
And on your html page you should create DIV's with such ID.
 <div id="contentName" style="height: 0%; visibility: hidden;" class="tabPage">
 <br><br><br>
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p>
 <br><br><br>
 You should paste your content here!!!!!
 </div>
 <div id="contentDescription" style="height: 0%; visibility: hidden;" class="tabPage">
 <br><br><br>
 <p align=center><img src="img/style01_title.gif" width=140 height=90 alt="Glass Style Tabs"></p>
 <br><br><br>
 You should paste your description here!!!!!
 </div> 
You can paste any code within DIV's (PHP, Javascript ...)