Recent Questions
Q: I need to know how to have the background in the main menutransparent, and then the sub-menu/s a different translucent color.
 Or, the background for the main menu one color, and the sub-menu/s a different color..
A:  To set transparent background for the menu you should set: 
  var menuBackColor="transparent"; 
  var itemBackColor=["transparent","transparent"]; 
and use Individual Item Styles for your submenus: 
  var itemStyles = [ 
 ["itemBackColor=#8EE8E1,#26BBB0"], //style0 
 ["itemBackColor=#F4B7FB,#E65AF5"], //style1 
]; 
  var menuItems = [ 
 ["Home","testlink.html", "", "", "", "", "", "", "", ], 
 ["Product Info","", "default.files/icon1.gif", "default.files/icon1o.gif", "", "", "", "", "", ], 
  ["|Features","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "0", "", "", ], //style0 
  ["|Installation","", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "1", "", "", ], //style1 
    ["||Description of Files","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", "", "", "", "", "", ], 
    ["||How To Setup","testlink.html", "default.files/icon6.gif", "default.files/icon6o.gif", "", "", "", "", "", ], 
  ["|Parameters Info","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "0", "", "", ], //style0 
  ["|Dynamic Functions","testlink.html", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "1", "", "", ], //style0 
  ["|Supported Browsers","", "default.files/icon2.gif", "default.files/icon2o.gif", "", "", "0", "", "", ], //style0 
    ["||Windows OS","", "default.files/icon3.gif", "default.files/icon3o.gif", "", "", "", "", "", ], 
    ["||Internet Explorer","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ], 
    ["||Firefox","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ], 
    ["||Mozilla","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ], 
    ["||Netscape","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ], 
    ["||Opera","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ], 
    ["||MAC OS","", "default.files/icon3.gif", "default.files/icon3o.gif", "", "", "", "", "", ], 
    ["||Firefox","", "default.files/icon5.gif", "default.files/icon5o.gif", "", "", "", "", "", ], 
Q: I am having a problem trying to figure out how to generate a link to a popup window.
I looked at what you have on your site but it is not clear to me. 
 
A: You can show the popup window when you hover, click or mouseout on some elements on your
page. For example you've added an image in your html page. You should specify the ID for it, for example:
<p><img id="open_popup" border="0" src="images/submenu-bg.gif" width="170" height="29"></p>
In the Deluxe Tuner you should enter 'open_popup' object ID in the onMouseOver,
onClick or onMouseOut fields.
Actually you can assign id to any object on your page manually. You should specify ID's - id="xxxx"
for <a>, <div>, <img> ... tags.
Or you want to open a popup onMouseover, onClick or onMouseout on a link.
So, you should create a link (you can also use other object) on your page and set id="" for it, 
forexample:
<a href="javascript:;" id="link">Open popup OnClick</a>
<a href="javascript:;" id="over">Open popup OnMouseover</a>
<a href="javascript:;" id="out">Open popup OnMouseOut</a>
In Deluxe Tuner you should set:
onMouseOver - over
onMouseOut - out
onClick - link
If you want to show the popup when your page loads you should leave these fields empty:
 onMouseOver:"",
 onMouseOut:"",
 onClick:"",
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 couldn't understand where to put copied SE Friendly code for the dhtml top menu.
A: You should generate search engine friendly code and install it on yourpage in the beginning of the BODY tag.
 Deluxe Menu is a search engine friendly menu since v1.12.
To create a search engine friendly menu you should add additional html code within your html page:
<div id="dmlinks"> 
<a href="http://deluxe-menu.com">menu_item_text1</a>
 <a href="http://deluxe-tree.com">menu_item_text2</a>
 ...etc. 
</div> 
To generate such a code use Deluxe Tuner application.
Run Tuner, load your menu and click Tools/Generate SE-friendly Code (F3).