user3304303
user3304303

Reputation: 1043

Why extra space on right side of footer?

On this site, if you view in under 1024px wide screen (ideally use Chrome's mobile viewer for iPhone 5 or 6), there is white space on the right side of the footer and I can't figure out how to get rid of it (i.e make the green fill up the full space), without screwing up stuff above it.

Any ideas on which CSS can be altered/added to fix this would be super appreciated.

Upvotes: 0

Views: 229

Answers (2)

Alex
Alex

Reputation: 35409

That's the scrollbar's silhouette. Your content's overflowing the footer:

Adding the following will remedy the issue:

.t3-wrapper { overflow-y:hidden; }

enter image description here

Upvotes: 1

CreMedian
CreMedian

Reputation: 803

You have a rule on the body tag for overflow-x:hidden !important -- all you need to do is put the same rule on the html tag. Like so:

html,body{width:100%;overflow-x:hidden !important;}

Cheers!

Upvotes: 1

Related Questions