I updated my blog comments from the Hemingway default to a more iconic design.
A post about blog comments that I saw a few weeks ago inspired me to use the “big number” idea for my own comments.
I also enabled Gravatars and have highlighted my own comments when I make them. I have posted the comment loop and the relevant comment CSS in case anyone else wants to use this idea.
<?phpif($comments):?> <ol id="comments"><?php$i=1?><?phpforeach($commentsas$comment):?> <li id="comment-<?phpcomment_ID()?>" class="<?phpechoget_comment_author_email()==get_the_author_email()?' blog-author':$oddcomment?>"> <cite> <span class="author"><?phpcomment_author_link()?></span> <span class="date"><a href="#comment-<?phpcomment_ID()?>"><?phpcomment_date($hemingway->date_format().'.y')?> / <?phpcomment_date('H.i')?></a></span> <span class="gravatar"><?phpechoget_avatar($comment,$size='80');?></span> </cite> <div class="content"> <span class="number"><?phpecho$i?></span><?phpif($comment->comment_approved=='0'):?> <em>Your comment is awaiting moderation.</em><?phpendif;?><?phpcomment_text()?> </div> <div class="clear"></div> </li><?php$i++;?><?php/* Changes every other comment to a different class */if('alt'==$oddcomment)$oddcomment='';else$oddcomment='alt';?><?phpendforeach;/* end for each comment */?> </ol><?phpelse:// this is displayed if there are no comments so far ?><?phpif('open'==$post->comment_status):?> <!-- If comments are open, but there are no comments. --><?phpelse:// comments are closed ?><!--Ifcommentsareclosed.--><pclass="nocomments">Commentsareclosed.</p><?phpendif;?><?phpendif;?>