Recent Questions
Q: I have a Menu called topnavbar.js when this menu is applied to a page not in a subfolder the links work. This topnavbar menu includes the following items; District Office, Cumberland Head Elementary School, Beekmantown Elementary School, Beekmantown Middle School, and Beekmantown High School. 
However, if you put the topnavbar on a page that is located in a subfolder the links in the topnavbar add this subfolder name to the link.  So instead of districtoffice.htm the link is transportation/districtoffice.htm and that page doesn’t exist.
 
A:  You can use additional parameters to make menu paths absolute: 
 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
These parameters allow to make images and links paths absolute. 
For example: 
  var pathPrefix_img = "http://domain.com/images/"; 
  var pathPrefix_link = "http://domain.com/pages/"; 
 
  var menuItems = [ 
 ["text", "index.html", "icon1.gif", "icon2.gif"], 
]; 
So, link path will be look so: 
http://domain.com/pages/index.html 
Images paths will be look so: 
http://domain.com/images/icon1.gif 
http://domain.com/images/icon2.gif 
Please, try to use these parameters.
Q: Comprehensive Mental Health has a site license to \use Deluxe Menu. We are currentlyrunning version 2.0. 
 Unless we set the topdy parameter to be -65, our submenus do not appear adjacent to the toplevel menu. Below are our parameters and our menu. What is causing this problem?
 
A: It is possible that you have some problems with your css. 
 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 <DIV id=SiteMenu> 
to the 
 style="position:absolute;"
So, you'll have: 
 <DIV id=SiteMenu style="position:absolute;"> 
Check that.
Q: When I export the file sometimes the links doesn't work in css tabbed menu
 
A: See, you can use links if you have 
  var tabMode=1; 
only. 
If you have 
  var tabMode=0; 
You should use the ID of the DIV. 
But you can try to open your pages using different targets in thefollowing way 
["tab text", "javascript: window.open('test.html', 'frameName')", ...], 
["tab text", "javascript: window.open('http://deluxe-tabs.com/test.html', '_self')", ...], 
["tab text", "javascript: window.open('html/test.html', '_blank')", ...], 
Where frameName - the name of the frame where to open the page test.html.
Using this method you can create Deluxe Tabs in  var tabMode=0; and   var tabMode=1;
Q: I have looked and looked but I cannot figure out for the life of me how to make the Icon ontop and the words on the bottom of java menu items, The class A and Class C words need to be at the bottom of the pictures if possible.
A:  You can paste any html code within java menu items.
For example:
["<img src='image.gif'> <br>Class A ","","","",""]