How can I add separators in the javascript dhtml menu only a few pixels high?
Return to Recent Questions
Q:
Is there any way I can do the opposite and make the space my separators take
up only a few pixels high? At present I can only make them the same height
as the other buttons even though the separator image is only 2 pixels high.
A:
You should set a separator in the menuItems, for example:
var menuItems = [
["Home","index.cfm", , , , , , , , ],
["-"],
["About Us","about.cfm", , , , , , , , ],
];
Please, see the following parameters:
//--- Separators
var separatorImage=""; //for subitems
var separatorWidth="100%";
var separatorHeight="3px";
var separatorAlignment="right";
var separatorVImage="images/public/separator.gif"; //for the top items
var separatorVWidth="100%";
var separatorVHeight="2px";
var separatorPadding="";
Return to Recent Questions
|