Recent Questions
Q: We would like it so when you click on an option in the free dhtml menu, the page shows up in the main middle frame..So far, I can only seem to get it to show up in its own page.
A: You should set the correct target parameter for your items.
You can set target parameter for all items:
var itemTarget="main";
Where main - is the name of the main middle frame where you want to open the link.
["Home","testlink.html", "", "", "", "main", "", "", "", "", "", ], Q: I would like to purchase your menu system but I need to know if I can control disable property for the menu javascripts
A: You can try to use the following function:
function dm_ext_changeItemVisibility (menuInd, submenuInd, itemInd, visibility)
Shows/hides the item.
menuInd - index of a menu on a page, >= 0.
submenuInd - index of a submenu, >= 0.
itemInd - index of an item, >=0. See more info about indexes here.
visibility = true/false - visibility of the item.
More info you can find here:
http://deluxe-menu.com/functions-info.html
Q: Is it possible to place the icons on the right side of the menu items for the navigation bar script?
A: Unfortunately there is no such option. But you can use html code inside item's text, forexample:
["Purchase <img src='default.files/icon1.gif'>","http://deluxe-menu.com/order-purchase.html", "", "", "", "_blank", "", "", "", "", "", ],
Q: How do I change the background color for the floating drop down menu
A: To change menu colors you should change the following parameters:
var menuBackColor="#F2F3F2";
var itemBackColor=["#F2F3F2","#535353"];
You can also use Individual Item Styles to change the color of the specific items:
var menuStyles = [
["menuBackColor=#F2F3F2"],
];
var itemStyles = [
["itemBackColor=#F2F3F2,#535353"],
];