WordPress : Highlighting author comment and reply


In WordPress 2.7 and later, you are able to Highlight author comment and reply to differentiate from others with styling.

All you need to create a class in CSS. Put this to class at the end of CSS file as it does not get override by other styling parameter.

li.bypostauthor
{
background-color: #abcdef;
/* your additional styling */
}

Leave a comment