分享此按钮图像
请参阅http://www.tuxx.nl/internationaal/vliegafstanden/internationaal/。现在向下滚动,您会看到一个按钮栏和一个带有 Doorsturen
的按钮。现在,它在 Chrome、Firefox 中运行良好,但在 Internet Explorer 8 中您可以看到电子邮件图标。我查看了它的来源,发现 Sharethis 会自动将图像放入按钮内。我试图摆脱它,但没有成功。如何删除该图像/图标?
See http://www.tuxx.nl/internationaal/vliegafstanden/internationaal/. Now scroll down and you see a button bar and one button with Doorsturen
on it. Now, it works fine in Chrome, Firefox, but in Internet Explorer 8 you can see an e-mail icon. I looked where it came from and I saw that Sharethis automatically puts an image inside the button. I tried to get rid of that, but that didn't work. How can I remove this image/icon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 firebug 查看它是否有类,并使用 css 通过
display:none;
隐藏它。如果它没有任何类/id,你可以尝试使用 css 选择器
img[src ="/*YOUR IMAGE SRC*/"
为了更好地帮助您,我需要查看一些代码;)
Use firebug to see if it has classes and use css to hide it with
display:none;
If it does not have any class/id you could try to catch it with css selector
img[src="/*YOUR IMAGE SRC*/"
To better help you I need to see some code ;)