I know there's an option to change username color by role.
How about comment box?
I hope there are two configurations to change comment box color for post author.
Hi hiyooo,
Every role in wpDiscuz code has its own classes (.wc-blog-post_author, .wc-blog-guest, .wc-blog-editor, .wc-blog-subscribe etc.). You can use them to create your custom CSS codes.
e.g. :
#wpcomm.wc-blog-author.wc-comment-label{
background-color: #331c1c !important;
}
After you write your custom codes you should put your custom code in Dashboard > Comments > Settings > Styling admin page “Custom CSS Code” textarea.
@astghik
That code you gave me is just label for author under username. I mean the comment box itself.
Box 1 for css code :
#wpcomm .wc-blog-post_author > .wc-comment-right .wc-comment-header {Background-color : # }
Box 2 for css code :
#wpcomm .wc-blog-post_author > .wc-comment-right .wc-comment-text, #wpcomm .wc-blog-post_author > .wc-comment-right .wc-comment-footer{background-color: #}
I hope it would be reflected in future updates.