Recent Questions
Q: Just downloaded and installed the latest version, noticed it does not say beta any longer. On this version and the previous version I had installed I can not click and move the window open script around on the screen when using Firefox. When I used IE it works as expected, I can move it and it sticks in position. Is there a fix for this? 
A:  See we've made many changes in window open script in v3.3.
Your old pop up windows (data files) won't work with new engine file.You should recreate your popup window in Deluxe Tuner.
Q: What I want to do is use your XP Tabs Template. 
 It appears fine in the Preview Pane but when I load it on my web page the sub-items are all listed on the same line as the tabs.
A:  If you want to create subtabs in your menu you should use Tab Mode 
  var tabMode=1; 
and write your bmenuItems in the following way: 
  var bmenuItems = [ 
 ["-","", "", "", "", "", "", "", "", ], 
 ["XP Tab 1","content1", "", "", "", "", "", "", "", ], 
 ["XP Tab 2","content2", "", "", "", "", "", "", "", ], 
  ["|SItem 226","", "", "", "", "", "", "", "", ], 
 ["XP Tab 3","content3", "", "", "", "", "", "", "", ], 
  ["|SXP Tab 4","content4", "", "", "", "", "", "", "", ], 
 ["-","", "", "", "", "", "", "", "", ], 
]; 
but in that case you can't assign the ID of the DIV to show when youclick on the tab. You can set the links only.
Q: I want to have one of the drop menus in the horizontal navigation use a different image. 
I am using the vista images and would like to have all of them but one use the same image
and the last one a different one. Can this be done?
 
A: You should create Individual Style for the last item and assign another image for it.
  var itemStyles = [
 ["itemWidth=92px","itemHeight=21px","itemBackColor=transparent,transparent","fontStyle=normal 11px Tahoma","fontColor=#FFFFFF,#FFFFFF","itemBackImage=data-vista-01.files/btn_black.gif,
data-vista-01.files/btn_black_blue.gif"],
 ["itemWidth=92px","itemHeight=21px","itemBackColor=transparent,transparent","itemBackImage=data-vista-2-03.files/btn_green.gif,data-vista-2-03.files/btn_green2.gif","fontStyle='normal 11px Tahoma','normal 11px Tahoma'","fontColor=#FFFFFF,#FFFFFF"],
];
  var menuItems = [
 ["Home","testlink.html", "", "", "", "", "0", "0", "", "", "", ], //style 0
 ["Product Info","", "", "", "", "", "0", "", "", "", "", ], //style 0
...
 ["Purchase","http://deluxe-menu.com/order-purchase.html", "", "", "", "_blank", "0", "", "", "", "", ], //style 0
 ["Contact Us","testlink.htm", "", "", "", "", "1", "", "", "", "", ], //style 1
];
Q: I did not see how you get the content of link value of the tab to display below css tab menu. 
The closet I got was to click a tab and havea second window open up wit the content of the link.
A: See in Deluxe Tabs there are two modes:
1.   var tabMode=0;
You can create only one level of tabs and assign Object Id's of the
DIV's to show when you click on the tab.
 ["XP Tab 1","content1", "", "", "", "", "", "", "", ],
 ["XP Tab 2","content2", "", "", "", "", "", "", "", ],
 ["XP Tab 3","content3", "", "", "", "", "", "", "", ],
 ["XP Tab 4","content4", "", "", "", "", "", "", "", ],
2.   var tabMode=1;
You can assign only links in this mode.
You should create top level items with subitems.
 ["XP Tab 1","", "", "", "", "", "", "", "", ],
  ["|Link 1_1","http://deluxe-tabs.com", "", "", "", "", "0", "", "", ],
  ["|Link 1_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 1_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 2","", "", "", "", "", "", "", "", ],
  ["|Link 2_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 2_5","testlink.htm", "", "", "", "", "0", "", "", ],
 ["XP Tab 3","", "", "", "", "", "", "", "", ],
  ["|Link 3_1","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_2","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_3","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_4","testlink.htm", "", "", "", "", "0", "", "", ],
  ["|Link 3_5","testlink.htm", "", "", "", "", "0", "", "", ],
You can use Object ID as well as Link in both modes. Use the following prefixes within item's link field:
"object:" - means that there is object id after it; 
"link:" - means that there is a link after it.
"javascript:" - means that there is a javascript code after it, for example:javascript:alert(\'Hello!\')
So, you should write for example:
  ["|Link 1_1","object:Content1_1", "", "", "", "", "0", "", "", ],