- Submenus go over all page objects - Sound support! - Special JavaScript API for changing javascript menu "on-the-fly" - Search feature - add the search area in the menu and type symbols. - Transition #14 - "fade out" effect - Personal CSS styles for separate menu elements - Top items and submenus have a shadow - 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: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: I am curious why there are no font settings for "Individual Styles" for"Submenu styles".
Basically I want to have a different font and color for my submenu items so they appear differently than the normal primary Items - but it seems there is only two options for fonts:
- The global font parameters affecting all fonts (primary and sub). - And the Individial Styles for primary Item Styles.
Why no font paramenters for Submenu Items?
A:You can assign Item Style for the submenu item too.
See the example:
var itemStyles = [ ["fontStyle=normal 13px Comic Sans MS"], //item style 0 ]; var menuStyles = [ ];
Q: I would like to know how to put items in on multiple lines for the horizontal navigation (i.e. create a line feed), how do I tell my code to start a new menuitem on the NEXT line?
A:There are 2 ways to do that:
1) set
var noWrap=0;
2) use <br> tags, for example:
var menuItems = [ ["|Here is where <br>I would like <br>to have a line<br> feed",,"","", "", "", "", "", "", "", "",], ];
Q: Is it possible via code customization to remove the border only for the top level of popup navigation and subsequent menu levels with the border? If yes, would you provide technical assistance with the required code change?
A: You can use Individual Item Style in that case. You should create Individual Style, for example:
var itemStyles = [ ["itemBorderStyle=none,none"], // style 0 ];