.ModuleTitle_MenuBar
Sets the height of the menu bar section. This is highlighted by the red lines below.
Note that the menu appears directly beneath the menu bar. The default.css file uses two properties which cause invalid CSS code to the
W3C standards. These elements are:
cursor: hand;
height: 16;
cursor: hand; is not considered as compliant code and
cursor: pointer; should just be used (this changes the mouse to a hand sign when hovering over the module settings menu, note however that if
cursor: hand; is removed, in the Internet Explorer 5.5 browser, the mouse will not use the hand cursor.
Read further info here.)
height: 16; needs to have the measurement unit added, ie:
height: 16px;Setting a background-color does not have any effect, so the transparent statement in the default.css file can also probably be removed without any problems.
Example:
.ModuleTitle_MenuBar
{
cursor: pointer;
height: 50px;
}
The default.css code:
.ModuleTitle_MenuBar {
cursor: pointer;
cursor: hand;
height:16;
background-color: Transparent;
}