I would like to separate each main js dropdown menu item with a dotted line graphic.
Return to Recent Questions
Q:
I would like to separate each main js dropdown menu item (Find an Expert,
Contact...etc) with a dotted line graphic. If you look at the js dropdown menu, you will see that
each graphic is separated by a dotted line. I am trying to replicate
that look in the Deluxe Menu. Is there a way I can do that? I tried
to use the "separatorImage" value in the DeluxeTuner, but it didn't
seem to do anything. Is there a way to put a dotted border just
along the bottom of them item, instead of around the whole item
(like a box)? Or is there a way to insert the graphic between the
items?
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, for example:
var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"],
];
Return to Recent Questions
Related:
- Sep 06, 2006 - The alighment of the dropdown menu is off to the right in Firefox...
- Sep 11, 2006 - How can I hide my dropdown menu on print?
- Sep 11, 2006 - If I use doctype the settings of the submenus in javascript dropdown menu get lost.
- Sep 18, 2006 - Does the js menu work to load pages into an iframe?
- Sep 22, 2006 - Where do I add my "blahblah.htm" page links in js menu?
- Oct 06, 2006 - Where I can find data.js file for tree javascript menu?
- Oct 12, 2006 - Can I create a scroll vertical menu on the right side and the subnav popout on the LEFT?
- Oct 27, 2006 - In IE 6.0 and Firefox 1.5.0.4, the submenus of my dhtml dropdown menu are not visible
- Nov 29, 2006 - I am still struggling with multiple menus js on one page.
- Nov 30, 2006 - Does your html menu dropdown have the ability to have small text boxes on it?
- Dec 04, 2006 - With the licensed .js files of menu dhtml the status bar on IE shows "Error on page".
|