CSS link text color problem

Well…I’m having some trouble with formatting link text using CSS…Im not sure why it isn’t working. I’ve done this before in a different site. The text SHOULD be gray and when you hover over it should turn green…the links are purple instead of gray! But the weird thing is the green hover works… Depending on your browser and OS it looks different… I tried validating the CSS file and got an error. But it didn’t make sence…not to me :frowning:

My Style Sheet
http://sheffield.gomft.com/hfmcc/styles.css

The Site
http://sheffield.gomft.com/hfmcc/index.html

Thanks guys!

a:visited {
color: #808080
text-decoration: none;
}

add a ; after #808080

also, fix


.menutxt {
	color: #0000004;
	font-size: 13px;
	}

#0000004 is invalid hex code

[QUOTE=fasterthanlight™;2349094]a:visited {
color: #808080
text-decoration: none;
}

add a ; after #808080

also, fix


.menutxt {
	color: #0000004;
	font-size: 13px;
	}

#0000004 is invalid hex code[/QUOTE]

Thank you very much! :smiley:

Also, remember the order must be a:link{}, a:visited{}, a:hover{}, a:active{}