Forum Moderators: not2easy
Now the visited links don't pick up the specified styles and instead are the browser default.
I can't see why.
Help appreciated. Please and thanks.
Here's sample CSS/HTML code (I even put it in the head so's to reduce caching issues).
<pre>
<html>
<head>
<title>link test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.nav a:link {
text-decoration: none;
color: #999;
}
.nav a:visted {
text-decoration: none;
color: #999;
}
.nav a:hover {
text-decoration: underline;
color: #000;
}
.nav a:active {
text-decoration: underline;
color: #c00;
}
--></style>
</head>
<body>
<div class="nav">
<p><a href="http://www.google.com/">one</a></p>
<p><a href="http://www.google.com/">two</a></p>
<p><a href="http://www.google.com/">three</a></p>
</body>
</html>
</pre>
Thanks. That's really good advice - and something which, in my 'what the **** is wrong - this is driving me nuts?' I completely forgot to do.
Another lesson learned.
Thanks again.
;-)