Recent Questions
Q: I cannot find the parameter in menu example file "data.js" for umlaute a, u. I want it to set manually.
A: You can save your data file in UTF-8 in Windows version of DeluxeTuner v3.5.
You should turn on "Tools/Use utf8 encode" property.
In that case your data file will be saved in UTF-8 encode.
Enter these symbols and save your data file.
If you don't want to use UTF-8 encode on your page you should turn off
"Tools/Use utf8 encode" property, save your data file and manually
change your letters in any text editor.
You can also replace your letters with special sets, for example
ä - Small a, acute accent - a
ü - Small c, cedilla - u
  var menuItems = [
 ["ä....","testlink.html", "", "", "", "", "", "", "", ],
 ["ü....","testlink.html", "", "", "", "", "", "", "", ],
Q: How do I turn off transitional effects in my ajax dropdown menu?
A: You should set the following ajax dropdown menu parameters.
  var transition=-1;
  var transOptions="";
  var transDuration=0;
  var transDuration2=0;
Q: We are testing your css drop down menu and everything is fine, except for the slow load in IE7.
 After the page is loaded, the first time we open each item it takes a lot of time to appear.
 Do you have any solution for this problem? 
A:  Check that you've set the following parameter:
  var dm_writeAll=0;
You can also try to turn off transitional effects:
  var transition=-1;
And adjust the following parameters:
  var smShowPause=100;
  var smHidePause=500;
Q: I fixed that problem, but if you look at the website, I have the first 2 links in the javascript sliding menu set to show up in the mainframe but nothing happens. When I open deluxe menu on my computer, it also shows that I have the third link set up to show in the mainframe too but when I upload it to the website, it acts like it's not pointing to any file/url 
A:  Now you have:
 ["Home","main.html", "", "", "", "#mainframe", "", "", "", "", "", ],
 ["County Departments","dept.html", "", "", "", "#mainframe", "", "", "", "", "", ],
 ["Board Members","", "", "", "", "mainfrm", "", "", "", "", "", ],
It is not correct to set target as "#mainframe". You should write"mainframe":
 ["Home","main.html", "", "", "", "mainframe", "", "", "", "", "", ],
 ["County Departments","dept.html", "", "", "", "mainframe", "", "", "", "", "", ],
 ["Board Members","", "", "", "", "mainframe", "", "", "", "", "", ],