Pretty new to CSS and having small problem getting CSS to display properly in table. Sure I am doing something so simple it isn't funny. Limited sleep last 24-48 hours doesn't help. CSS shows up on rest of page correctly but in table defaults to original colors set in Body tag. Have tried taking out, but PC defaults take over. Also have attempted changing to class, but it didn't appear to like that either. Code below
<style type="text/css">
<!--
a:link {
color: #E2E7F1;
text-decoration: none;
}
a:visited {
color: #E2E7F1
cursor: crosshair;
text-decoration: none;
}
a:active {
color: #E2E7F1;
cursor: crosshair;
text-decoration: none;
}
.nav a:link {
color: "White"
cursor: crosshair;
text-decoration: none;
}
.nav a:visited {
color: "White"
cursor: crosshair;
text-decoration: none;
}
.nav a:active {
color: "White"
cursor: crosshair;
text-decoration: none;
}
-->
</style>
</head>
<body background="bground2.jpg" link ="#E2E7F1" vlink="#E2E7F1" alink="#E2E7F1">
---More code for page not shown here to include Buttons and links---
<table width="80%" cellspacing="0" cellpadding="0" border="1" align="center" >
<tr>
<td bgcolor="white" align="center"><a href="IVX20.html" class="nav"><img src ="smIVX20.jpg"></a></td>
<td bgcolor="white"><font face="VERDANA" font color="000080"><b>Prod Name</b><br><br>Some verbage.</font></td>
</tr>
<br>
<hr width="80%" size="2" color="#000080">
<style type="text/css">
<!--
a:link {
color: #E2E7F1;
text-decoration: none;
}
a:visited {
color: #E2E7F1
cursor: crosshair;
text-decoration: none;
}
a:active {
color: #E2E7F1;
cursor: crosshair;
text-decoration: none;
}
.nav a:link {
color: "White"
cursor: crosshair;
text-decoration: none;
}
.nav a:visited {
color: "White"
cursor: crosshair;
text-decoration: none;
}
.nav a:active {
color: "White"
cursor: crosshair;
text-decoration: none;
}
-->
</style>
</head>
<body background="bground2.jpg" link ="#E2E7F1" vlink="#E2E7F1" alink="#E2E7F1">
---More code for page not shown here to include Buttons and links---
<table width="80%" cellspacing="0" cellpadding="0" border="1" align="center" >
<tr>
<td bgcolor="white" align="center"><a href="IVX20.html" class="nav"><img src ="smIVX20.jpg"></a></td>
<td bgcolor="white"><font face="VERDANA" font color="000080"><b>Prod Name</b><br><br>Some verbage.</font></td>
</tr>
<br>
<hr width="80%" size="2" color="#000080">