Destacar comentários do autor do artigo

É muito simples, ente em "DESIGN" - "EDITAR HTML" - marque expandir modelos de widgets
e procure pelo seguinte codigo:
<dd class="comment-body"><b:if cond="data:comment.isDeleted">
<span class="deleted-comment"><data:comment.body></data:comment.body></span>
<b:else>
<data:comment.body></data:comment.body>
</b:else>
</b:if></dd>
Feito isso, selecione todo este codigo e substitua por este:
 
<b:if cond="data:comment.author == data:post.author">
<dd class="blog-author-comment"><data:comment.body></data:comment.body>
</dd>
<b:else>
<dd class="comment-body"><b:if cond="data:comment.isDeleted">
<span class="deleted-comment"><data:comment.body></data:comment.body></span>
<b:else>
<data:comment.body></data:comment.body>
</b:else>
</b:if></dd></b:else></b:if>
Pronto, visualize antes e se tudo estiver ok salve e confira o resultado!