Hi -
Is there a way to make the links change color? I have the code in my style sheet and it's not working - links don't change color:
a:link {
text-decoration: none;
color: #FFFFFF;
}
a:visited {
text-decoration: none;
color: #D8CFA7;
}
a:hover {
text-decoration: none;
color: #91B239;
}
a:active {
text-decoration: none;
color: #D8CFA7;
}
body {
margin-top: 0px;
}
Thanks!