|
|
Can I use my own images as the tabs in a dreamweaver navigation bar?
Return to Recent Questions
Q:
Can I use my own images as the tabs in a dreamweaver navigation bar?
A:
The Drop down menu items have the following structure:
var menuItems = [
[text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
[text, link, iconNormal, iconOver, tip, target, itemStyleInd, submenuStyleInd, jsFilename],
...
];
Where iconNormal, iconOver - Icons of an item: icon in normal state, icon in mouseover state.
So you can set your menu items in a such way:
var menuItems = [
["","testlink.htm", "icon1.gif", "icon1o.gif"],
["","", "icon2.gif", "icon2o.gif"],
["|","testlink.htm", "icon3.gif", "icon3o.gif"],
["|","testlink.htm", "icon4.gif", "icon4o.gif"],
["|","testlink.htm", "icon5.gif", "icon5o.gif"],
["","testlink.htm", "icon1.gif", "icon1o.gif"],
];
Return to Recent Questions
Related:
- Nov 06, 2006 - Each item is a different width. Can I do this with your html navigation bar?...
- Nov 29, 2006 - Why the background images disappear for a while after hovering over html menubar?
- Dec 04, 2006 - When running navigation bar code with IE or Firefox, the background is transparent.
- Dec 24, 2006 - How to get side menu items to swap images to use like a traditional image rollover.
- Dec 31, 2006 - Is there a way to use the javascript floating bar without generating the warning?
- Jan 23, 2007 - Can I keep a submenu shown even when my mouse pointer is NOT over dhtml menu bar
- April 13, 2007 - How to call javascript function when the user click on a menu bar html Items
- May 06, 2007 - Sub-menus appear away for the menu/ dhtml navigation bar.
- Aug 16, 2007 - What setting do I use for dmAJAXCount in my java menu navigation?
- Sep 26, 2007 - Is there any way to call a javascript function on mouseover dhtml menubar?
- Oct 08, 2007 - May I can use PHP code in menu items of my dhtml website navigation menu?
|