| 
      Return to Recent Questions I want to separate the main items with an image in the website navigation bar. 
 
 Q:
I want to separate the main items with an image in the website navigation bar.
 
 A:
 To add a separator you should
 
 //--- Separators
 var separatorImage="";     //for subitems  (top items in vertical menu)
 var separatorWidth="100%";
 var separatorHeight="3px";
 var separatorAlignment="right";
 var separatorVImage="separator.gif";   //for the top items (subitems items in vertical menu)
 var separatorVWidth="100%";
 var separatorVHeight="2px";
 var separatorPadding="";
 
 You can create separators using menuItems
 (you can do it in Deluxe
Tuner, use "Add separator" button), for example:
 
 var menuItems = [
 ["item 1"],
 ["-"],     // this item is separator
 ["item 2"],
 ];
 
 
 
 
 
 
 Return to Recent Questions
 
 Related:
 
 
         Sep 26, 2006 - Why is the submenu has a different colour than menu items in the javascript menu bar?
Nov 06, 2006 - Each item is a different width. Can I do this with your html navigation bar?...
Nov 10, 2006 - I want to set the status bar messages to another than the link text from the xp menu items?
Dec 04, 2006 - When running navigation bar code with IE or Firefox, the background is  transparent.
Dec 05, 2006 - I can not createPopup windows by clicking on a menu.
Feb 17, 2007 - How can I setup Font Size, color for individual level, button in the bar websites?
March 14, 2007 - Does your license for css navigation menu need to be tied to a domain name to work?
March 31, 2007 - My mainmenu items are not links. So I need no link cursor in css slide menu.
April 17, 2007 - How do I highlight main css flyout menu items when I selected a main category?
May 06, 2007 - Sub-menus appear away for the menu/ dhtml navigation bar.
May 15, 2007 - Can the main java script menu items be set so they are all the same width?
 |