Recent Questions
Q: How can I vary the width of the individual items (Home, Product Info etc) on the main menu bar?
 
A:  I'm not sure I understand you. You want to use different width (exactwidth) for the main items? 
You can use Individual Styles to set the width for the menu items.Please, use Deluxe Tuner to create your individual styles. 
You should write for example so: 
  var itemStyles = [ 
 ["itemWidth=98px"], // style 0 
 ["itemWidth=100px"], // style 1 
 ["itemWidth=110px"], // style 2 
 ["itemWidth=120px"], // style 3 
 ["itemWidth=95px"], // style 4 
]; 
  var menuItems = [ 
 ["","", "data.files/products.gif", "data.files/products_mo.gif", "Products", "_self","0" , , , ], 
  ["|XLCubed Excel Edition","pro_excel.html", "data.files/iconBlue.gif", "data.files/iconWhite.gif", , "_self", , "0", , ], 
  ["|XLCubed Web Edition","pro_web.html", "data.files/iconBlue.gif", "data.files/iconWhite.gif", , "_self", , "0", , ], 
  ["|TM1 Connection","tm1Connection.htm", "data.files/iconBlue.gif", "data.files/iconWhite.gif", , "_self", , "0", , ], 
  ["|Downloads","downloads.htm", "data.files/iconBlue.gif", "data.files/iconWhite.gif", , , , , , ], 
 ["","", "data.files/demoCenter.gif", "data.files/demoCenter_mo.gif", , ,"1", , , ],
Q: I'm a registered user. I'm looking to make a space between dhtml cross browser menu buttons, I checked the FAQ which suggested using ["-"], between items but it didn't work. It deleted the dhtml cross browser menu items below it. I'm looking to put a space between 
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
 and
    ["||Pricing & Ordering Info","gallery_pricing.html", , , , "_self", , , , ], 
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 dhtml cross browser menu)
  var separatorVWidth="100%";
  var separatorVHeight="2px";
  var separatorPadding="";
You can create separators using menuItems (you can do it in Deluxe
Tuner, use "Add separator" button), for example:
    ["||All Images","gallery_all.html", , , , "_self", , , , ],
    ["||-"],
    ["||Pricing & Ordering Info","gallery_pricing.html", , , ,"_self", , , , ],
Q: I'm trying out Deluxe Menu with my site, but I've hit a snag with alignment. My menu bar is located at the top of my page, in a 750px-wide div. I'd like to nest the nav menu in that div, but right-align it so the menus are stuck to the right side of the div. Is that possible with your menu system? If so, can you give an example of how I would accomplish it? 
 
A:  You can paste your menu in DIV with right alignment.
<div align="right">
<script type="text/javascript" src="data-deluxe-menu.js"></script>
</div>
Q: Can you tell me why these two simple dhtml tabs menus are conflicting and overwriting?
A: Notice, when you have several dhtml tabs menus on the one page you should calldtabs.js file only once.
 <script type="text/javascript" src="Top_Center1.files/dtabs.js"></script>