I'm trying to style these links:
<a class="sub" href="#">Email Updates</a>
<a class="sub" href="#">RSS Updates</a>
With this CSS:
.sub:link, .sub:visited{height: 50px; width: 308px; background-color: #669900; line-height: 50px; margin: 0 0 0 -15px; font-size: 35px; font-family: "Helvetica", sans-serif; color: #FFFFFF; text-decoration: none;}
.sub:hover{background-color: #336600;}
Do you see anything incorrect? All the style being applied to my links is my default,which is this:
a{
float: none;
color: #669900;
text-decoration: underline;
}
And I was sure to put that BEFORE my ".sub" styles. Any ideas? Thanks!