Menubar

Vertical

Horizontal

Menubar is the container for Menu components .

CSS Definition

Description

Default Values

div.menubar, div.menupopup, div.ctxpopup

Classs for background and cursor of Menubar

cursor: pointer;

background: #e9effa;

padding: 1px;

div.menupopup, div.ctxpopup

Classs for background of Menubar

background: #f0f5ff;

div.menupopup, div.ctxpopup

Classs for position of Menubar

display: block;

position: absolute;

z-index: 88000;

border: 1px outset;

div.menubar td, div.menupopup td

Classs for spacing

white-space: nowrap;

div.menubar td

Classs for borders of Menubar

border: 1px solid #eff0f3;

<%-- IE7: unable to define it with menupopup td; IE6: no transparent color --%>

div.menubar a, div.menubar a:visited, div.menubar a:hover, div.menupopup a, div.menupopup a:visited, div.menupopup a:hover

Classs for anchor in Menubar

color: black;

text-decoration: none;

Customize the Background and the cursor of Menubar

The way to customize the background and cursor of Menubar

div.menubar, div.menupopup, div.ctxpopup {
    background:pink none repeat scroll 0%;    
    cursor:crosshair;    
    padding:1px;    
}