Why is my Boost theme mobile page too wide?

The width of my boost theme on the mobile side is too wide. When I pull down, it will slide to the right and there will be some blank space. I hope it can be solved.

Store URL:aolisheng-company-store.myshopify.com

@AOLISHENG ,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. In your theme.liquid file, find the (press CTRL + F or command + F on Mac)
  3. paste this code right above the tag:

Kind regards,
Diego

Thank you very much for your reply, but the problem is still not solved

@AOLISHENG

Please follow the aforementioned steps and try this instead:

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

still have that problem

@AOLISHENG

There is a typo in the code, it should be within tags:


1 Like

problem solved, thanks a lot