Horizontal Scroll issue on Product Page in Mobile View Sense Theme

Solved

Horizontal Scroll issue on Product Page in Mobile View Sense Theme

jayesh1128
Visitor
1 0 0

Hello Sir/Ma'am Help!!

 Why my site is Horizontal Scrolling from Side in Mobile View theme is Sense.

 

Link - store.tradingneu 

1000229007.jpg

.coAmbika Store 

Accepted Solutions (3)

Moeed
Shopify Partner
5420 1463 1750

This is an accepted solution.

Hey @jayesh1128 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media (max-width: 749px) {
html, body {
overflow-x: hidden;
}
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

BSSCommerce-B2B
Shopify Partner
1723 513 577

This is an accepted solution.

@jayesh1128,

Step 1: Go to Admin -> Online store -> Theme > Edit code

Step 2: Search for the file theme.liquid

Step 3: Add this code before </body> tag

 

<style>
@media screen and (max-width: 767px){
.rte li {
    overflow: auto!important
}
}
</style>

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

exertweb
Tourist
24 7 3

This is an accepted solution.

Hello @jayesh1128 

I've check your PDP and we found the issue in product description table element. so please add below css to resolved your scroll issue.

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

 

<style>
@media screen and (max-width: 767px){
    .product__description table {
        width: 100% !important;
    }
    
    .product__description table tr td {
        width: 50% !important;
    }
}
</style>

 

 

View solution in original post

Replies 5 (5)

goldi07
New Member
27 3 3

hello @jayesh1128 

can you please share your Website URL
thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me [email protected] - Skype: live:.cid.819bad8ddb52736c -Whatsapp: +919317950519
Checkout Some Free Sections Here

Dan-From-Ryviu
Shopify Partner
9546 1919 1955

Plehi @jayesh1128 

You can solve it by adding this code to Custom CSS in Online Store > Themes > Customize > Theme settings

@media (max-width: 749px) {
html, body {
overflow-x: hidden;
}
}

- Helpful? Like and Accept solution! or Buy me coffee
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Ryviu: Aliexpress Reviews - AliExpress Reviews Importer, one-click import aliexpress reviews, export reviews to CSV file.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

Moeed
Shopify Partner
5420 1463 1750

This is an accepted solution.

Hey @jayesh1128 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media (max-width: 749px) {
html, body {
overflow-x: hidden;
}
}
</style>

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


BSSCommerce-B2B
Shopify Partner
1723 513 577

This is an accepted solution.

@jayesh1128,

Step 1: Go to Admin -> Online store -> Theme > Edit code

Step 2: Search for the file theme.liquid

Step 3: Add this code before </body> tag

 

<style>
@media screen and (max-width: 767px){
.rte li {
    overflow: auto!important
}
}
</style>

 

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

exertweb
Tourist
24 7 3

This is an accepted solution.

Hello @jayesh1128 

I've check your PDP and we found the issue in product description table element. so please add below css to resolved your scroll issue.

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

 

<style>
@media screen and (max-width: 767px){
    .product__description table {
        width: 100% !important;
    }
    
    .product__description table tr td {
        width: 50% !important;
    }
}
</style>