paulorlowski
Programmer
My content area has a white background so I want blue links, red after the link has been visited. My menu frame on the left has a black background so I want white links, red after visited.
The problem is that they both links display purple after being visited.
Any ideas?
Paul Orlowski
<html>
<head>
<title>links</title>
<STYLE TYPE="text/css">
<!--
A:link { color: #blue }
A:visited { color: #red }
A.nav:link { color: #white }
A.nav:visited { color: #gray }
//-->
</STYLE>
</head>
<body>
<table>
<tr>
<td width="30%" bgcolor="#000000">
<A HREF="menulink.htm" CLASS="nav">menu link</A>
</td>
<td width="70%" bgcolor="#FFFFFF">
<a href="contentlink.htm">content link</a>
</td>
</tr>
</table>
</body>
</html>
The problem is that they both links display purple after being visited.
Any ideas?
Paul Orlowski
<html>
<head>
<title>links</title>
<STYLE TYPE="text/css">
<!--
A:link { color: #blue }
A:visited { color: #red }
A.nav:link { color: #white }
A.nav:visited { color: #gray }
//-->
</STYLE>
</head>
<body>
<table>
<tr>
<td width="30%" bgcolor="#000000">
<A HREF="menulink.htm" CLASS="nav">menu link</A>
</td>
<td width="70%" bgcolor="#FFFFFF">
<a href="contentlink.htm">content link</a>
</td>
</tr>
</table>
</body>
</html>