- AJAX menu loading - loads web menu data from the server "on-the-fly". - Special JavaScript API for changing javascript menu "on-the-fly" - Horizontal or vertical orientation - Image arrows - Transition #14 - "fade out" effect - Several menus on one page - Status string shows item labels - Submenus automatically scrolls
Create contextual menus for your pages. For this purpose you should assign a special function for the object you want. The current coordinates of the mouse pointer or your own ones can be used for the contextual menu.
When the submenu is larger than the visible area of the page the submenu will be automatically decreased. To see all the submenu items you do not need to use scrollbars or something like that - just put your mouse to the bottom of a submenu and it will be automatically scrolled! You can also specify height and width for each separate submenu.
Build menus completely based on Cascading Style Sheets. It is possible to appoint the individual CSS styles for separate elements of the menu.
Q: I would like to separate each main js dropdown menu item (Find an Expert, Contact...etc) with a dotted line graphic. If you look at the js dropdown menu, you will see that each graphic is separated by a dotted line. I am trying to replicate that look in the Deluxe Menu. Is there a way I can do that? I tried to use the "separatorImage" value in the DeluxeTuner, but it didn't seem to do anything. Is there a way to put a dotted border just along the bottom of them item, instead of around the whole item (like a box)? Or is there a way to insert the graphic between the items?
A: To add a separator you should
//--- Separators var separatorImage=""; //for subitems (top items in vertical menu) var separatorWidth="100%"; var separatorHeight="3px"; var separatorAlignment="right"; var separatorVImage="separator.gif"; //for the top items (subitems items in vertical menu) var separatorVWidth="100%"; var separatorVHeight="2px"; var separatorPadding="";
You can create separators using menuItems, for example:
var menuItems = [ ["item 1"], ["-"], // this item is separator ["item 2"], ];
Q: I have tested and tested but can't find out how I can add the following, as a link in drop down navigation bar. Can you please help?
But you should specify a styles for this link also.
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: Is there a way to specify certian font styles escpecailly a hanging indent on the text of the navigation menubar?
A:You should use Individual styles, for example: var itemStyles = [ ["fontStyle=bold 12px Arial,Helvetica", "fontDecoration=none,underline"], // style 0 ["fontStyle=normal 12px Arial,Helvetica", "fontDecoration=underline,underline"], // style 1 ["fontStyle=normal 14px Arial,Helvetica", "fontDecoration=none,none"], // style 2 ];
And assign styles to your items: var menuItems = [ ["1 Item","index.php","","","","_self","0",,,], ["2 Item","","","","","_self","1",,,], ["|Submenu Item","","","","","_self","2",,,], ...
With this I had created a lot of submenus. So I searched that tree.php error, read threads -1- -2- and -3- . It seems that I have to go through each menu
With this I had created a lot of submenus. So I searched that tree.php error, read threads -1- -2- and -3- . It seems that I have to go through each menu
With this I had created a lot of submenus. So I searched that tree.php error, read threads -1- -2- and -3- . It seems that I have to go through each menu