After installing the WPDiscuz plugin, I find there is a large amount of space between the end of my article and the start of the comment section. Then, there is a large amount of space between the comment section and my footer widget. How can I tighten up that space? Will this take CSS or is something else going on? If I need to add CSS, what would that code be? Thanks for any help you can offer.
Sorry. www.lifeatthemiddle.com.
Hi @latm,
This comes from your current active theme, it adds some additional padding after the article and before the comment area. To solve it, please navigate to Dashboard > Comments > Settings > Styling admin page, add the following CSS code in "Custom CSS code" textarea, save it, delete all caches, press CTRL+F5 on frontend.
.comments-area {
padding-top: 0 !important;
}
.inside-article {
padding-bottom: 29px !important;
}
Thank you Arina. I am away from my computer for a couple days but I’ll try it when I return and let you know how it worked.
Hi Arina,
That seemed to help somewhat. However, there is still too much space at the bottom - between "Subscribe" and "Recent Posts". I tried div.comments-area {
padding-bottom: 0 px
} but it had no effect.
Also, I wasn't sure what you meant by press CTRL +F5 on the front end. That did not seem to do anything.
Thanks, Mike
.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header {
padding-bottom: 0 !important;
}