Strange Scroll Bar for Width

Hi All,

For some reason there is a scroll bar for my sites width, wondering why this is here and how I can fix this issue, any ideas?

Perhaps it’s the image at the top of this page?
https://advinor-cpa.webflow.io/clients/private-corporation


Here is my site Read-Only: https://preview.webflow.com/preview/advinor-cpa?utm_medium=preview_link&utm_source=designer&utm_content=advinor-cpa&preview=39cb762ec80b9e03dbce8143983a9f54&mode=preview

Hi @Sneaky_Coyote,

What viewport are you experiencing the horizontal scroll bar? Is it anything below 1170px?

If so, you have set a width of 1170px on the ‘Wide Div’ element, which would result in the canvas width being dictated by that element.

Let us know if that makes any difference.

Thanks
Keiran

I had a quick look and it looks like there are a few object that are just overlapping the 100% width mark, which in turn is causing the scroll bar. To fix this without editing each element individually, add this to the <head> section of your websites custom code in the website settings.

<style>
body {
overflow-x: hidden;
}
</style>