For some reason the regular links within my table are not using my a:link, a:visited, etc.. standard css code..
But links outside of the table cells are using the css..
It's like something is overwriting it, but I can't figure out what it is.. can someone take a look please?
=========================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-color: #D0D9D7;
}
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
a:link {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0000FF;
}
a:visited {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0000FF;
}
a:active {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0000FF;
}
a:hover {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #FF0000;
}
-->
</style>
</head>
<body>
<p> </p>
<table width="80%" style="border: 1px solid #000000" align="center" cellpadding="0" cellspacing="3">
<tr>
<td><div align="center">banner</div></td>
</tr>
<tr>
<td bgcolor="#A0B1AD"><div align="center"><img src="spacer.gif" width="1" height="5"></div></td>
</tr>
<tr>
<td><p align="center"> </p>
<p align="center">contents</p>
<p align="center"> </p></td>
</tr>
<tr>
<td bgcolor="#A0B1AD"><div align="center"><img src="/spacer.gif" width="1" height="1"></div></td>
</tr>
<tr>
<td><div align="center">
<a href="index.html">Home</a> •
<a href="link1.htm">Link1</a> •
<a href="link1.htm">Link2</a> •
<a href="link1.htm">Link3</a> •
<a href="link1.htm">Link4</a></div>
</td>
</tr>
<tr>
<td bgcolor="#A0B1AD"><img src="/spacer.gif" width="1" height="1"></td>
</tr>
<tr>
<td><div align="center">Copyright ©2004</div></td>
</tr>
</table>
<p><a href="linklink.htm">sdfsdf</a></p>
<p> </p>
</body>
</html>
================================================
Thanks in advance!
But links outside of the table cells are using the css..
It's like something is overwriting it, but I can't figure out what it is.. can someone take a look please?
=========================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-color: #D0D9D7;
}
body,td,th {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
}
a:link {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0000FF;
}
a:visited {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0000FF;
}
a:active {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #0000FF;
}
a:hover {
color: #333333;
text-decoration: none;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #FF0000;
}
-->
</style>
</head>
<body>
<p> </p>
<table width="80%" style="border: 1px solid #000000" align="center" cellpadding="0" cellspacing="3">
<tr>
<td><div align="center">banner</div></td>
</tr>
<tr>
<td bgcolor="#A0B1AD"><div align="center"><img src="spacer.gif" width="1" height="5"></div></td>
</tr>
<tr>
<td><p align="center"> </p>
<p align="center">contents</p>
<p align="center"> </p></td>
</tr>
<tr>
<td bgcolor="#A0B1AD"><div align="center"><img src="/spacer.gif" width="1" height="1"></div></td>
</tr>
<tr>
<td><div align="center">
<a href="index.html">Home</a> •
<a href="link1.htm">Link1</a> •
<a href="link1.htm">Link2</a> •
<a href="link1.htm">Link3</a> •
<a href="link1.htm">Link4</a></div>
</td>
</tr>
<tr>
<td bgcolor="#A0B1AD"><img src="/spacer.gif" width="1" height="1"></td>
</tr>
<tr>
<td><div align="center">Copyright ©2004</div></td>
</tr>
</table>
<p><a href="linklink.htm">sdfsdf</a></p>
<p> </p>
</body>
</html>
================================================
Thanks in advance!