|
|
|
Do the Vista style menu bar script support a separator?
Return to Recent Questions
Q:
Do the Vista style menu bar script support a separator?
It seems to add some space but the separator line is not on my menu bar script.
A:
Yes, you can paste a separator in the Vista style menu bar script.
Please, see the following parameters:
//--- Separators
var separatorImage=""; //for subitems
var separatorWidth="5";
var separatorHeight="100%";
var separatorAlignment="right";
var separatorVImage="images/public/separator.gif"; //for the top items
var separatorVWidth="3";
var separatorVHeight="100%";
var separatorPadding="";
You should set a separator in the menuItems, for example:
var menuItems = [
["Home","index.cfm", , , , , , , , ],
["-"],
["About Us","about.cfm", , , , , , , , ],
];
Try that.
Return to Recent Questions
Related:
- March 21, 2009 - How can we increase the width of the vista style buttons of dhtml drag drop?
- Apr 04, 2009 - I now have the need to introduce separators on the vertical navigation menu.
- Apr 12, 2009 - For some reason my item separator image won't show in dynamic pull down menu...
- Apr 18, 2009 - Does your menu supports key navigation, like Alt-F to select a javascript menu horizontal?
- Apr 21, 2009 - If your menus in java script supports key navigation, like Alt-F to select a menus in java script?
- May 07, 2009 - Does your css dynamic menu support right-to-left languages, like Hebrew?
- May 09, 2009 - I am unable to see any separators when working with click popup menu...
- May 29, 2009 - Does drop down menu java script have support for Chinese or other Unicode characters?
- Jun 14, 2009 - The separator image doesn't show in pop up menus
- Jun 23, 2009 - I cannot get the separator images to appear in the java script drop down menu.
- Aug 29, 2009 - It seems to me that this menu contextuel javascript supports IE (on the PC and Mac) only.
|