Using the Renew stack with a Pro footer, I notice the footer is fixed at the bottom of the page, so when a user scrolls down, the page content overlaps the footer. Upon examining the CSS, I see this:
footer.x-colophon {
position: fixed;
width: 100%;
bottom: 0;
}
I was able to fix it by overriding the CSS and unsetting the position attribute, but I’m wondering why this is the default setting? We shouldn’t have to manually hack the CSS to prevent page content from overlapping the footer.
