Ok, first of all, the 6.x.1.x didn't work at all (JS errors in FF 3.6).

The 6.x.2.x version causes a horizontal scrollbar to appear. I believe it has to do with CSS style 'visibility: hidden'. When I changed this to 'display: none' - the horizontal scrollbars went away. Visibility:hidden doesn't really remove the DIV like display: none does. So if you have a -999em DIV with visibility:hidden, it will actually really put the DIV at -999em causing a horizontal scrollbar. At least in FF 3.6

Comments

ahmadshakil’s picture

We were able to solve this issue by changing buttons.js

We first downloaded buttons.js from https://ws.sharethis.com/button/buttons.js and added following line at the start of js

$("body").css("overflow-x","hidden");

and the included buttons.js locally.

avpaderno’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

I am closing this issue, since Drupal 6 isn't supported.