- Hundreds of pre-designed templates - Unlimited number of sub levels - Submenus dropdown on mouseover - UL/LI items structure - Search feature - add the search area in the menu and type symbols. - Status string shows item labels - Special JavaScript API for changing javascript menu "on-the-fly" - Relative/Absolute menu position
Good navigation is an important step to website success. If people can't find their way around the site, they will quickly give up looking and leave, never to return. So, it's absolute vital that your website has a fast, neat, and eye-pleasing navigation. Don't allow your website visitors to get lost. Try Deluxe Menu!
Q: Does this product work to make drop down menu in Frontpage 2003?
A:Deluxe Menu wasn't developed as Dreamweaver/Frontpage extension, BUT you can use it as standard Javascript files. To install the menuinto your html page:
Notice that in the Design mode your drop down menu may displayincorrectly. It is normal. You should view your page in browser preview.
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: Javascript menu frame Borders are present Firefox but missing in IE7, IE8, Google Chrome, Safari.
Firefox shows the borders ok.
A: You've set the following parameters in this menu: var menuBorderColor="#FF9191 #FF7837 #E10000 #952D00 "; var menuBorderWidth=3; var menuBorderStyle="";
You should specify style for your border, for example: var menuBorderStyle="solid";
See the attached example. I cannot notice such issue on Safari forWin. Write what version you're using.
Change also var fontStyle=["normal 8pt Verdana,normal 8pt Verdana","normal 8pt Verdana,normal 8pt Verdana"]; to var fontStyle=["normal 8pt Verdana","normal 8pt Verdana"];
Q: I cannot get the separator image to display in my dhtml right click menu. Is there a setting I am missing? I want to separate the main menu items with an image.
A: To add a separator you should
//--- Separators var separatorImage=""; //for subitems (top items in vertical dhtml right click 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 (you can do it in DeluxeTuner, use "Add separator" button), for example:
var menuItems = [ ["item 1"], ["-"], // this item is separator ["item 2"], ];