Recent Questions
Q: Only problem left is that we see an empty image in the left corner of the java pulldown menu.
 I can't find how to remove this image. Do you know where this comes from? 
A:  You should delete the following string from your menuItems 
 ["","", , , , , "0", ], 
Try that.
Q: Can I use data from a SQL server using ASP for drop down menu code?
A: You may generate a menu from a database or XML using any server-side script, e.g., PHP, ASP, VB, etc.
However, these scripts don't work inside of Javascript .js files, 
so, you should move parameters of a menu from a .js file into an html-page, e.g.:
<!-- Deluxe Menu -->
<noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath = "menudir/";</script>
<script type="text/javascript" src="menudir/dmenu.js"></script>
<!-- (c) 2006, http://deluxe-menu.com --> 
<script type="text/javascript" language="JavaScript1.2">
 // and describe parameters of a menu
   var parameter1=value1;
   var parameter2=value2;
 etc.
   var menuItems = [
 // here you generate items using server-side scripts (php, asp, vb, etc.)
 ];
Unfortunately we don't have examples with ASP and SQL.
The example of the menu working with PHP/MYSQL you can find here:
http://deluxe-menu.com/rq-loading-bar-MySQL-support.html
Q: If is there any way I can give some space between pressed_item and hover item for the rollover menus 
A:  You can try to specify spacing parameter:
  var itemSpacing=1;
You can also try to use separators.
You should add separator between menu items:
 ["item","#", "", "", "", "", "", "", "", "", "", ],
 ["-",],
 ["item","#", "", "", "", "", "", "", "", "", "", ],
Use "Add Separator button in Deluxe Tuner.
Set separator parameters in the following way:
//--- Separators
  var separatorImage="";
  var separatorWidth="100%";
  var separatorHeight="2px";
  var separatorAlignment="left";
  var separatorVImage="data.files/separator.jpg";
  var separatorVWidth="2px";
  var separatorVHeight="100%";
  var separatorPadding="0px";
Q: I am trying to figure out how to specify the css for the top css dropdown menu.
 I saw this in some of the example code, but there was nothing similar in Deluxe Tuner
   var itemStyles = [
 ["CSS=topItemNormal,topItemOver","CSSText=topItemTextNormal,topItemTextOver" ],
 ];
   var menuStyles = [
 ["CSS=topMenu"],
 ];
 I tried adding the above to my js code, but it didn't work. I can get it to work in non-css through Deluxe Tuner.
 I am trying to draw a white border around the blue css dropdown menu
 .topMenu
 {
 background-color:Blue;
 border-width: 1px;
 border-style: solid;
 border-color: White;
 }
 /* Style for submenus */
 .submenu
 {
 }
 /* Style for top items: normal state */
 .topItemNormal
 {
 background-color:Blue;
 color:White;
 text-decoration: none;
 text-transform:none;
 font-weight:normal;
 FONT-SIZE: 11pt;
 FONT-FAMILY: Verdana, Arial;
 width:100%;
 padding:2px 4px;
 } 
A:   var itemStyles = [
["CSS=topItemNormal,topItemOver","CSSText=topItemTextNormal,topItemTextOver"],
];
  var menuStyles = [
 ["CSS=topMenu"],
];
The following code is Individual Styles. You can edit them in DeluxeTuner.
Open your data file, click "Edit Individual Styles..." button on themain window. And create individual item style and individual submenustyle. Then you should assign these styles to your items.
See more info about Individual Styles here:
http://deluxe-menu.com/individual-styles-sample.html