Recent Questions
Q: We are trying to evaluate your software for use on our redesigned website. 
 Dhtml scrolling menu look great in Firefox but when we open the same page in IE it is ugly.
A:  The reason is in the following code:
<DIV id=header><IMG hspace=0 src="menu_files/nmwaLogoTop.gif" align=left border=0> </DIV>
Delete align=left from the <IMG> tag:
<DIV id=header><IMG hspace=0 src="menu_files/nmwaLogoTop.gif" border=0> </DIV>
Q: How does your multiple website license work?  Do you have license details?  For instance, our company develops a web application that we then license for other companies to use.  Can we simply use your multiple website license? 
A:  See, with Multiple Website license you should generate your own keysand use them on your Intranet/Internet websites. 
Your key will work on the registered domain name only. It won't workon a local machine. 
If you want to use the menu within application which doesn't havefixed domain name you should buy Developer License. 
This version of the script doesn't check keys and it isn't bound to adomain name.
Q: When I create a tab which has no sub-items, there is a white line drawn under the whole top javascript tabbed menu bar.
 How do I avoid this?
 
A: Each menu item should have subitems (in the TabMode).
If you don't want to have subitems for some items you can add onesubitem and delete Item Text. 
 ["Item 2","", "", "", "", "", "", "", "", ], 
  ["|","", "", "", "", "", "0", "", "", ],
Q: I have been using Deluxe Menu quite a bit, but am now running into a problem on a site I developed. When I add a submenu, it appears separated by about 100 pixels down. In this case I left it on the Menu Item “Why Maumelle” for you to look at. 
 Can you help me out?
 
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:relative"). To get the value you should move .css style into style="" attribute. 
Please, try to add your 
 css file -> inline css, for example: 
For example, you should add style="position:relative;"
to the 
<DIV class=MainBody> 
<DIV class=Banner></DIV> 
<DIV class=Menu> 
So, you'll have: 
<DIV class=MainBody style="position:relative;"> 
<DIV class=Banner></DIV> 
<DIV class=Menu style="position:relative;"> 
Now we have only such solution for this problem. 
We'll try to fix this problem in the future versions.