|
home / documentation / reference / menupaddingbottom
MenuPaddingBottom
- Description:
- The distance, in pixels, between the menu's bottom border and the
bottom edge of its last menu item.
- Value:
- Integer, or JavaScript expression that returns an integer.
Negative values are not allowed.
- Applies To:
- Menus.
- Browser Compatibility:
- MenuPaddingBottom is not supported in Netscape 4.x.
- Comments:
- You must always specify MenuPaddingBottom as an integer, or a
JavaScript expression that returns an integer. Do not use quoted strings or
non-numerical characters when defining MenuPaddingBottom.
MenuPaddingBottom is always interpreted by HM as pixels.

The color that is displayed in the MenuPadding is controlled via
MenuBGColor. If MenuBGColor is left null, then
the MenuPadding assumes the default color as specified in the
page or style sheet settings for the menu elements (usually transparent).
- Examples:
// Ok:
MenuPaddingBottom:5,
MenuPaddingBottom:0,
MenuPaddingBottom:(HM_NS4)?3:2, // 3 if NS4, 2 otherwise
// Incorrect:
MenuPaddingBottom:3.8,
MenuPaddingBottom:-3,
MenuPaddingBottom:"2", // quotes not allowed
MenuPaddingBottom:"(HM_NS4)?3:2",
// no quoted expressions
- Default:
- 0
- See Also:
-
MenuBGColor,
MenuPaddingTop,
MenuPaddingRight,
MenuPaddingLeft
|