Recent Questions
Q: I am working with drop down menu creator that I just downloaded and am having problems with where the menu is being placed. It looks likemaybe the "trial" logo is in the right spot but the menu is appearing several rows below where I insert it. Any ideas?
A:  Try to set the following parameters:
  var posX="0px";
  var posY="0px";
Q: I would like to create my own jpeg images and use them as the mouseover-items in the top level drop down menus. I am not talking about the backround. I mean the actual upfront button.
 I seem to be locked into the size which is the default and would like to change it to width = 180px and height = 45px for each item in the menu.
 Is there any way to do that? 
A:  You should create Individual Style and assign it for all top items. 
  var itemStyles = [ 
 ["itemWidth=180px"], 
]; 
 
  var menuItems = [ 
 ["Home","testlink.html", "", "", "", "", "0", "", "", ],
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", "", "", "0", "", "", ],
Q: I'm about to put in an order for your excellent Deluxe Menu (still weighing up the options between buying a single license for now or the Multiple site one).
 I noticed that the not-for-profit free license doesn't cater for Intranets.
 Can you please confirm that your drop down menu code (paid license) would indeed work for Intranets though, as this is my current quest. I'm working on a company's internal site which has a lot of documents, procedures and forms for download, which is precisely why I would like to purchase your product.
 Can you please confirm or shed light on this?
A:  Yes, you can use the licensed copy of Deluxe Menu on Intranetwebsites.
You should register the drop down menu code for a domain name or for IP address.In other words, you should register the menu for the domain name thatyou print in a browser's search string, for example:
http://intranet/
http://klinikum-nuernberg/
http://192.168.0.1
http://localhost
But you menu won't work on a local machine, for example
j:\Stationshandbuch\start.html
with Single or Multiple licenses. On a local machine you'll see"Incorrect Key" message.
If you want to use the menu with an application that doesn't have afixed domain name you should buy Developer License.
Q: IHow can i make that the background-color will be standing behind the click in this part of dhtml menu slide? 
A: Deluxe Menu has only two states normal and mouseover, but
you can highlight menu items by default in two ways:
Try to do the following things:
- delete   var pressedItem=1; parameter from your data file
- set correct parameter on each page before you call data file, forexample:
<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>
<script type="text/javascript">  var pressedItem=3;</script>
...
<script type="text/javascript" src="menudir/data.js"></script>
You can also set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion) 
Sets a current pressed item. 
menuInd - index of a menu on a page, >= 0. 
submenuInd - index of a submenu, >= 0. 
itemInd - index of an item, >=0. 
recursion = true/false - highlight parent items. 
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. 
You can't get this ID after you reload your page. That is why you should write your own code on PHP.
You can find more info here:
http://www.deluxe-menu.com/highlighted-items-sample.html