|
|
|
The separator image doesn't show in script tree menu
Return to Recent Questions
Q:
I have tried to insert a separator in a script tree menu and set the
image path but the separator image doesn't show.
Is there anything else I need to do?
A:
You should set a separator in the menuItems, for example:
var menuItems = [
["Home","index.cfm", , , , , , , , ],
["-"],
["About Us","about.cfm", , , , , , , , ],
];
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="";
Try that.
Return to Recent Questions
Related:
|