Forum Moderators: not2easy
/* begin css */
body { background-color: #FEF8D6; }
A:link { color: blue }
A:visited { color: purple }
A:active { color: red }
A:hover { background-color:white }
a img{ color: #FEF8D6 }
/* end of css */
Here is the HTML...
<html>
<head>
<link rel="stylesheet" type="text/css" href="test.css">
</head>
<body>
<a href="afile.html">SomeText</a> The Link
<a href="afile.pdf">PDF</a>
<br>
<a href="afile.html">SomeText</a> The Link
<a href="afile.pdf"><img src="http://www.adobe.com/images/get_adobe_reader.gif"></a>
</body>
</html>
I was trying to make IE display the border like all the other browsers. I should be able to chose the color of the border surrounding the image that I chose for a link. I guess this is a limitation of IE6.
Thanks again
-Nate
My css becomes:
body
{
background-color: #FEF8D6;
}
A:link { color: blue } /* unvisited link */
A:visited { color: purple } /* visited links */
A:active { color: red } /* active links */
A:hover { background-color:white } /* hover links */
a img{
/*color: #FEF8D6;*/
border-color: #FEF8D6
}
a:hover img{
border-color: #669966
}
It’s obvious now.
Thanks for you help,
-Nate