|
|
How can I add "|" separating in the menu items with your rollover drop down menu?
Return to Recent Questions
Q:
If you take a look at the upper menu, I have "|" separating
all of the various menu items. How can I do this with Deluxe Menu?
I don't want to resort to using messages and would like to use the
"|" character if at all possible.
A:
You can paste a separator.
Please, see the following parameters:
//------- Separators -------
//--- Separators
var separatorImage="";
var separatorWidth="5";
var separatorHeight="100%";
var separatorAlignment="right";
var separatorVImage="images/public/separator.gif";
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", , , , , , , , ],
];
Return to Recent Questions
|