Recent Questions
Q: I am thinking of purchasing your javascript menu creator. I have a question about a single use license. I have two computers my home desktop and my laptop that I travel with. Since I would be the only user would I be able to put a copy of javascript menu creator on each computer? 
A: You can install Deluxe Menus on unlimited number of computers.
With Single Website license your reg. key will work on the registereddomain only.
See more info:
http://deluxe-menu.com/single-website-license-purchase.html
Q: I am working on a menu for a client. I have most of the functionality in place for this client. I have 2 questions that I have not been able to figure out on this menu.
1. Is there a way to define the border image or color on an item in this simple javascript dropdown menu. I need to be able to add in lines between the items. I have not been able to figure out how to do that.
2. Is there a way to dynamically highlite an item? For instance if you are on the page "Horizon for SAP" as illustrated, I would want that to show differently in the menu.
I have written scripts to dynamically generate this menu based off of a sitemap. I just need to make one item on it look different based on your breadcrumb or where you are in the site. 
A:  > Is there a way to define the border image or color on an item.
You can't specify the image for border, but the color and width are fully configurable. 
> 2. Is there a way to dynamically highlite an item?
Yes, please see
http://deluxe-menu.com/dynamic-functions-sample.html
Q: I'm still having the issue with the sub-menus not being in the proper place, however I was able to fix the issue with menu now showing up in IE at all, it turns out I forgot a  tag. So do you know why the sub-menu alignment changes depending on the browser window size? Either of the links below should give an example. 
A: See, the problem is that the script can't get css properties of the object if they are described in separate .css block (or file). 
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style(style="position:absolute"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example: 
You should add style="position:absolute;"
to the 
<DIV id=navholder> 
So, you'll have: 
 <DIV id=navholder style="position:absolute;"> 
Q: I had to put the site live and had taken out the white border. I've used one of the better elements of your application and put a second data file (data1.js) and a sample page up that recreates the aberrant behavior in IE and the missing border-bottom in Firefox and Opera. 
 In IE, the entire border of each element has about a 5px white border until you mouseover each element. Then the border-bottom (1px solid white) shows correctly. 
 In both Firefox and Opera the border doesn't show at all. 
A: Try to write so:
  var absolutePos=1; 
  var posX="10"; 
  var posY="400"; 
  var itemStyles = [ 
 ["itemBorderWidth=0 0 1px 0","itemBorderStyle=solid,solid","itemBorderColor=#FFFFFF,#FFFFFF"], 
];