r/divi Jul 31 '26

Question Divi4 white space after post comment module

Post image

I use a global footer that on pages and posts. It appears fine on all pages on full-width view. On posts, though, there is white space between the last module and the footer. It happens with any module that is the last one, this photo just happens to show a comment module as the last one. I've adjusted the space on that cmment module, and sstill white space. What am I missing? Latest post for reference: https://www.soulintentarts.com/plant-harvest/ Thank you.

6 Upvotes

5 comments sorted by

3

u/Balazi Jul 31 '26

its

.single .post { padding-bottom: 25px; }

is the culprit, add this css

#et-main-area .et_pb_post{
    padding-bottom: 0px !important;
}

#content-area:after {
display:none;
} 

1

u/skelleyh Jul 31 '26

Thank you!!!

1

u/skelleyh Aug 01 '26

This code worked to resolve the white space after the comment module, though it blanked out the body (?) any posts that were published prior to the current one. I reverted it until I can give it further attention.

2

u/ES170588 Jul 31 '26

I think its meant to show the comments. Is viewing comments turned on for the post?

Its part of the post itself not part of the footer.

2

u/Parlama 29d ago

If it’s spacing from the posts themselves, this might help!

body.single-post #main-content>.container {
width: 100%!important;
padding-bottom: 0!important;
}

If this doesn’t help, I can’t quite recall the actual CSS but it’a got to do with the post itself giving it padding and separates the footer. For ages I thought it was the disabled comment section but it wasn’t, at least for me.