Actually, it is no different in FF. That black color will be the color of all visited links on your page as per:
Code:
A:VISITED {
color : #000000;
text-decoration : none;
font-weight: normal;
}
from your:
http://www.comcom121.org/gabby/newlets/rtb1183.css
external stylesheet. To keep that rule for links on the page in general and change it for the ones in the menu, add this to the onpage stylesheet for the menu (additions red):
Code:
#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 1px 0;
text-decoration: none;
font-weight: bold;
}
#dropmenudiv a:visited{ /*visited text color*/
color: #404E80;
}
#dropmenudiv a:hover{ /*hover background color*/
background-color: #C7CDE5;
}
Bookmarks