Recent Questions
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: After much coming and going I have finally got De Luxe menu to work with Firefox 2
But the menu system on the exact same htm page I have created does not show up in IE7.
Is this a known problem?
A: Try to set the exact width for the menu,
var menuWidth="700px";
Q: The "drop down" menus go above the mouseover javascript menu, not below. I want them to go down. That's why it's a DROP DOWN menu and not a DROP UP menu.
And I tried the " var subMenuVAlign="bottom";" command as per your user database forum and it doesn't work.
So the problem is elsewhere....
BTW, I did not have this problem on the trial version, it appeared after I installed your js files in the scripts directory and the key in the data.js file
A: You should set the following parameter for mouseover javascript menu:
var subMenuVAlign="top";
Q: The window pops up every time I load the screen.
I want dhtml pop up window to pop when someone clicks.
A: You can specify the ID of the element you want to click on.
Actions sections in Deluxe Tuner, onClick parameter.
1) You can show the popup window when you hover, click or mouseout on some elements on yourpage. For example you have:
<p><img border="0" src="images/submenu-bg.gif" width="170" height="29" id="open_popup"></p>
So, in Deluxe Tuner you should enter 'open_popup' object ID in the onMouseOver,
onClick or onMouseOut fields.
Actually you can assign id to any object on your page:
add id="open_popup" for <a>, <div>, <img> ... tags.
2) You can also use deluxePopupWindow.open() function to open the popups.
More info about deluxePopupWindow.open() function you can find:
http://deluxepopupwindow.com/window-installation-info.html
function deluxePopupWindow.open("winID", "content", "header", "param", "skin", "contentType")
Use another winID (first parameter) than you have in your data file if you don't want to close 1-st popup window or use thesame winID=win if you want to close 1-st popup.
content - will be the path to the file you want to load in your popup (files/test.html)
skin - is the name of your skin (default in my example)
contentType - set this parameter to iframe.
If you want to open several windows at once use different id's for each link.