HOWTO: Add a Custom Comment Class to WordPress
Ever need to add your own class to your WordPress comment template but not sure how because of the function comment_class that controls the classes? Check out the function comment_class and you will see adding your own custom classes very easily.
-
<?php comment_class('yourcustomclasshere'); ?>
Allow this sounds pretty basic - it is a lifesaver for doing a lot of customizations.

