I'm using some images as links and set up the decoration as none in CSS. It works fine in FF but in this damn IE I keep having a blue border changed to purple when the link is visited.
What code should I put to get rid of this border?
Thanks
Printable View
I'm using some images as links and set up the decoration as none in CSS. It works fine in FF but in this damn IE I keep having a blue border changed to purple when the link is visited.
What code should I put to get rid of this border?
Thanks
Hi,
you could try adding something like this to your CSS,
Code:a img {
border: 0 none;
}
Perfect! Thanks!