Reputation: 59
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
Upvotes: 1
Views: 1347
Reputation: 24723
You can specify border-style:none;
img {
border-style:none;
}
Upvotes: 0