I am unable to see any separators when working with javascript drop menu
Return to Recent Questions
Q:
I am unable to see any separators when working with Deluxe Menu.
I�ve looked at other templates and don�t see where they are
implemented. Am I missing something? Thanks!
A:
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", , , , , , , , ],
];
Try that.
Return to Recent Questions
|