Hi,
my site https://eftfkw-vc.myshopify.com
on mobile scrolls left to right. I can’t find the element making it happen. Is there a code that would help?
thanks
A Shopify store owner encountered unwanted horizontal scrolling on mobile devices.
A suggested CSS fix was provided:
overflow-x: hidden to the body element in the theme’s CSS fileHowever, the original poster resolved the issue differently by identifying and removing a specific section containing images that extended beyond the viewport boundaries. The CSS code suggestion was tested but did not solve the problem in this case.
Status: Resolved through section deletion rather than CSS override.
Hi,
my site https://eftfkw-vc.myshopify.com
on mobile scrolls left to right. I can’t find the element making it happen. Is there a code that would help?
thanks
Hello,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css Add the provided code at the end of the file.
@media (max-width: 768px) {
body {
overflow-x: hidden;
}
}
Thanks I fixed I found the section overflow
Please mark the solution.
Solution was to delete a section that had images overlap the sides. The code yoj provided I tried before you replied it doesn’t seem to work but thanks