How to fix Horizontal scroll on Home Page

Solved

How to fix Horizontal scroll on Home Page

Hugobrunto
Explorer
48 0 13

Hi Experts, 

 

Anyone that could help us fix this horizontal scroll? It's really annoying :'( 

It's only on the Home Page. 

 

Here's a video of our problem: 

https://streamable.com/h9ljxj 

 

Much love ❤️ 

Accepted Solution (1)
Spac-es
Shopify Partner
406 119 154

This is an accepted solution.

No problem! After many attempts I found the solution.

 

Updated Code:

<style>
  /* Prevent horizontal scrolling on mobile devices */
  @media (max-width: 767px) {
    body {
      overflow-x: hidden !important;
    }
    div#trustpilot-widget-trustbox-0 {
      display: none !important;
    }
  }
</style>

Add !important and hide the Trustpilot section

 

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

View solution in original post

Replies 4 (4)

Spac-es
Shopify Partner
406 119 154

Add this code in your theme.liquid file (Inside the <head> section):

<style>
  /* Prevent horizontal scrolling on mobile devices */
  @media (max-width: 767px) {
    body {
      overflow-x: hidden;
    }
  }
</style>

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
Hugobrunto
Explorer
48 0 13

Hi, 

 

Thanks for your response! Unfortunately it doesn't work for me 😞 

 

/Hugo Brunto 

Spac-es
Shopify Partner
406 119 154

This is an accepted solution.

No problem! After many attempts I found the solution.

 

Updated Code:

<style>
  /* Prevent horizontal scrolling on mobile devices */
  @media (max-width: 767px) {
    body {
      overflow-x: hidden !important;
    }
    div#trustpilot-widget-trustbox-0 {
      display: none !important;
    }
  }
</style>

Add !important and hide the Trustpilot section

 

 

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!
Hugobrunto
Explorer
48 0 13

Yep it works perfectly. Thank you so much ❤️