Recent Questions
Q: Where can I change the font size in the main deluxe menu's (i.e. Products, About, Contact Us)? 
 Using the deluxe tuner doesn't allow me change this font or the size, so the submenu's are bigger than the top.
 
A:  You can also check Individual Item Styles. May be you set font sizefor the top items using Individual Item Styles.
Q: No matter where I place the code, the html free menu always appears in the top left of the page,
I need it elsewhere obviously but it simply won't move.
A: You're using absolute position for the menu now.
You should use relative position in that case.
 Change the following parameters:
  var absolutePos=0;
  var posX="0px";
  var posY="0px"; 
Q: My submenu is not display at the good position with Firefox. 
 Look at my web site with Firefox. Select item menu 'Inscription' and you'll see the problem. 
 Note: mainmenu.js is relative positioning. The table tag is absolute positioning.
 
A: Try to write so: 
<TABLE id=Table60style="Z-INDEX: 803; LEFT: 295px; POSITION: absolute; TOP: 114px"> 
   <TBODY> 
    <TR> 
     <TD style="POSITION: absolute;"><NOSCRIPT><A href="http://deluxe-menu.com/">Javascript Menu by Deluxe-Menu.com</A></NOSCRIPT> <NOSCRIPT>MainMenu</NOSCRIPT> 
 <SCRIPT language=JavaScript1.2 src="deluxe_files/MainMenu.js" type=text/javascript></SCRIPT> 
     </TD> 
    </TR> 
   </TBODY> 
</TABLE> 
  
 
Q: I am having some trouble placing the cascading drop down menu in frontpage.
 Does your company have some kind of tech support for the frontpage material?
A: See, you should do the following things.
1. Create your menu in Deluxe Tuner.
2. Export the menu into html file "File/Export/To HTML".
3. Copy generated folder with all engine .js files and images("deluxe-menu.files/" by default) and data-deluxe-menu.js (by default)
 into the same folder with you index.html page (created inFrontPage).4. Now you should add several rows of code into your index.html file.
You can do it in FrontPage (open HTML source of the page and edit it)
or in any text editor. Open your index.html page and edit it.
Notice that you'll have errors in the Preview. But you won't get errors if you open this page in the browser.5. Add the following code in the <head>tag:
 <!-- Deluxe Menu -->
 <noscript><a href="http://deluxe-menu.com">Javascript Menu by Deluxe-Menu.com</a></noscript>
<script type="text/javascript">  var dmWorkPath="deluxe-menu.files/";</script>
<script type="text/javascript" src="deluxe-menu.files/dmenu.js"></scri>
and
<script type="text/javascript" src="data-deluxe-menu.js"></scrip>
in the place where you want to have the menu.
You can paste it in <table>, <div> tags. For example.
<div align=center>
<script type="text/javascript" src="data-deluxe-menu.js"></script>
</div>
6. Save your index.html page and open it in any browser.