1

I am creating an 'add-this' sharing tool for my site. After clicking on the email icon, there is a yellow border around the email icon (only in chrome).

I would like to remove that yellow border. How can I?

Site: here

Chris
  • 5,882
  • 2
  • 32
  • 57
Sun
  • 59
  • 7
  • possible duplicate of [How to remove border (outline) around text/input boxes? (Chrome)](http://stackoverflow.com/questions/3397113/how-to-remove-border-outline-around-text-input-boxes-chrome) – Chris Jan 21 '15 at 14:52

2 Answers2

2

You need to add the CSS outline:none; to your link.

Chris
  • 5,882
  • 2
  • 32
  • 57
0

You can specify border-style:none;

img {
    border-style:none;
}
Kevin Lynch
  • 24,427
  • 3
  • 36
  • 37