tags:

views:

45

answers:

3

Client does not like the dotted border. I like to leave it there for accessibility reasons. :/

I guess I have to though because the client asked, how would I?

A: 

you can use

img { border: 0 }

to do it. Put that into your css file or add to the HTML file inside <style> </style>

If they are referring to the dotted border when the image is the active link, then use

img, img:active { border: 0 }
動靜能量
Nope still there.
omnix
+5  A: 
a {
  outline: 0;
}
Damien
outline: none; to be precise
Rimantas
A: 
a {outline:none;}
Rocket Ronnie