You can try to fix it this way
Open templates/ja_smashboard/css/rtl/template.css file
from
.addthis_floating_style {
background: none !important;
right: -70px !important;
padding: 0;
position: absolute !important;
top: 0 !important;
width: 70px !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
}
.article-content {
font-size: 14px;
margin-right: 70px;
position: relative;
}
Change to
.addthis_floating_style {
background: none !important;
right: -30px !important;
padding: 0;
position: absolute !important;
top: 0 !important;
width: 25px !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
}
.article-content {
font-size: 14px;
margin-right: 30px;
position: relative;
}