Hi i have weird problem that appears on my site only in the product page i got this left white line margin that on the left side on the screen and i done know why is that
i check other pages and it ok without this problem
pls if someone could help it will be great
i upload 2 images of the problem on the product page and 1 image on regular page without the problem
You see a bit of the second image because that’s a function of your product image slider. It lets visitors know there are more reviews, so they can swipe to see more photos. But you don’t want them to miss it; you can add this code to Custom CSS in Theme settings.
The actual root cause of this issue is the facebook reccomend widget: Screenshot by Lightshot
You can fix it by the whole issue by adding below css in to your theme css file:
@media screen and (min-width: 750px) {
.product__info-container>*:first-child {
white-space: normal !important;
height: 40px !important;
line-height: 1.2 !important;
}
}