Recent Questions
Q: I am interested in this script 
 http://deluxe-menu.com/popup-mode-sample.html 
 Is that possible that the "2nd" menu is activated with left click and to delete the "1st" menu.
 
A: Yes of course you can create any menu on your page. 
See how you should call pop up menu 
 <img src="data-samples/images/popup_pic.gif" width=180 height=119 onClick="return dm_popup(1, 2000, event);" onContextMenu="return dm_popup(2, 2000, event);" style="cursor: pointer;">
 
 To use one menu on you page you should write 
 <img src="data-samples/images/popup_pic.gif" width=180 height=119 onClick="return dm_popup(1, 2000, event);" style="cursor: pointer;">
 
You can create you own menu using Deluxe Tuner application or use thismenu.
Q: I would like two level of tabs i.e. 
 Tab 1 entertainment 
 Opens up another level of tabs 
 Tab 1_2 movies with information displayed in the tab not on new page
Tab 1_3 music with information displayed in the tab not on new page 
 Tab 1_4 tv and so on...
 
A:  Unfortunately, you cannot do it using Deluxe Tabs in TabMode. Youcannot use object ID to show in TabMode, only links. 
You can use 2 menus: 
Tab 1 entertainment //1st menu 
--------DIV---------------------- 
 Tab 1_2 Tab 1_3 Tab 1_4 //2nd menu 
 ----------DIV's for second menu-------------- 
 content 
----------end DIV's for second menu --------- 
----------end DIV for the first menu -------
Q: I made a css tab menu on this website and I noticed that I need to click two time to get the link.
 It doesn't work if I click only one time. Could you help me to fixe that ?
A: You should set correct selected item:
  var bselectedItem=2; //0,1,2...
Set also:
  var tabMode=0;
  var bselectedSmItem=0;
In that case you should write your links in the following way:
 ["Hem","link:index.php?p=1_10", "", "", "", "", "", "", "", ],
 ["Om oss","link:index.php?p=1_11", "", "", "", "", "", "", "", ],
 ["Kontakt","link:index.php?p=1_12", "", "", "", "", "", "", "", ],
 
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
];