Archived topic
Comment Formatting
3 replies · Started by Zad on August 13, 2018
I'm trying to edit the formatting of my comments. Here is some CSS code I currently have implemented. I'm hoping to be able to change the font size in the comments only and also to change the padding inside the comment box. Right now, there's a bit too much padding above the body text and below the body text.
.comments-title {
display: none;
}
.comment-body {
padding: 10px 0;
}
.comment .children {
margin-top: -10px;
}
.comment-content {
margin-top: 00px;
}
.entry-summary {
margin-top: 0.3em;
}
I'm also not sure if the .entry-summary is for the comments or for something else. Would appreciate some insight.
Hi there,
Give this a shot:
.comment-content {
padding: 10px;
font-size: 20px;
}
Adjust the values as needed :)
It worked! Thank you 🙂
You're welcome :)