Image link problem
Click on the share button and share buttons will show up but i can't click on the share button images like the facebook share. the html tag is, <a href="facebook"></a>
I have no problems in other browsers, just firefox.
Please help.
由chibib0于
被采纳的解决方案
Looks like a problem with the span with class="addthis_toolbox addthis_default_style" that isn't closed and has the two last buttons because of that in Firefox. That SPAN covers all the links because it is positioned just before those buttons in Firefox.
You can select that part of the page and use View Selection Source in the right-click context menu.
You can also use the DOM Inspector to see what Firefox makes of that code.
- DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/
所有回复 (3)
选择的解决方案
Looks like a problem with the span with class="addthis_toolbox addthis_default_style" that isn't closed and has the two last buttons because of that in Firefox. That SPAN covers all the links because it is positioned just before those buttons in Firefox.
You can select that part of the page and use View Selection Source in the right-click context menu.
You can also use the DOM Inspector to see what Firefox makes of that code.
- DOM Inspector: https://addons.mozilla.org/firefox/addon/dom-inspector-6622/
Thanks! Found the problem.. Its the style..
You're welcome