CommentLuv is a must have WordPress plugin. It’s a nice way of rewarding your blog readers who leave a comment on your blog because it displays a prominent link back to their last blog post. Cool, isn’t it?
But I don’t like the way it displays my commenters’ last blog post. Maybe it would be great if I could edit the CommenLuv CSS so I could customize or style it.
I noticed in Firebug that the CommentLuv style sheet is located in ../wp-content/plugins/commentluv/style/cl_style.css and .cluv has this default style:
.cluv {
border:1px solid #fff;
padding: 5px;
display: block;
font-size: 100% !important;
text-transform: none !important;
}
that looks like this
Although the default style has a white border (border:1px solid #fff)
it’s invisible in my comment box because it also has a white background.
Styling CommenLuv CSS
I tried putting background color, top margin and different border color with rounded corner, and presto! Here’s the result. Just the way I like it.
Here’s the code to style my commentator’s last blog post.
.cluv {
margin-top:15px;
padding: 5px;
border:1px solid #FFCCCC;
background:#F1DCC1;
display: block;
font-size: 100% !important;
text-transform: none !important;
border-radius:5px;
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
-webkit-border-radius: 5px;
If you want you can copy-paste this code and replace the default .cluv styles. Just change the border, margin or background color to your preference. After editing cl_style.css, upload it to your CommentLuv’s plugin folder – ../wp-content/plugins/commentluv/style.
There you go. Don’t forget to backup the original cl_style.css first if you want to edit it, so you have something fresh to work on if things don’t turn out right. Anyway, this is uber easy, I don’t think you’ll have a problem with it.
Np. Were you using the "Top Commentators" plugin? If so, why did you take it off the site? What was your experience with it? If I remember correctly, that’s how I found your site. I just installed it on my blog and was searching to see how others were using it.
I’m still using it. It’s one of the Top WP Plugins so I have no plans of removing it.
Oh, now I’m really embarrassed :/ I went to your homepage and there it is! Is it difficult to set it up so it only displays on the home page? Mine is site wide. – Thanks for your quick response, it means a lot.
Hi! I spent one year trying to rank sites with social bookmarking and had no luck until I started using the CommentLuv and KeywordLuv plugins. Highly recommended for anybody who’s starting out! David
wooooooooooooow cool tip