Re: Page width in product page in mobile is too big

Solved

Page width in product page in mobile is too big

Etay56
Excursionist
31 0 5

as you can see in the picture below its possible in mobile to zoom out and make the product page fit half of the screen, I would like to get it fix

Important to mention, it happens only when someone zoom out on purpose, not immediately when the product page is opened
but I would like to disable this, thanks in advance
store link:

https://7c8266-b4.myshopify.com/

IMG_B1989D10B10B-1.jpeg

 

 

Accepted Solution (1)

PageFly-Noah
Shopify Partner
1317 233 280

This is an accepted solution.

This is Noah from PageFly - Shopify Page Builder App

 

Hi @Etay56  Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag </body>

 

<style>
  @media screen and (max-width: 767px){
   main{
     overflow-x: hidden !important;
   }
 }
</style>

 

Hope my solution will help you resolve the issue.

 

Best regards,

Noah | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 2 (2)

PageFly-Noah
Shopify Partner
1317 233 280

This is an accepted solution.

This is Noah from PageFly - Shopify Page Builder App

 

Hi @Etay56  Please add code here to fix it:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid
Step 3: Add code above the tag </body>

 

<style>
  @media screen and (max-width: 767px){
   main{
     overflow-x: hidden !important;
   }
 }
</style>

 

Hope my solution will help you resolve the issue.

 

Best regards,

Noah | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

Etay56
Excursionist
31 0 5

It fixed it, thank you very very much
l searched for a solution for a long time.