Friday, October 18, 2013

Numbered comments on threaded comments for Blogger/Blogspot

In a past tutorial, I've been talking about how you can add numbered comments to your blogger blog and today we'll learn how we can add numbered comments along with comment bubbles on the threaded comments as well.

What the following CSS trick will do for you:

  1. When the general block of comments is initiating (.comments-content) a counter called countcomments activates and starts with an initial value of 1. 
  2. Then, each time the code flow goes through a review of any level, either a principal or a reply comment (.comment-thread li), content will bring us in front (:before) of the body of the comment, the number that is the counter at the time.
  3. Then is incremented in one unit the counter (counter-increment).
See the screenshot:
count comments, comment bubble, forum, blogger

Isn't that great? Well, i'm pretty sure many of you have been waiting for this cool trick. So let's begin applying it for our threaded comments system.

Steps to add bubble comments count

Step 1: Go to Dashboard - Template - Edit HTML (click on Proceed if needed)

...Expand Widget Templates:



Step 2: Search (CTRL + F) for this piece of code:

]]>

Step 3: Add the following code just above it:

.comment-thread ol {
counter-reset: countcomments;
}
.comment-thread li:before {
content: counter(countcomments,decimal);
counter-increment: countcomments;
float: right;
z-index: 2;
position:relative;
font-size: 22px;
color: #555555;
padding-left:10px; 
padding-top:3px; 
background: url(
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAU9J206f_TuL0BVkPvptj-BUuUU6qEN0kcKuo815uYxDInPCXFVeD_Kdb48-IotZgbjCKNcjMgaXhiuPnLFvBVHFiG_i1Fqu0dZkVwJfhQiEP5-OWBUgUONv0vJ9JlruWM8tuQukSMlLR/s1600/comment+bubble2.png) no-repeat;
margin-top:7px; 
margin-left:10px; 
width: 50px; /*image-width size*/
height: 48px; /*image-height size*/ 

}
.comment-thread ol ol {
counter-reset: contrebasse;
}
.comment-thread li li:before {
content: counter(countcomments,decimal) "." counter(contrebasse,lower-latin);
counter-increment: contrebasse;
float: right;
font-size: 18px;
color: #666666;
}
Note:
  • for no bubble icon, remove the code in red (including the blue code)
  • to change the comment bubble, replace the code in blue with the URL address of your own icon.
  • to change the position of comments count, increase/decrease the values (3 & 10) from padding-top and padding-left
  • to change the position of comments bubble/icon, change the values (10 & 7) from margin-left and margin-top
Step 4: Now Save the Template and you're done!

If you enjoy reading this blog, please share and subscribe. For any questions, leave a comment below.

    Random Posts...!!!

  • 5 SEO Tips To Get Massive Traffic
    5 SEO Tips To Get Massive Traffic
    15/09/2012 - 1 Comments

    First of all you should kept mind that blogging is all about posting. As much as you post, you will get your…

  • How To Publish Your Posts To Facebook Page Automatically
    How To Publish Your Posts To Facebook Page Automatically
    24/06/2012 - 0 Comments

    Facebook is the best social networking site which is widely used in the world. Every blogger give first…

  • Blog SEO tags Nofollow Labels - save your blog from SPAM
    Blog SEO tags Nofollow Labels - save your blog from SPAM
    04/02/2012 - 0 Comments

    Blogger Label Links effect your blog or site Page Rank in a negative way and that's a fact. Why follow…

  • Alternative Lorem Ipsum Generator
    Alternative Lorem Ipsum Generator
    19/09/2012 - 0 Comments

    Quirky filler text generators is a Alternative Lorem Ipsum Generator to use for quickly add content to…

  • New On-Page Optimization Website Analysis
    New On-Page Optimization Website Analysis
    21/09/2012 - 0 Comments

    In the SEO process pre optimization site review and analysis is very much important. In case of on-page…

  • Tips To Choose The Best Niche For Your Blog
    Tips To Choose The Best Niche For Your Blog
    16/08/2012 - 0 Comments

    It was very tough to decide on a niche to start a blog. Almost every blogger might have faced this trouble…

  • Cool Stylish CSS Labels For Blogger
    Cool Stylish CSS Labels For Blogger
    30/09/2013 - 0 Comments

    Friends, This is a widget to modify your label to a brick style with CSS effects. It is very effective widget…

  • How To Replace "Post A Comment" Message In Blogger With Image Or Text
    How To Replace "Post A Comment" Message In Blogger With Image Or Text
    08/10/2013 - 0 Comments

    You can replace post a comment message that appears at your blogger comment box header section with image,…

If You Enjoyed This Post Please Take 5 Seconds To Share It!

1 comments:

digital marketing agency Toronto said...

We are a leading digital marketing company in Toronto. Our services include SEO, SMO, Google ads, Facebook ads.

Post a Comment

Please feel free to comment on this topic.

horizontal random post

    Random Posts...!!!

  • How to Change Bullet Point Style in Blogger (Blogspot) Lists
    How to Change Bullet Point Style in Blogger (Blogspot) Lists
    11/07/2012 - 2 Comments

    In Part 1 of this three part series of Blogger tutorials I discuss how to change bullet point styles of lists…

  • 2012 Best SEO Strategies for Companyes
    2012 Best SEO Strategies for Companyes
    23/09/2012 - 1 Comments

    The search engine optimization world is changing. The SEO landscape of 2012, aka post the Google Panda update…

  • How to Remove or Change the Blog Title Border in Blogger (Blogspot)
    How to Remove or Change the Blog Title Border in Blogger (Blogspot)
    29/06/2012 - 1 Comments

    In this Blogger tutorial I discuss how to change the blog title border color or remove the border in a…

  • How to Add Profile Images to Blogger Comments
    How to Add Profile Images to Blogger Comments
    03/07/2012 - 0 Comments

    Today I will show you how easy it is to have Blogger (Blogspot) display profile images in the embedded…

  • Best free Meta Tag Analyzer Tool for yout site
    Best free Meta Tag Analyzer Tool for yout site
    28/03/2012 - 1 Comments

    Use this Meta Tag Analyzer Tool to test your site or blog with different search engines robots. This Meta…

  • Install Blogger Template tutorial
    Install Blogger Template tutorial
    21/08/2013 - 0 Comments

    It's very easy to Install a new Blogger Template But the Newbie Bloggers make a mistake in this way they…

  • How To Launch From SEO – Tips for Beginners
    How To Launch From SEO – Tips for Beginners
    07/03/2012 - 0 Comments

    When a user is new to the "Search Engine Optimization" concept (otherwise known as S.E.O.), it can be quite…

  • How to Add Internal Links Within Blogger Posts
    How to Add Internal Links Within Blogger Posts
    02/07/2012 - 1 Comments

    Each link identifier needs to be enclosed in inverted commas. Make sure to match up the correct identifier…