zencart/documentation

White band below footer

simon1066 opened this issue · 5 comments

Although more noticeable on large window sizes a white band has appeared below the footer. I think this was introduced with the addition of the footer's ADA/WCAG link. I'll try to take a look once I've finished with the foldable sidebar menu.

happens in full screen mode only with Chrome. Not visible in Mobile.

Quickest fix is
.bg-dark {background-color:none;}

Or, if you want the colors to remain as is
.container-fluid.td-default.td-outer {background-color: #403f4c;}

Also in Firefox at various screen sizes. Not sure about the first option, prefer the same background colour as the rest of the footer. Couldn't get the second option to work though.

Works from inspect but not "in the wild" using Stylus.

Even tried body '{bsackground-color:#403f4c;}' but it only works from inspect (F12) as well.

Can't find it in the CSS we changed before or in any of the stylesheets at assets/scss/

I think that removing the min-height (two occurrences) from the footer style should do it . I'll test a bit more and PR it.

I noticed this too. Thanks for fixing, guys.