• samoreen

    (@samoreen)


    Hi,

    Is there a way to easily customize the comment section ? Comments are taking too much space. There is unnecessary information displayed and the author block should use a smaller font.

    Thanks in advance.

    Patrick

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @samoreen,

    There’s no dedicated option to configure the Comment section, so you might need custom CSS for that. Could you please be more specific about what you would like to customize?

    Kind regards,
    Herman 🙂

    Thread Starter samoreen

    (@samoreen)

    Hi Herman,

    > Could you please be more specific about what you would like to customize?

    As mentioned in the thread title, I’d like the comment section to eat less real estate in order to make comment pages shorter. This can be probably achieved by controlling font size for some items, space between comments, etc.

    Thanks.

    Patrick

    Hi @samoreen,

    Please also share your live site URL. I or someone from the community might help you with custom CSS.

    Kind regards,
    Herman 🙂

    Thread Starter samoreen

    (@samoreen)

    Hi Herman,

    Our site is currently under construction and is not accessible from the outside.

    It seems that I have taken back some control by using custom CSS :

    .entry-content p {
      margin-bottom: 0.3em;
      margin-top: 0;
    }
    
    .post p{
    	line-height: 1.5em;
    	padding-bottom: 1em;
    }
    
    .page p {
    	line-height: 1.5em;
    	padding-bottom: 1em;
    }

    Patrick

    Hi @samoreen,

    Good to know that. However, it looks like your CSS will also affect not only the comments section but also the content.

    Try using the below Class instead and your CSS shall affect only the comments.

    .ast-comment-content p {
        // your css code here
    }

    I hope it could help.

    Kind regards,
    Herman 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Comment section takes too much space’ is closed to new replies.