Reputation: 1043
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
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; }
Upvotes: 1
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