Archived topic
White space in comment section
5 replies · Started by Vijaykumar on November 21, 2018
There is a large gap in the comment section comments. How can we remove the white space gap as shown in the below screenshot?
https://imgur.com/HSCaNBo
I tried it editing directly in the stylesheet but it got overwritten on next plugin update. How can I add custom CSS for this?
I don't want to keep 0 padding for these sections but some reduced value so the comments will be closer.
Hi there,
this CSS:
.comment-list .comment-content {
margin-top: 0.5em;
padding: 10px 30px;
}
.comment-list .comment-body {
padding: 15px 0;
}
You can add it to the Customizer > Additional CSS or to your Child Theme Style sheet. Theme updates won't effect either of them.
hey thanks! looks good.
Just showing no gap for reply comments. see screenshot. How it can be done?
https://imgur.com/aQ2LIpf
EDIT:
Try this change to the second piece of CSS:
.comment-list .comment-body {
padding: 15px 0 25px;
}
perfect thanks!
Glad to be of help