Thank you stokim2012,
In screenshot, which you left, background color is different, as it’s sticky comment.
All sticky comments have such color. You can change it using custom css code. You just need to add css code in Dashboard > Comments > Settings > Styling admin page in “Custom CSS Code” textarea.
We’ll take under consideration to include feature, which allows to change background color.
I want to change the color of the square that has their usergroup title in it too.
You can change using following css code:
#wpcomm .wc-comment .wc-comment-left .wc-comment-label {
background: #00b38f !important;
color: #ffffff !important;
}
.wc-blog-guest.wc-comment-label {
background-color: blue !important;
color: #ffffff !important;
border-bottom: none;
}
.wc-blog-user.wc-blog-editor.wc-comment-label {
background-color: #331c1c !important;
color: #fff !important;
border-bottom: none;
}
wc-blog-user wc-blog-author wc-comment-label{
background-color: #331c1c !important;
color: #fff !important;
border-bottom: none;
}
.wc-blog-user.wc-blog-author.wc-comment-label{
background-color: #331c1c !important;
color: #fff !important;
border-bottom: none;
}
.wc-blog-user.wc-blog-subscriber.wc-comment-label{
background-color: #331c1c !important;
color: #fff !important;
border-bottom: none;
}