Recent Questions
Q: Deluxe Menu supports keyboard navigation eg. CTRL+F2 to activate menu.
Why does Deluxe Tabs not have the same feature?
I would like to use both java script navigation menu systems on the same page, and both need to have keyboard navigation for accessibility reasons.
A: Unfortunately it is really so, Deluxe Tree and Deluxe Tabs doesn'thave such a feature now.
We'll try to add this feature in the next versions of the java script navigation menu.
Q: Could you tell me if this drop down menus javascript work with Japanese fonts?
A: If you are using a Japanese system then everything should render correctly.
If you are using an English system with a Japanese IME then you willneed to set the font in the Tuner to one that supports the characters you require.
Q: The problem is now that I have a scroll bar in the main menus although there is nothing to scroll.
Do you have any ideas?
A: You've set the exact width and height for submenus.
var smWidth = "100";
var smHeight = "250px";
var menuStyles = [
["smWidth=220px","smHeight=250px"],
["smWidth=200px","smHeight=250px"],
["smWidth=120px","smHeight=250px"],
];
Try to write:
var smWidth = "";
var smHeight = "";
var menuStyles = [
[""],
[""],
[""],
];
There will be no scroll bar in the main menus.
Q: The text on the dropdown menu item is not centered as it shows in the preview, How do I fix?
A: The reason is in your style
TD {
VERTICAL-ALIGN: top
}
Try not to define style for Table, TD, TR elements they can affect themenu.
Set also the following parameter:
var itemAlignTop="center";