I got a problem, i dont know what im doing wrong, but my CSS Classes doesn’t take effect at all, if some1 can look at my codes and tell me what is wrong i’d be thankful
css codes
.navi a:link
{
color: #FFFFFF;
background-color: #009933;
font-size: 20px;
border: 5px outset #00FF00;
font-family: sans-serif;
text-decoration: none;
}
.navi a:hover
{
color: #FFFFFF;
background-color: #009933;
font-size: 20px;
border: 5px inset #00FF00;
font-family: sans-serif;
text-decoration: none;
}
.navi a:visited
{
color: #FFFFFF;
background-color: #009933;
font-size: 20px;
border: 5px outset #00FF00;
font-family: sans-serif;
text-decoration: none;
}
html Page code
<table align="right" border="0" cellspacing="0" cellpadding="0" width="94%">
<tr><td width="10%"><a class="navi" href="english.htm">English</a></td>
<td width="10%"><a class="navi" href="aboutus.htm">על העמותה</a></td>
<td width="10%"><a class="navi" href="volunteer.htm">התנדבות</a></td>
<td width="10%"><a class="navi" href="donations.htm">תרומות</a></td>
<td width="10%"><a class="navi" href="links.htm">קישורים</a></td>
<td width="10%"><a class="navi" href="gallery.asp">גלריה</a></td>
<td width="10%"><a class="navi" href="cats.asp">אמץ חתול</a></td>
<td width="10%"><a class="navi" href="dogs.asp">אמץ כלב</a></td>
<td width="10%"><a class="navi" href="Home.asp">דף הבית</a></td></tr>
</table>