You can make changes by creating a child theme 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() ?>
(@melodyatplay)
11 years, 3 months ago
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!