The best comment highlighting plugin around
Upload and activate the plugin as normal.
To use you will need a smattering of html/ php knowledge and some kick ass css-fu. I did consider trying to automate the html side of things but decided that since people format comments differently it would be worth giving everyone the choice to work the way they want too.
Basically all you need to do is use the php command "bm_commentHighlight()" to get the class for the current comment (within the comment loop). You can then print/ echo these in any way you want.
Example
<?php foreach ( $bm_comments as $comment ) { $commentClass = bm_commentHighlight(); ?> <li class="<?php echo $commentClass; ?>"> <?php comment_text(); ?> </li> <?php } ?>
Classes
When you call the function you will be returned a string containing a series of classes you can use to style your comments. The classes are as follows...