Recent Questions
Q: Now I experiences a problem with the Danish letters in the dhtml drop down menu generator! I have changed the letters in the scriptfile - but this does not work.
 Have we a problem with Danish letters?
A: Notice that you should have UTF8 charset on your page too:
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
You can also use another charset on your html page and open your data file in text editor, enter thissymbols and save data file in the way you save your html page.
Notice that you should turn off "Tools/Use utf8 encode" setting inorder to open your data file correctly in Deluxe Tuner.
Q: I'm interested in using Deluxe menu for our website. It appearseverything is exactly what I want, but I do have one question.
Can I pass a selection from cascading navigation bar to a form? 
A: Deluxe Menus doesn't have such a feature now.
But you are able to paste any html code within items.
For example:
  var menuItems = [
...
 ["<nobr><FORM method=GET action='http://www.google.com/custom'>
<input name='as_q' value='searchthe web' size=15 style='font-size:10'> 
<INPUT type=hidden name=cof value='LW:144;L:http://domain.edu/images/sulogo.gif;
LH:45;AH:center;GL:0;S:http://domain.edu;AWFID:e01cb67b8afe383e;'></form></nobr>","",
 "images/icons/search.gif", "", "", "", "", "", "", "", "",],
 You should write your own code within menuItem.
Q: How do I make the top nav buttons exactly the same width for each button? 
 Total menu width is 743px and I have 6 buttons I want the width of each button to be fixed at 123px. 
 I set   var menuWidth="743" but it averages out the buttons based on the text.
 
A: You should use individual item styles. For example: 
  var itemStyles = [ 
 ["itemWidth=123px"], //style 0 
]; 
  var menuItems = [ 
 ["Home","testlink.html", , , , , "0", , , ], //style 0 
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", , , "0", , , ], //style 0 
Q: I've encountered a problem when I was creating my collapsible menu javascript. I got an error message when I was creating my menu as follows: 
 ----------------------------------
 There is the error in the data file. The menu won't be loaded correctly.
 Line: 361
 Char: 3
 Code: 0
 Message:']' f=F6rv=E4ntas
 ---------------------------------- 
A:  You have errors in your data file now. It is not correctly to writeitems in the following way:
    ["||10"","", "", "", "", "", "", "", "", "", ],
    ["||11"","", "", "", "", "", "", "", "", "", ],
You should write:
    ["||10","", "", "", "", "", "", "", "", "", ],
    ["||11","", "", "", "", "", "", "", "", "", ],