Hey guys,
I'm trying to make a link appear as white text in all states (idle, hover, visited, click)
but for some reason my idle state does not conform to my CSS. Could someone have a look and maybe help me solve the issue?
here's my CSS:
a.nav:link {
color: white;
text-decoration: none;
font-size: 135%;
font-weight: bold
}
a.nav:visited {
color: white;
text-decoration: none;
font-size: 135%;
font-weight: bold
}
a.nav:hover {
color: white;
text-decoration: none;
font-size: 135%;
font-weight: bold
}
a.nav:active {
color: white;
text-decoration: none;
font-size: 135%;
font-weight: bold
}
And here is my HTML (The css is properly linked, I am not using any css for the <p> element):
<p><a href="ishiyama.html" class="nav"> Home</a></p>
Thanks,
trixma