How to remove or simply not display boundary links in each image anchor? By the way, the browser settings are in compatibility mode. Answers to other questions do not allow me to solve my problem. I think because this only applies to a lower version of IE.
EDIT:
I am currently creating custom sharing buttons that my client requires.
<div> <a onClick="window.open('https://twitter.com/intent/tweet?original_referer=#shareLink#&text=#shareTitle#&tw_p=tweetbutton&url=#shareLink#','sharer','toolbar=0,status=0,width=548,height=325');" href="javascript: void(0)"> <img height="20" src="/images/chicklets/Twitter_Tweet.png" /> </a> </div> <div> <a onClick="window.open('http://www.facebook.com/sharer.php?s=100&p[title]=#shareTitle#&p[summary]=#shareDesc#&p[url]=#shareLink#&p[images][0]=images/Telos.jpg','sharer','toolbar=0,status=0,width=548,height=325');" href="javascript: void(0)"> <img height="20" src="/images/chicklets/FaceBook_Share.png"> </a> </div> <div> <a onClick="window.open('http://www.linkedin.com/shareArticle?mini=true&url=#shareLink#&title=#shareTitle#&summary=#shareDesc#','sharer','toolbar=0,status=0,width=548,height=325');" href="javascript: void(0)"> <img height="20" src="/images/chicklets/LinkedIn_Share.png"> </a> </div> <div> <a onClick="window.open('https://plus.google.com/share?url=#shareLink#','sharer','toolbar=0,status=0,width=548,height=325');" href="javascript: void(0)"> <img height="20" src="/images/chicklets/Google_PlusOne.png"> </a> </div>
CSS
a { outline : none; text-decoration: none; } a img { outline : none; } img { border : 0; border-style: none; } div { float: left; padding-right: 10px; }
Here's what it looks like with IE10:

source share