|
|
|
Do the Vista style menu css javascript support a separator?
Return to Recent Questions
Q:
Do the Vista style menu css javascript support a separator?
It seems to add some space but the separator line is not on my menu css javascript.
A:
Yes, you can paste a separator in the Vista style menu css javascript.
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 sliding menu?
- Apr 04, 2009 - I now have the need to introduce separators on the html floating menu.
- Apr 12, 2009 - For some reason my item separator image won't show in image rollover menu...
- Apr 18, 2009 - Does your menu supports key navigation, like Alt-F to select a simple css menu?
- Apr 21, 2009 - If your javascript drag and drop supports key navigation, like Alt-F to select a javascript drag and drop?
- May 07, 2009 - Does your css vertical drop down menu support right-to-left languages, like Hebrew?
- May 09, 2009 - I am unable to see any separators when working with website drop down menu...
- May 29, 2009 - Does flyout menus have support for Chinese or other Unicode characters?
- Jun 14, 2009 - The separator image doesn't show in menu with html
- Jun 23, 2009 - I cannot get the separator images to appear in the javascript drop down menu.
- Aug 29, 2009 - It seems to me that this navigation menus supports IE (on the PC and Mac) only.
|