|
How I can add little vertical spacers between menu items in the menu dinamico javascript?
Return to Recent Questions
Q:
I'm just trying to add little vertical spacers between menu items in the menu dinamico javascript.
How can I do it with DHTML Menu.
A:
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 menu dinamico javascript 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
Related:
- March 12, 2009 - I don't understand, how can change place of the icon in button context menu...
- March 13, 2009 - Now we are having the "Incorrect Copyright" on our dhtml menu examples...
- March 14, 2009 - I am having a problem with css styles in the script menu.
- March 15, 2009 - I have problems with transitional effects in Firefox in the dropdown menu in javascript...
- March 16, 2009 - Is there any way to keep a menus in dhtml lit up when going to another page?
- March 16, 2009 - How can I change item width in the Vista templates in the java script menue?
- March 18, 2009 - I am getting a Javascript error, when accessing any of the show popup menu.
- March 19, 2009 - How to get the menu bar html to highlight and stay on the page you're viewing?
- March 19, 2009 - I need that the dynamic javascript menu loads pages into an iFrame.
- March 20, 2009 - Links don't work in the menus with css. How can I correct this?
- March 21, 2009 - How can we increase the width of the vista style buttons of dhtml sliding menu?
|