Recent Questions
Q: I can't get drop down navigation menu to centre in the table..
I want it to - which is just below the header flash
Could you let me know what to do
A: Now you're using absolute position for Deluxe Menu:
var absolutePos=1;
You should use relative position:
var absolutePos=0;
Try that.Q: I have function "confirmLogout()" that it returns true or false. If it is false, the function does not make nothing. If it's true, I need to direct for the page "goout.jsp". How to use this function in the mouseover drop menu?
function confirmLogout() {
if(confirm('It really desires to leave? ?')) {
return true;
} else {
return false;
}
}
A: Actually you can use your own Javascript code instead standard mouseover drop menu links. For example:
var menuItems = [
["text", "javascript:your_code_here"]
];
or
var menuitems = [
["<div onClick='your_code_here'>item text</div>", ""]
];
Q: I have just purchased your menus and no matter where I place the code, the pull down menu in javascript always appears in the top left of the page, I need it elsewhere obviously but it simply won't move.. How do I do this?
A: You're using absolute position for the menu now. You should userelative position in that case. Change the following parameters:
var absolutePos=0;
var posX="0px";
var posY="0px"; >Kehren Sie zu Neuen Fragen zurückQ: I tried the new engine files and the submenus now show up in the bottom frame.
If the new page in the bottom frame is a frameset itself, the menus will not show up. Is there a work around for this?
A: Unfortunately, Deluxe Menu can work within 1 frameset only. It can't work within nested framesets.