how can i fix this issue
Hi there,
To fix the overflowing issue, you can use the below CSS:
@media (max-width:768px) {
body {
overflow-x: hidden !important;
}
}
Adding the above at the end of your theme.css file should be working as expected.
Cheers!
Hi @Oguzsanci ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Insert this code above tag:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()
Hello @Oguzsanci
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
- Here is the solution for you @Oguzsanci
- Please follow these steps:
-
Then find the base.css or theme.css file.
-
Then add the following code at the end of the file and press ‘Save’ to save it.
@media only screen and (max-width: 600px) {
body {
overflow: hidden !important;
}
}
- Here is the result you will achieve:
- Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.


