I want to be able to link my image. Click on it. Go back to the page and see that it was visited.
I want my visited images to have a different color border when I go back.
My code:
a:link img{border-color:#FFF; border-style:solid; border-width:1px;}
a:hover img{border-color:#03F; border-style:solid; border-width:1px;}
a:visited img, a:active img{border-color:#036; border-style:solid; border-width:1px;}
Any ideas would be appreciated.