user379888
user379888

Reputation:

Can't figure out whats causing the horizontal scroll

On this site, there is a horizontal scroll on the pages. I am unable figure out what element is causing the horizontal scroll bar to appear.

Upvotes: 1

Views: 720

Answers (2)

Yangshun Tay
Yangshun Tay

Reputation: 53119

.quote-wrapper__diagonal was rotated 3 degrees and that caused it to be longer than the page width. .slick-track is also longer. Hence, there are two elements that are longer than the page width.

Add overflow: hidden to their common parent .home-quotes and you should be good:

.home-quotes { overflow: hidden; } 

Upvotes: 2

amaclean
amaclean

Reputation: 69

The css width on your slick-track class is also set to six thousand-something pixels, which is wider than most screens

Upvotes: 1

Related Questions