|
|
What I try to make is a menu dhtml with items having a border of only 1 px
Return to Recent Questions
Q:
What I try to make is a menu dhtml with items having a border of only 1 px, also
between the menu items. However it seems that Deluxe menu draws a 1 px
line around every menu item giving an effective border line of 2 px
between the area where the items touch each other. I want to have 1 px
border also on the areas where the items touch each other. Any suggestion
how to fix this?
A:
If you want to have the 1px border between the items only you can
use separators.
Please, see the following parameters:
//--- Separators
var separatorImage=""; //for subitems
var separatorWidth="5";
var separatorHeight="100%";
var separatorAlignment="right";
var separatorVImage="images/public/separator.gif"; //for the top items
var separatorVWidth="1";
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
|