• Resolved macsuibhne

    (@macsuibhne)


    There are two things I’m wondering about but couldn’t find anything in the settings:

    01. Is there any way to increase the space between comments? I only allow individual comments, no replies to comments.

    02. Is there any way to put a divider between comments? A horizontal rule, or a string of characters (********, for example)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support gVectors Support

    (@gvectorssupport)

    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.

    Thread Starter macsuibhne

    (@macsuibhne)

    Excellent! Thanks a lot for your help.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.