.ModuleTitle_MenuItemSel
Styles the menu item when hovering over a menu item with the mouse. In this example we have increased the font size to further emphasise the styling options, but in most cases you would set the font size to be the same as the other menu items.
Note: For valid CSS code to
W3C standards, you need to remove:
cursor: hand; (
Read further info here.)
.ModuleTitle_MenuItemSel
{
cursor: pointer;
cursor: hand;
color: black;
font-family: Tahoma, Arial, Helvetica;
font-size: 20px;
font-weight: bold;
font-style: normal;
background-color: yellow;
}