Recent Questions
Q: I need to set individual itemtargets for a number of menu items for the web drop down menu?
A: You can set target parameter for all items:
var itemTarget="_blank";
or var itemTarget="main";
Where main - is the name of the main frame where you want to open the link.
or for each item individually:
["Home","testlink.html", "", "", "", "_blank", "", "", "", "", "", ],
...
["Home","testlink.html", "", "", "", "main", "", "", "", "", "", ],
Q: Can I have the pop-out items in the dhtml menu bar go left instead of right. Going right they run off the page.
A: You should use the following parameter (Deluxe Tuner->Positioning):
var subMenuAlign="left";
Q: I would like to setup a menu that is Horizontal at level 1,Horizontal at level 2, then vertical from then on. Can your system handle this? Even if I need to manuallytweak something that would be fine.
A: Unfortunately, the menu can't do that. You can only set theorientation for the top-menu and its submenus.
Q: All links in navigation bar examples open in a new window even when they're configured to open in the same page (or another frame).
A: Check the following parameters:
var itemTarget="_self";
["menu item","link.htm", "", "","Tip", "_self", "", "", "", "", "", ],