Can't get rid of space below footer

I’m working in Wix Studio and the footers on all the pages of my site look correct except for one. On this one page, there is space below the footer. When the browser window is wider, the space grows.

I’ve checked for any hidden elements in the layers panel and found nothing. The page itself is relatively long, so it’s not adding space below the footer to account for a shorter page. There is no padding around the footer and the footer is a fixed height.

Can you share a link to the site? Probably quickest way to figure out what’s going on - feel free to send it via Personal message :slight_smile:

Sure, here’s the page I’m having trouble with:

SERVICES | Pure Development

I think it’s the bottom section. It’s a mismatch between the section height and the CSS grid.

Change the section height at the top of the inspector to Auto from the fixed size it currently has, and then drag the section height on the stage up, and you should be set

I changed the section height of the “Vertical Development” section to Auto. This got rid of the space below the footer, but now there’s space between the Vertical Development section and the footer, and the space grows with the width of the viewport.

I tried adding a maximum height to the Vertical Development section, but then it reverted back to the same issue of space below the footer. Is there a way to prevent this?

SERVICES | Pure Development

Yes, if you scroll down in the inspector, you’ll see something related to CSS Grid - the row is likely something along the lines of minmax(640*, auto). The 640* is the Wix Studio responsive pixel, which is why it grows and shrinks. Change that to auto too (I think), and it will “hug” the content inside the section

Here’s what I changed the settings to, but now the space is below the footer again:

I also tried changing the Min/max to Auto and it resulted in the same issue.

SERVICES | Pure Development

In which case, it’ll be something within that section - if you have a container within that section, it may be that it’s also doing the same thing, which pushes the bottom of the section out

I applied the same settings to the container and it worked! Thanks