Recent Questions
Q: How can make my html vertical tabs to open internet link in the same window?
 
A: You should set the following paramter in your data.js file (file, created in Deluxe Tuner),
where your tab-menu parameters (vars) and items (  var bmenuItems) are placed.
  var bitemTarget = "_blank"; 
Default target for all items ("_self","_blank","_parent","_top",...). 
If equal to "" - defined as "_self". 
Or you can set target parameter in your data file using Deluxe Tuner:
"Tab mode" section in the menu parameters list.
Q: I'm interested in buying your products. I have no experience in programming, only know html/php. How easy would it be to set up these down vertical menu items? I understand your explanation of copying scripts into the relevant html pages. But what about inserting the menus? Do I have to program them myself? 
 Thanks for your help. I just love your deluxe items.
 
A:  Unfortunately we don't have step by step tutorial now. We'll try tocreate it in the nearest time. 
1. Create your menu in Deluxe Tuner application. 
You can create any menu as you like in Deluxe Tuner. 
Deluxe Tuner v2.4 supports Deluxe Menu (http://deluxe-menu.com) &Deluxe Tree (http://deluxe-tree.com) & Deluxe Tabs (http://deluxe-tabs.com) 
You can use ready to use templates. You can find them in the templateswindow. 
When you open Deluxe Tuner ( Deluxe Menu ) you can click "File/New"and add items and subitems using buttons "Add Item" and "Add Subitem" onthe main window. 
You should set items and subitems parameters on the "Item Parameters"window. 
See also other parameters for the menu on the main window. 
More info about menu parameters you can find on our site (you can alsouse local version of the site which you can find in the trial package"Deluxe Menu / deluxe-menu.com /") 
http://deluxe-menu.com/parameters-info.html 
http://deluxe-menu.com/menu-items-info.html 
You can also use Individual Styles for items and subitems 
http://deluxe-menu.com/individual-item-styles-info.html 
http://deluxe-menu.com/individual-submenu-styles-info.html 
2. You should install the menu on your page. 
You can click, for example, File/Export to HTML (you can't do it inthe MAC version). 
Add several rows into your html page.
<head> 
... 
 <!-- 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"></script> 
 <script type="text/javascript" src="data-deluxe-menu.js"></script> //data-deluxe-menu.js - data file created in Deluxe Tuner. 
... 
</head> 
<body> 
... 
<table> 
<tr><td><script type="text/javascript" src="deluxe-menu.files/data.js"></script></td></tr> 
</table>
... 
</body> 
You should also copy all engine files 
dmenu.js 
dmenu4.js 
dmenu_add.js 
dmenu_dyn.js 
dmenu_key.js 
dmenu_cf.js 
dmenu_popup.js 
dmenu_ajax.js 
into "deluxe-menu.files/" folder. You should place this folder in thesame folder with your index. html page. 
Q: Actually, we figured out how to adjust the alignment of the text. What we would like to do is set a specific width for each item on the top level of the menu. Right now the width of the menu is based on the length of the item in that hotspot. We would like the width of each of those options to be the same.
 
A: You should use individual item styles. For example: 
  var itemStyles = [ 
 ["itemWidth=123px"], //style 0 
 ["itemWidth=150px"], //style 1 
]; 
  var menuItems = [ 
 ["Home","testlink.html", , , , , "0", , , ], //style 0 
 ["Product Info","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", , , "0", , , ], //style 0 
 ["Text","", "deluxe-menu.files/icon1.gif", "deluxe-menu.files/icon1o.gif", , , "1", , , ], //style 1 
Try that.
Q: Hello, Could you please help me with an alignnment issue with my website. If you go to mt website you will see the problem. I set the x alignment to=266 but the y alignment is left blank because I would like to keep the menu centered on the site.
 
A: If you want to center the menu paste itwithin the <div> or <table> with a static position and specify a center alignment for it, for example: 
<DIV align=center> 
<SCRIPT src="data/data.js" type=text/javascript>
</SCRIPT> 
</DIV> 
Please, set exact value for   var menuWidth parameter, for example: 
  var menuWidth = "300px"; 
This can help to align your menu correctly in all browsers. 
Try also to specify units in "px". 
Set also: 
  var absolutePos = 0; 
Try that.