That is all set here, using ordinary css style (I've added css comments to indicate what does what) slightly modified from the demo:
<style type="text/css">
Code:
#popitmenu{
position: absolute;
background-color: white; /*background for menu*/
border:1px solid black;
font: normal 12px Verdana;
line-height: 18px;
z-index: 100;
visibility: hidden;
}
#popitmenu a{
text-decoration: none;
padding-left: 6px;
color: black; /*color for text*/
display: block;
}
#popitmenu a:hover{
background-color: #CCFF9D; /*hover background color*/
color:blue; /*hover text color*/
}
If you want the hover color of the text to be different than the normal color for text, use the red property/value pair to set that. If you don't want the text color to change, don't use that line (remove it).
Bookmarks