Little vertical spacers between menu items in the drop down menu.
Return to Recent Questions
Q:
I'm just trying to get those little vertical spacers between menu items in the drop down menu.
How can I do it with Deluxe Menu.
A:
Please, see the following parameters of the menu:
//------- Separators -------
var separatorWidth = "10";
var separatorHeight = "20";
var separatorAlignment = "center";
var separatorImage = "C";
var separatorVWidth = "20";
var separatorVHeight = "10%";
var separatorVImage = "image.jpg";
You can create separators between items in the drop down menu using menuItems, for example:
var menuItems = [
["item 1"],
["-"], // this item is separator
["item 2"],
["|item 3"],
["|-"], // this subitem is separator
["|item 4"],
];
Return to Recent Questions
|