Hi,
01. Is there any way to increase the space between comments? I only allow individual comments, no replies to comments.
You can use the following CSS:
.wpd_comment_level-1 {
padding-bottom: 35px;
}
02. Is there any way to put a divider between comments? A horizontal rule, or a string of characters (********, for example)
You can try one of the following CSS options and choose the one you prefer. You can also customize them as needed:
Option 1: Divider line
.wpd_comment_level-1:after {
content: “”;
display: block;
width: 100%;
border-bottom: 2px dashed black;
margin-top: 10px;
}
Option 2: Text-style divider
.wpd_comment_level-1:after {
display: block;
width: 100%;
content: “***************”;
letter-spacing: 2px;
overflow: hidden;
white-space: nowrap;
}
The CSS code should be inserted in the Dashboard > Comments > wpDiscuz > Settings > Styles and Colors admin page ” Custom CSS Code” textarea.
Please make sure to clear all caches before checking the result.
Excellent! Thanks a lot for your help.