Title: Comment Count and Hover Color
Last modified: August 22, 2016

---

# Comment Count and Hover Color

 *  Resolved [melodyatplay](https://wordpress.org/support/users/melodyatplay/)
 * (@melodyatplay)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/comment-count-and-hover-color/)
 * Is there a way to add a comment count to each post?
 * Also, is there a way to change the hover color of post titles, category links
   in posts, and the site title somewhere in the CSS?
 * Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Theme Author [cats_456](https://wordpress.org/support/users/cats_456/)
 * (@cats_456)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/comment-count-and-hover-color/#post-5683536)
 * You can make changes by creating a child theme [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes).
 * This is a css for hovers:
 *     ```
       .site-title a:hover {
       	color: #00cc00;
       }
   
       .entry-header .entry-title a:hover {
       	color: #339900;
       }
   
       .category-list a:hover {
       	color: #339900;
       }
       ```
   
 * You can add this code for displaying the link and number of comments to content.
   php:
 *     ```
       <?php if ( comments_open() ) : ?>
           <div class="comments-link">
       	<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
       	</div><!-- .comments-link -->
       <?php endif; // comments_open() ?>
       ```
   
 *  Theme Author [cats_456](https://wordpress.org/support/users/cats_456/)
 * (@cats_456)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/comment-count-and-hover-color/#post-5683697)
 * Added in 1.0.6.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Comment Count and Hover Color’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/jolene/1.1.6/screenshot.png)
 * Jolene
 * [Support Threads](https://wordpress.org/support/theme/jolene/)
 * [Active Topics](https://wordpress.org/support/theme/jolene/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/jolene/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/jolene/reviews/)

## Tags

 * [comment](https://wordpress.org/support/topic-tag/comment/)
 * [hover](https://wordpress.org/support/topic-tag/hover/)

 * 2 replies
 * 2 participants
 * Last reply from: [cats_456](https://wordpress.org/support/users/cats_456/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/comment-count-and-hover-color/#post-5683697)
 * Status: resolved