when using right to left languages on every page there is sharebar a white space will be added to the left of the screen
I have narrowed it down to the hiding mechanism used on #stwrapper basically the left -999 will break the page if its replaced with right -999 it will be fixed

this error only appears on firefox

Comments

sari.abueitah’s picture

Priority: Minor » Normal

I can confirm it on ie 8 7 and 6 also a fix will be great

gaxze’s picture

This is also present for me.

there is a some additional markup added at the bottom:

<div style="position: absolute; top: -1999px; left: -1988px;">ShareThis Copy and Paste</div>

Also this is a problem which occurs on an arabic translated web page.

EDIT:

I've realised that there are two values which are left: -999px & left: -1988px.

When I turn the page into arabic - the website becomes right to left. If i change those left's to rights we have a fix.

Next problem is that there isnt anything in the module which prints these two problem divs.

gaxze’s picture

I've found a message on sharethis's forums:
http://support.sharethis.com/customer/en/portal/questions/1178196-share-...

I've also got a hacky-ish temp fix for those in desperate need.

Add this to a javascript file in your theme:

setTimeout(function(){
        	$("div:contains('ShareThis Copy and Paste')").remove();
      	}, 1000);

Essentially it waits a period of time and then removes the div containing that text.

avpaderno’s picture

Version: 7.x-2.5 » 7.x-2.x-dev
Issue summary: View changes