Recent Questions
Q: I hope you have a instructions so we can install css menu in our website. 
A: Unfortunately we don't have step by step tutorial yet.
We'll try to create it in the nearest time.
1. Create your Css menu in Deluxe Tuner.
When you open Deluxe Tuner you can click "File/New" and add items
and subitems using buttons "Add Item" and "Add Subitem" on the main window.
See the parameters for the menu on the main window.
More info about menu parameters you can find on our site
http://deluxe-menu.com/css-menu/parameters-info.html
2. You should install the menu on your page.
You can click, for example, File->Save Css Menu/Export HTML
So, you'll have folder with images and .css file ("deluxe-css-menu.files/" folder by default),
deluxe-css-menu.html file and deluxe-css-menu.js file with all menu parameters
(project file you need, if you want to modify your menu later,
there is no need to upload deluxe-css-menu.js on your server).
Open deluxe-css-menu.html file in any text editor and copy several rows of
code into your page (for example index.html page of your website).
Copy and paste several rows into your html page (index.html).
<head>
...
 <link type="text/css" href="deluxe-css-menu.files/style.css" rel="stylesheet">
...
</head>
<body>
...
 <!-- Deluxe Css Menu -->
<ul id="cssMenu">
 <li><a href="testlink.html">Home</a></li>
 <li><a href="#"><span>
 <img class="def" src="deluxe-css-menu.files/icon1.gif"/>
 <img class="over" src="deluxe-css-menu.files/icon1o.gif">Product Info</span>
 <![if gt IE 6]></a><![endif]><!--[if lte IE 6]><table><tr><td><![endif]-->
 <ul style="width:161px;">
 ....
 </ul>
<!-- (c) 2009, Deluxe-Menu.com -->
...
</body>
You should also copy "deluxe-menu.files/" folder with all images and .css file
into the same folder with your index.html page.
More info about installation:
http://deluxe-menu.com/css-menu/installation-info.html
Try that.Q: first - the deluxe menu is a nice tool, greatly.
 but I have 2 little problems:
 - I'll display the item direct side by side without distance, I can't found the parameter
 - I wish the actual site (dhtml vertical menu item) in another colour 
A:  > - I'll display the item direct side by side without distance, i cant found the parameter
Check that you have correct
  var menuWidth="";
parameter.
You can send us a copy of your html page (including .js files) ora direct link to your website, so we can check it.
> - I wish the actual site (menu item) in another colour
You can create Individual Item style and assign it for the top items,for example:
  var itemStyles = [
 ["itemBackColor=#8080FF,#FFFF80","itemBorderWidth=1","itemBorderStyle=solid,solid", "itemBorderColor=#000080,#FF8000","showByClick=0"], //style0
];
  var menuItems = [
 ["Item 1","", "", "", "", "", "0", "", "", "", "", ], //style0
 ["Item 2","", "", "", "", "", "0", "", "", "", "", ], //style0
  ["|Item 3","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 4","", "", "", "", "", "", "", "", "", "", ],
 ["Item 5","", "", "", "", "", "0", "", "", "", "", ], //style0
  ["|Item 7","", "", "", "", "", "", "", "", "", "", ],
  ["|Item 8","", "", "", "", "", "", "", "", "", "", ],
 ["Item 6","", "", "", "", "", "0", "", "", "", "", ], //style0
];
Q: When I maximize the screen the popup windows appear to open below taskbar.
Is there a setting to correct this so that windows always appear above the cascading navigation bar?
A: You should set the following parameter to show submenus above the top items:
  var subMenuVAlign="bottom";
But notice that if there will be no enough space above the menu your submenus will be
shown under the menu.Q: Do you have an extremely simple example of modifying a menu with the JavaScript API? I've played with the example on the site, but I have trouble removing the other menus without breaking it.
 I just want to use the API to change the icon on the menu items.
A: You should use the following function:
function dm_ext_changeItem (menuInd, submenuInd, itemInd, iParams)
<script language="javascript" >
dm_ext_changeItem(0, 0, 1, ["", "", "new_icon.gif", "new_icon_o.gif", "",,""]);
</script>