You can see the huge scroller only on the product pages when the dir=rtl, because only the product pages have this js in them:
Code: Select all
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>
This is actually your sharing option of the product pages: facebook, twiter, e-mail...
A quick and easy solution is simply to remove the following lines from your product.tpl file (the file is located at:htdocs\catalog\view\theme\default\template\product):
Code: Select all
<div class="share"><!-- AddThis Button BEGIN -->
<div class="addthis_default_style"><a class="addthis_button_compact"><?php echo $text_share; ?></a> <a class="addthis_button_email"></a><a class="addthis_button_print"></a> <a class="addthis_button_facebook"></a> <a class="addthis_button_twitter"></a></div>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>
<!-- AddThis Button END -->
</div>
This will simply remove all of add this componets from your product page and allso will fix the scroller problem!
A more difuclt solution is to change or redirect the js file in order for it to fit dir=rtl.
That's it! hope it helped you!
