Do You Want to Get Motivated?
Follow on Twitter and I'll get you motivated!
IF YOU WANT GET FREE MOTIVATIONAL, SUCCESSFUL AND INSPIRING QUOTES ON YOUR CELL PHONE? SO GOTO MESSAGE AND WRITE "FOLLOW GOLDENWORDS_UK" THEN SEND "PAKISTAN, AFGANISTAN, NIGERIA & USA - 40404, INDIA 53000, - CANADA 21212, INDONESHIA - 89887, BANGLADESH - 9594, UK- 86444, AZERBAIJAN - 4040"

Add Numbers To Blogger Threaded Comments

Today I am sharing a very simple CSS trick which will add numbers to your threaded comments inside a comment bubble.It will add numbers like this way 3,3.a,3.b & 4 here 3,4 are the main comments and 3.a,3.b are the replies,you can see a screenshot below in image.To apply this trick to your threaded comments,you just have to copy and paste some CSS code in your template and you are done.So without waiting anymore lets jump to the tutorial.
How To Add Numbers To Blogger Threaded Comments?

    Go to Blogger Dashboard > Template
    Download a copy of your template
    Click On Edit HTML
    Hit Proceed
   
Now search for below code,
1
]]></b:skin>

add below code just above it, - See more at: http://www.helperblogger.com/2012/08/add-numbers-to-blogger-threaded-comments.html#sthash.4sVPoFDy.dpuf
1
]]></b:skin>

add below code just above it, - See more at: http://www.helperblogger.com/2012/08/add-numbers-to-blogger-threaded-comments.html#sthash.4sVPoFDy.dpuf

              ]]></b:skin>

Add below code just above it,

.comment-thread ol {
    counter-reset: countcomments;
}

.comment-thread li:before {
    content: counter(countcomments,decimal);
    counter-increment: countcomments;
    float: right;
    font-size: 22px;
    color: #555555;
    padding-left: 10px;
    padding-top: 3px;
    background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjj9zg5BbG4Ci7qZGwLAz9-dNVV60tUApR8JhmDV2WH2bldMJ_uWPK4_VVfjnDXwt7VYnR3e918eyVyioYqjOtZVOqeufu8D6pl8dZx7pFTE1QA7l2CtK87CMYTev-B4K_5eYb58Phh25ty/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;
}

Now save your template and you are done.
  • Line Number 11 - Edit it to adjust the position of text(number) from left size
  • Line Number 12 - By editing the value you can adjust the position of text(number) inside bubble from top.
  • Line Number 13 - If you want to change the bubble image then simply replace image URL with yours.
  • Line Number 14 - By editing this value you can adjust the position of bubble from top
  • Line Number 15 - Increase or decrease the value as per your requirements
Below I am sharing some comment bubbles, right click on any bubble, select Copy Image URL and replace it with above comment bubble URL in line number 13.


I hope you enjoyed this post.If you are facing any king of problem then feel free to share it with us.Credits for this trick and comment bubbles goes to SKA Ocean Blogger if you want to share this trick with your readers then you have to add a link to this blog.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.comment-thread ol {
    counter-reset: countcomments;
}
.comment-thread li:before {
    content: counter(countcomments,decimal);
    counter-increment: countcomments;
    float: right;
    font-size: 22px;
    color: #555555;
    padding-left: 10px;
    padding-top: 3px;
    background: url(http://3.bp.blogspot.com/-f6ByQfbwApQ/T4x_8p1FGpI/AAAAAAAAB2A/WJKf-ybmvQk/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;
}
- See more at: http://www.helperblogger.com/2012/08/add-numbers-to-blogger-threaded-comments.html#sthash.4sVPoFDy.dpu

How To Add Numbers To Blogger Threaded Comments?

  1. Go to Blogger Dashboard > Template
  2. Download a copy of your template
  3. Click On Edit HTML
  4. Hit Proceed
  5. Now search for below code,

1
]]></b:skin>

add below code just above it,

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.comment-thread ol {
    counter-reset: countcomments;
}
.comment-thread li:before {
    content: counter(countcomments,decimal);
    counter-increment: countcomments;
    float: right;
    font-size: 22px;
    color: #555555;
    padding-left: 10px;
    padding-top: 3px;
    background: url(http://3.bp.blogspot.com/-f6ByQfbwApQ/T4x_8p1FGpI/AAAAAAAAB2A/WJKf-ybmvQk/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;
}

Now save your template and you are done.

Customizations


  • Line Number 11 - Edit it to adjust the position of text(number) from left size
  • Line Number 12 - By editing the value you can adjust the position of text(number) inside bubble from top.
  • Line Number 13 - If you want to change the bubble image then simply replace image URL with yours.
  • Line Number 14 - By editing this value you can adjust the position of bubble from top
  • Line Number 15 - Increase or decrease the value as per your requirements

Below I am sharing some comment bubbles,right click on any bubble,select Copy Image URL and replace it with above comment bubble URL in line number 13.
- See more at: http://www.helperblogger.com/2012/08/add-numbers-to-blogger-threaded-comments.html#sthash.4sVPoFDy.dpuf

How To Add Numbers To Blogger Threaded Comments?

  1. Go to Blogger Dashboard > Template
  2. Download a copy of your template
  3. Click On Edit HTML
  4. Hit Proceed
  5. Now search for below code,
- See more at: http://www.helperblogger.com/2012/08/add-numbers-to-blogger-threaded-comments.html#sthash.4sVPoFDy.dpuf

How To Add Numbers To Blogger Threaded Comments?

  1. Go to Blogger Dashboard > Template
  2. Download a copy of your template
  3. Click On Edit HTML
  4. Hit Proceed
  5. Now search for below code,
- See more at: http://www.helperblogger.com/2012/08/add-numbers-to-blogger-threaded-comments.html#sthash.4sVPoFDy.dpuf

0 Comments: