I have a java scroll menu bar in the main menus although there is nothing to scroll
Return to Recent Questions
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.
Return to Recent Questions
|