Recent Questions
Q: I am setting up a menu with word wrapping "on". Is it possible to have the wording in the middle of the text go to a new line? 
If so, how do I do that?
 
A: Unfortunately, you can't do it. 
You can only set the following parameter 
  var noWrap=0; 
and use <br> tags in the text, for example 
 ["ffffffff<br>fffffffffffff<br>fffffffffff Info","", "default.files/icon1.gif", "default.files/icon1o.gif", , , "0", , , ], 
Q: Under Parameters ->> Dimensions ->menuWidth
 Even I change the value such as 150px it doesn't have any effect on javascript dhtml menu itself. 
 Changing menuHeight property such as menuHeight = 123px moves menu down from the top of the page instead of changing height of the menu itself. 
I used templates ->> vista -> vista style 3-03 to generate the javascript dhtml menu and modified it.
A: See, you have itemWidth and itemHeight in the Individual Style.
  var itemStyles = [
 ["itemWidth=94px","itemHeight=23px","itemBackColor=transparent,transparent","itemBorderWidth=0", "fontStyle=bold 10px Tahoma","fontColor=#FFFFFF,#FFFFFF", "itemBackImage=data-vista-3-03.files/btn_cyan.gif,data-vista-3-03.files/btn_cyan2.gif"],
];
You cannot set the less value for the menuwidth in that case. You canset only the bigger value:
  var menuWidth="550px";
To change the menuHeight you should also use itemHeight parameter, forexample
itemHeight=123px
Q: I like your product and we would like to use it for our web-site.
 Our site uses Frames with the following names in the FrameSet:
frame name = “top” 
frame name = “middle” 
frame name = “bottom” 
 I don’t understand how to set the target of the Deluxe Tuner navigational link to populate the frame “middle” or “bottom”
 When I try to input my own name it will not allow me to do so. 
 We are using the “top” (horizontal) frame as a header which will contain the navigational component we developed using your product. 
 We are using the “middle” frame to contain most of the html pages the user will load 
 We are using the “bottom” frame to contain auxiliary text
 Can you help me?
 
A: More info about the installation of the menu in cross-frame mode youcan find here 
http://deluxe-menu.com/cross-frame-mode-sample.html 
You should replace dm_init() function with dm_initFrame() function. 
Please, open your data.js file with the menu parameters in any texteditor and change it. 
You should write, for example so: 
dm_initFrame("frmSet", 1, 2, 0);
Q: We have a problem with true type fonts. The dropdown menu in html does not showing properly for Turkish letters. We are using true type fonts (bold 10px TR Tahoma). 
A:  Font.If there will be no TR Tahoma font on the user machinethe font won't be shown correctly.
You can find another font similar to your font and write it through a comma.
You should choose the font among the following fonts:
Arial
Tahoma
Times New Roman
Trebuchet MS
Verdana
These fonts are installed on the most of windows computers.
For example:
  var fontStyle=["bold 9px TR Tahoma, Tahoma","bold 9px TR Tahoma, Tahoma"];
Or you can create images with text and use it for the top items.
Encoding.
You can save your data file in UTF-8 in Windows version of DeluxeTuner v3.2.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 manuallychange your letters in any text editor.
You can also replace your letters with special sets, for example
É - Capital E, acute accent - É
ç - Small c, cedilla - ç
  var menuItems = [
 ["É....","testlink.html", "", "", "", "", "", "", "", ],
 ["ç....","testlink.html", "", "", "", "", "", "", "", ],