htown
1
Man, i must be really rusty but I can not figure out why when I put this code in my css, the links on the site remain blue and purple (default)
a{
font-color:#000;
text-decoration:none;
}
a:hover{
font-color:#cd7b29;
text-decoration:underline;
}
Link to web site with issue
Man thanks,
Houston
ralphm
2
It should just be “color”, rather than “font-color”:
a{
color:#000;
text-decoration:none;
}
a:hover{
color:#cd7b29;
text-decoration:underline;
}
htown
3
Oh Crap . . Way too late I guess. LOL
Thanks for not giving me a hard time on that one.
ralphm
4
I’d be too much of a hypocrite, as I make mistakes like that all the time. 