Showing posts with label Comments. Show all posts
Showing posts with label Comments. Show all posts

Top Commentators Widget with Avatars for Blogger

Posted by Unknown

The commentators are a fundamental part of any blog, since they are the ones that give life to the blog, opening and replying to discussions which leads to more activity in the posts.
how to add top commenters widget to blogger

It is therefore very important to know which are the most active users of your blog, the users who leave more comments, and for this reason, today I present a great method to display a list with the top commentators.

The gadget will look something like this:

add top commentators widget to blogger

This Top Commentators gadget comes with user's avatar and is done with JavaScript.

How to Add the Top Commenters Gadget to Blogger


1. To add this gadget, you have to go to Layout, click on Add a Gadget link.

2. Select the HTML/JavaScript gadget and copy/paste within the empty box the following code:

<style type="text/css">
.top-commentators {
margin: 3px 0;
border-bottom: 1px dotted #ccc;
}
.avatar-top-commentators {
vertical-align:middle;
border-radius: 30px;
}
.top-commentators .commenter-link-name {
padding-left:0;
}
</style>
<script type="text/javascript">
var maxTopCommenters = 8;  
var minComments = 1;       
var numDays = 0;           
var excludeMe = true;      
var excludeUsers = ["Anonymous", "someotherusertoexclude"];   
var maxUserNameLength = 42;
//
var txtTopLine = '<b>[#].</b> [image] [user] ([count])';
var txtNoTopCommenters = 'No top commentators at this time.';
var txtAnonymous = '';
//
var sizeAvatar = 33;
var cropAvatar = true;
//
var urlNoAvatar = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgAl-k6OxiOfpF-GEkOFJRAT5-AmlsLnGweflGF2hAf1E-8N73vT-Z5dVdz0GGN0eBg6Pj4dEuXt0JQTMSBg5XefGoiy3vNsEDLSlre1jTiuZcmuRW3uwSN6MT4NvigS5H1TQWWVW39Bok6/s1600/avatar_blue_m_96.png" + sizeAvatar;
var urlAnoAvatar = 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjsqxsc5O8u1Y9-zQszpTq9LL2MBeZQpldiBpIXKwjHwLrJ6pi6al5GiUTnbQOrivcoWgq1gPXWRaLqOUuAx6BBKiJYJscFxQrxfjHQpetSpGGJy4coazfku9I2AZuHEL4OIeY-ELM6dAXw/s1600/avatar1.png' + sizeAvatar;
var urlMyProfile = '';
var urlMyAvatar = '';

if(!Array.indexOf) {
 Array.prototype.indexOf=function(obj) {
  for(var i=0;i<this.length;i++) if(this[i]==obj) return i;
  return -1;
}}
function replaceTopCmtVars(text, item, position)
{
  if(!item || !item.author) return text;
  var author = item.author;

  var authorUri = "";
  if(author.uri && author.uri.$t != "")
    authorUri = author.uri.$t;

  var avaimg = urlAnoAvatar;
  var bloggerprofile = "http://www.blogger.com/profile/";
  if(author.gd$image && author.gd$image.src && authorUri.substr(0,bloggerprofile.length) == bloggerprofile)
    avaimg = author.gd$image.src;
  else {
    var parseurl = document.createElement('a');
    if(authorUri != "") {
      parseurl.href = authorUri;
      avaimg = 'http://www.google.com/s2/favicons?domain=' + parseurl.hostname;
    }
  }
  if(urlMyProfile != "" && authorUri == urlMyProfile && urlMyAvatar != "")
    avaimg = urlMyAvatar;
  if(avaimg == "http://img2.blogblog.com/img/b16-rounded.gif" && urlNoAvatar != "")
    avaimg = urlNoAvatar;
  var newsize="s"+sizeAvatar;
  avaimg = avaimg.replace(/\/s\d\d+-c\//, "/"+newsize+"-c/");
  if(cropAvatar) newsize+="-c";
  avaimg = avaimg.replace(/\/s\d\d+(-c){0,1}\//, "/"+newsize+"/");

  var authorName = author.name.$t;
  if(authorName == 'Anonymous' && txtAnonymous != '' && avaimg == urlAnoAvatar)
    authorName = txtAnonymous;
  var imgcode = '<img class="avatar-top-commentators" height="'+sizeAvatar+'" width="'+sizeAvatar+'" title="'+authorName+'" src="'+avaimg+'" />';
  if(authorUri!="") imgcode = '<a href="'+authorUri+'">'+imgcode+'</a>';

  if(maxUserNameLength > 3 && authorName.length > maxUserNameLength)
    authorName = authorName.substr(0, maxUserNameLength-3) + "...";
  var authorcode = authorName;
  if(authorUri!="") authorcode = '<a class="commenter-link-name" href="'+authorUri+'">'+authorcode+'</a>';

  text = text.replace('[user]', authorcode);
  text = text.replace('[image]', imgcode);
  text = text.replace('[#]', position);
  text = text.replace('[count]', item.count);
  return text;
}

var topcommenters = {};
var ndxbase = 1;
function showTopCommenters(json) {
  var one_day=1000*60*60*24;
  var today = new Date();

  if(urlMyProfile == "") {
    var elements = document.getElementsByTagName("*");
    var expr = /(^| )profile-link( |$)/;
    for(var i=0 ; i<elements.length ; i++)
      if(expr.test(elements[i].className)) {
        urlMyProfile = elements[i].href;
        break;
      }
  }

  if(json && json.feed && json.feed.entry && json.feed.entry.length) for(var i = 0 ; i < json.feed.entry.length ; i++ ) {
    var entry = json.feed.entry[i];
    if(numDays > 0) {
      var datePart = entry.published.$t.match(/\d+/g);
      var cmtDate = new Date(datePart[0],datePart[1]-1,datePart[2],datePart[3],datePart[4],datePart[5]);
     
      var days = Math.ceil((today.getTime()-cmtDate.getTime())/(one_day));
      if(days > numDays) break;
    }
    var authorUri = "";
    if(entry.author[0].uri && entry.author[0].uri.$t != "")
      authorUri = entry.author[0].uri.$t;

    if(excludeMe && authorUri != "" && authorUri == urlMyProfile)
      continue;
    var authorName = entry.author[0].name.$t;
    if(excludeUsers.indexOf(authorName) != -1)
      continue;

    var hash=entry.author[0].name.$t + "-" + authorUri;
    if(topcommenters[hash])
      topcommenters[hash].count++;
    else {
      var commenter = new Object();
      commenter.author = entry.author[0];
      commenter.count = 1;
      topcommenters[hash] = commenter;
    }
  }
  if(json && json.feed && json.feed.entry && json.feed.entry.length && json.feed.entry.length == 200) {
    ndxbase += 200;
    document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false&max-results=200&start-index='+ndxbase+'&alt=json-in-script&callback=showTopCommenters"></'+'script>');
    return;
  }

  // convert object to array of tuples
  var tuplear = [];
  for(var key in topcommenters) tuplear.push([key, topcommenters[key]]);

  tuplear.sort(function(a, b) {
    if(b[1].count-a[1].count)
        return b[1].count-a[1].count;
    return (a[1].author.name.$t.toLowerCase() < b[1].author.name.$t.toLowerCase()) ? -1 : 1;
  });

  var realcount = 0;
  for(var i = 0; i < maxTopCommenters && i < tuplear.length ; i++) {
    var item = tuplear[i][1];
    if(item.count < minComments)
        break;
    document.write('<di'+'v class="top-commentators">');
    document.write(replaceTopCmtVars(txtTopLine, item, realcount+1));
    document.write('</d'+'iv>');
    realcount++;
  }
  if(!realcount)
    document.write(txtNoTopCommenters);
}
document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false&max-results=200&alt=json-in-script&callback=showTopCommenters"></'+'script>');
</script>

3. Now you just have to save changes and you're done!

Configuration


- To modify the number of users displayed in the gadget, look for var maxTopCommenters = 8; and change 8 with any number you want.
- To change the avatar size of the commenters, look for var sizeAvatar = 33; and change number 33 with the number of pixels you want.
More aboutTop Commentators Widget with Avatars for Blogger

Recent Comments Widget with Hide Author Comments function For Blogger

Posted by Unknown

A few days ago, Mrpolie asked if there's a way to hide the author comments in the Recent Comments widget so that we would be able to see only readers' comments and our replies to be hidden. So, in this post I'll be sharing with you the Recent Comments widget that comes with this function. If you want to show just blog readers' comments rather than yours, you have just to change "Blogger User" text with the surname under which you are posting.

recent comments widget, recent comments, blogger

The main features of this recent comments widget:
  • You'll be able to hide your comments
  • Change the avatar size
  • Set the number of comments to display
  • Set the length of comment for the widget to display

Now let's start adding it...

Step 1. From your Blogger Dashboard, go to Layout and click on Add a Gadget link


Step 2. In the pop-up window, choose the HTML/JavaScript widget


Step 3. Copy-paste the following code:

Recent Comments Widget with Round Avatars: 

Click to see the code

Recent Comments Widget With Post Titles (no avatars): 

Click to see the code

Some changes before saving it.

- to set the number of comments to be shown, change the "5" value from the orange line
- for the number of characters, change the "67" (for the 2nd widget, it is 95) value from the green line
- to hide your comments, replace the Blogger User text TWICE with your name
- to change the size of avatar, change "50" from the blue line.
- if you don't want rounded avatars, delete this line:

-webkit-border-radius: 100px;-moz-border-radius: 100px;border-radius: 100px;

Step 4. Save your widget. You're done.
More aboutRecent Comments Widget with Hide Author Comments function For Blogger

Add a Different Background For Author Comments in Blogger's Threaded Comments

Posted by Unknown

In this tutorial we will learn how to highlight the author comments so that they will have a different background color, border, or anything that makes them stand out from the others. To achieve this, we need to add a code in the Blogger's template and to modify the style according to our preferences.
blogger tricks, blogger comments
  

How to highlight author comments in Blogger:

Step 1. Go to Template, click on Edit HTML

blogger threaded comments, customize blogger comments

Step 2. Click anywhere inside the code area and try to find - using CTRL + F keys - this tag:
</body>
Screenshot:
blogger comments, blogger tricks

Step 3. Just above it, paste the following code:
<script src='http://code.jquery.com/jquery-latest.js'/>
<script>
$(function() {
function highlight(){
$('.user.blog-author').closest('.comment-block')
.css('border', '1px solid #FFA500')
.css('background','#F1F1F2 url("http://www.blogblog.com/1kt/transparent/white80.png")')
.css('color', '#444444')
.css('font-size', '12px')
.css('padding', '10px');
}
$(document).bind('ready scroll click', highlight);
});
</script>

Customizing the Author Comments:


Border:
The line marked in orange represents the border's style.
What it can be done:
  • 1px - you can increase the value to change the border's thickness
  • solid - change the border's style to dotted, dashed, inset, outset etc.
  • #FFA500 - this is the border's color value, change it with your own color

Background:
The line marked in blue represents the background's style. You can use a plain color or an image. By default there's a combination of both (a white transparent image with a gray plain color).
To change/add:
  • a different color: replace the #F1F1F2 value with your own (use this tool to find the hex code of your desired color)
  • an image: replace the defaul url http://www.blogblog.com/1kt/transparent/white80.png with that of your image

Font Color:
To change the font's color, replace the #444444 color value in green with your own. (you can use this tool to find the hex code of your desired color)

Font Size:
Modify the value in red by increasing/decreasing the "12" value in order to change the size of text.

Step 4. Now Save your Template.

To customize the entire style of threaded comments, please check my previous tutorial on How to Customize Comment's Background, Font Color and Border in Blogger.
More aboutAdd a Different Background For Author Comments in Blogger's Threaded Comments

How to Customize Blogger Comments By Adding a Background Color and Border

Posted by Unknown

The comments are an essential part of a blog because in them is reflected the readers' opinions regarding a post or our blog, so it is important to spend a little of our time to make this part looking more presentable, accessible and neat.

To set in order our comments, it is necessary to make each comment easy to identify, therefore to know from where it begins and to where it ends, otherwise it becomes a jumble of letters of which the reader can run away. Here are some ways to make some order by separating each comment.

- Add a Separator To Blogger Comments
- Add a Divider Below Comments in Blogger
- Fully Customize Your Blogger Comments By Changing The Background Color and Border

The first method is the easiest, and is about how to put a border below our comments, this is to separate each blog comment in a simple but effective way.

How to Add a Separator/Border To Blogger Comments

customize comments, blogger

Step 1. To add a simple separator go to Template > Edit HTML and click on the small arrow on the left of <b:skin>...</b:skin>
Step 2. Click anywhere inside the code area and search using CTRL + F keys, for the following piece of code:
]]></b:skin>

Step 3. Paste the following style just above it:

- If we are using threaded comments (with the reply option):

.comment-block {
border-bottom: 1px solid #000000;
}

.comments .continue {
  border-top: 0px solid $(widget.alternate.text.color);
}

- If we are using previous commenting system (with no reply option)

#comments-block .comment-footer {
border-bottom:1px solid #000000;
}

Note: To change the border's color, replace the bolded color value and to change its thickness, increase/decrease the 1 value.

Step 4. Save the Template.

Instead of a simple border, we can also add a divider/image between our comments.

How to Add a Divider (Image) Between Each Comment in Blogger

blogger comments, blogger tricks, blogger tutorials

Step 1. Go to Template > Edit HTML and search (CTRL + F) for the following piece of code:
]]></b:skin>
Screenshot:


Step 2. Paste the following just above it:

- If we are using threaded comments (with the reply option):
.comment-block {
background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl82MD9SMJGmv_w6nwnGgdsdWkQmLQPoIztfqh7prxZnjL6zdr8qJpWuVE1pYdgxL5-kDvk_t9RaCMCHSKBBuKTZD6ufBiLNcKrwLGeJgb4gGn0vmknGKa_Pth9D169Wm5K5Zxlmf0180_/s1600/74.gif);
background-repeat:no-repeat;
background-position:center bottom;
padding-bottom:30px;
margin-top: -10px;
}

.comments .continue {
border-top: 0px solid $(widget.alternate.text.color);
}

- If we are using previous commenting system (with no reply function)
#comments-block .comment-footer {
background-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl82MD9SMJGmv_w6nwnGgdsdWkQmLQPoIztfqh7prxZnjL6zdr8qJpWuVE1pYdgxL5-kDvk_t9RaCMCHSKBBuKTZD6ufBiLNcKrwLGeJgb4gGn0vmknGKa_Pth9D169Wm5K5Zxlmf0180_/s1600/74.gif);
background-repeat:no-repeat;
background-position:center bottom;
height: 50px;
}

Note: The URL that is in blue represents the image that you can change as you like, just remember that at the height must set the height of an image with 30px more, for instance, if the image's height is 50px then the value will be 80px. This is for making sure that the image won't overlap the date of comments. (for threaded comments, increase/decrease the padding 30 value)

Step 3. Save the Template.

But you can still have more styles for each comment, for example adding a background color and a border.

How to Add A Border and A Background Color To Blogger Comments

blogger tips, blogger tricks, gadgets
Step 1. Go to Template > Edit HTML and search for the following piece of code:
]]></b:skin>

Step 2. Paste the following just above it:

- If we are using threaded comments (with the reply option):
.comment-block {
background:#F9F9F9; /* Background Color */
border: 1px solid #f1f1f1; /* Border style */
margin-bottom:20px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

.comments .comment-thread.inline-thread {
background-color: #FAFAFA; /* Background color behind the replies */
border-left: 4px dotted #E6E6E6; /* Border on the left side of replies */
}

.comment-content {
padding:2px 10px 10px 10px;
color:#444444; /* Font Color in Comments */
}

.datetime a {
font-style:italic;
font-size:9px;
margin-left: 2px;
}

.comments .comments-content .user a{
color:#1982D1; /* Author's name color */
font-size: 12px; /* Author's name size */
padding-left: 10px;
font-weight:bold;
text-decoration:none;
}

.comments .comment .comment-actions a,.comments .comment .continue a{
display:inline-block;
margin:0 0 10px 10px;
padding:0 15px;
color:#B4B4B7;
text-align:center;
text-decoration:none;
background:#F8F8FB;
border:1px solid #C2C2C5;
border-radius:4px;
height:20px;
line-height:20px;
font-weight:normal;
cursor:pointer;
}

.comments .continue {
border-top: 0px solid $(widget.alternate.text.color);
}

.comments .comments-content .icon.blog-author {
background-image: none;
margin-left: -10px;
}

.comments .avatar-image-container{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
width: 40px;
max-height: 40px;
border: 1px solid #F2F2F2;
padding: 1px;
}

.comments .avatar-image-container img{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
max-width: 40px;
height: 40px;
}

Step 3. Save the Template.

- If we are using previous commenting system (with no reply function):

Step 1. Search for this line in your template:
<b:loop values='data:post.comments' var='comment'>

Step 2. Then, add the following code just below of it:
<div class='comments-ct'>

Step 3. Look a little further down and you'll see the </b:loop> code and just above it, add this:
</div>

Step 4. Now find this:
]]></b:skin>

Step 5. And just above of it, add this CSS code:
.comments-ct{
background:#F9F9F9; /* Background Color */
border: 1px solid #f1f1f1; /* Bprder Style */
margin-bottom:20px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}

.comment-body {
color:#444444; /* Font Color in Comments */
padding:10px;
}

.comments-ct a {
padding-left: 5px; /* Link color */
color: #4A9BD8;
}

.comment-timestamp a {
font-style:italic;
font-size:9px;
padding-right:10px;
padding-left:10px;
}
(The rounded edges will not work in Internet Explorer with CSS)

In either case, you can change the background color, border, etc.. in parts with annotations in green.

Step 6. Save the Template.

If you need more help, leave a comment below.
More aboutHow to Customize Blogger Comments By Adding a Background Color and Border

How to Create Drop Caps (Big First Letters) in Blogger/Blogspot

Posted by Unknown

Here's another way you can customize your Blog. In this case, your Posts and Comment's first letter. The effect is a large first letter stretching down three or four lines with the text wrapped around. The drop cap letter can also use a different font and can be a different color to the rest of the text. You often see this style in newspapers, literature, magazines. In this tutorial i will show you how to apply automatically Magazine text style in Blogger Posts and Comments. So let's start adding it!

-> Add Drop Caps For Blogger Posts

drop caps, blogger blogspot, tutorials

-> Add Drop Caps For Blogger Comments

drop caps, first letter, blogger

Big First Letter for your Blogger / Blogspot Posts

Step 1.
  •  If you are using the old Blogger interface:
Go to Dashboard - Design - Edit HTML - Expand Widget Template (make a backup)
  • If you are using the new Blogger interface:
Go to Dashboard - Template - Edit HTML - Proceed - Expand Widget Template (make a backup)

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

]]></b:skin>

Step 3. Just above it, add the following:

.capital:first-letter {
float: left;
display: block;
font-family: Times, serif, Georgia;
font-size: 40px;
color: #000000;
margin:0px 5px 0 0;
padding:0 0 0 10px;
}

Customize:

Color - change the color highlighted in blue with the value of your desired color
Size - to change the letter size, increase/decrease the value highlighted in pink.

Step 4. Now search for this code:

<data:post.body/>

Step 5. Then immediately before and after add the red fragments you see in the example below:

 <div class='capital'><data:post.body/></div>

Step 6. Save your template.

Important! If the above code is not working, add one of following codes from this example:


<p class="capital"><data:post.body/></p>

Or

<span class="capital"><data:post.body/></span>


Big First Letter For Blogger/Blogspot Comments

Step 1. Log in to your Blogger account, then go to Design (Layout) >> Edit HTML >> check the "Expand Widget Templates" box

Step 2. Search (CTRL + F) for this piece of code (if you have already added this code, skip step 2 & 3):

]]></b:skin>

Step 3. Add the following code just above ]]></b:skin>:

.capital:first-letter {
float: left;
display: block;
font-family: Times, serif, Georgia;
font-size: 40px;
color: #000000;
margin:0px 5px 0 0;
padding:0 0 0 10px;
}

Customize:

Color - change the color highlighted in blue with the value of your desired color
Size - to change the letter size, increase/decrease the value highlighted in pink.

Step 4. Then Search for this piece of code:

<data:comment.body/>

Step 5. Add the red codes before and after <data:comment.body/> as you can see in my example below:

<p class="capital"><data:comment.body/></p>

Step 6. Save your Template.

That's it! Now you have a cool drop cap first letter on your blog.
If you have any question, leave a comment below!
More aboutHow to Create Drop Caps (Big First Letters) in Blogger/Blogspot

Numbered comments on threaded comments for Blogger/Blogspot

Posted by Unknown

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:

    ]]></b:skin>

    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/AVvXsEhZRyiAnwuYWP82j_CXUUpoybmkCEMGsSoqZGBCd63ntSr49K8K-a2SHx_IMtF85ZvllWNzKd3lClSESZm1g8W7EVuQpfAUF5G1xOHsPzjdNZmnFXAYqA9LkTrs4y60Xscp6ItV_cZoIHES/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. If you're not sure what icon you should use, you can find some cool icons in my previous posts (see these tutorials here and here)
    • 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.
    More aboutNumbered comments on threaded comments for Blogger/Blogspot

    Add Facemoods Emoticons To Your Blogger Comments

    Posted by Unknown

    Here are some amazingly funny emoticons compatible with your Blogger comments - also with threaded commenting system! If you want to know how to add them, just follow the next steps:

    emoticons, smileys, blogger, tricks

    Step 1.

    Go to Dashboard - Template - Edit HTML - Proceed


    ...and select Expand Widget Template (don't forget to make a backup)

      Step 2. Search (using CTRL + F) for this code:

      • For previous commenting system: 
      <h4 id='comment-post-message'><data:postCommentMsg/></h4>
      • For threaded comments:
      <div class='post-footer-line post-footer-line-3'>

      Step 3. Add the below code just above it

      (for threaded comments, add the code after):

      <b:if cond='data:blog.pageType == "item"'>
      <div style=' width: 450px; text-align: left; border: 1px dashed #0084ce; background: transparent; padding: 10px; color:#000000; font-weight:bold; '>
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGoD-ANA9wIwb-7NG7PTpHwMILwi5n1RD4codZ_L_7l7hugQtEDUGJTh8prkEcx2B22FXrcpt4W60WV1inn6D2LV_Wi74dOzo8XDB0vDEakkdgF8RLuXXODmSR_WColvn8YBjCEUW_-b35/s1600/fe-blogger.blogspot.com(1).gif'/> :a
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmqw9b2Akf2HGdIS7ccZXLNIl-Kxa1X5CNpa58DQ7vfhz4WNts5Z1DMvSm8JhbAGEeBA3PBAvT7uAjeiCTNfV209WqhD07cErGy3X1VOBOKApluoz9-NVq_1ngiodvZBR2d5bXJQvuL84c/s1600/fe-blogger.blogspot.com+(2).gif'/> :b
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHQ1ZJjDclbTpkN6H12G7Xf1ZYCTbxNcXhF0UoUrOzBd9wBwrfkltjWhx9t_17t3iwTmcaPxWSSQo0Jn4yi2jEghcWvrX2GFmTMm-kgI-440RxKGditN-Xxb5cI7sxKeFlAHKE0LqEosbZ/s1600/fe-blogger.blogspot.com(3).gif'/> :c
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiHMlYagHeazTQPpahzcCkDKEB2u1F8tlGdD2Zwn7saSHO7kvZmB6Bmq0DIMcOuRJD0soOetMl8TCRnXvF1IM3b_4MRZKZOeH6Nxz9t3dVUIiLEaP7G-0Yf-q0_OEyB3ThS0ufawp6swR1I/s1600/fe-blogger.blogspot.com(4).gif'/> :d
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGNDeSl0mgwOdIahjOK0KVYSyViIYqdyg1tyo9U9cAPGE75G3q13aM_2swwtEYnwEAXy61jWeezhxz4AuIvPQ2QiP9q6amVrpsBrVyqtapanvRgZJ7n1k9tylupEyi3ncwFiwih0TpjhAN/s1600/fe-blogger.blogspot.com(5).gif'/> :e
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4rgS70JIeVdH72XmdB-DMD0gVqMBN0Ck_olh92NXsPTCy3evorlCShfVDGon_abyCAEQRQSuf1PykTIXksOhbdK5rLzeTEXH5WVUIlfvQ3p0S_fBhLODoyKUwdDCPHeG2m63c-e6Bjyry/s1600/fe-blogger.blogspot.com(6).gif'/> :f
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGRolLr9Os2ucUfRfnm6Iszvg38RuD2y7tj2RpVDFRJlJAnp5MpqNIuHVXeq6Tb97Fqwb1QCT4y-MAJPCsdzDXo2gb2NIWm7pg0vTuTkZ5zMT8OgxoB3Ea9Og3PUApe4cdtQJZckiFRnu7/s1600/fe-blogger.blogspot.com(7).gif'/> :g
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpwVoL6kCwmM0PJZcQYjjxdjknp2iIlFETjAERgUkIdvyiw6ZIiJa98V8ATkoxgX_2BGard3SpenINwYX0tKIyXhhfP08gtlYAYYBRRYrCUXDZScSjUIFB9QJa8NdWfr-tKb3YbQ2b3CsL/s1600/fe-blogger.blogspot.com(8).gif'/> :h
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiubzUbcUTv4JkFW-kzf7UEgD0-Wg-Uc3Ibw64Ae-vXlkqL0gFwlb1ymq0ULevCqgBnWSD_FLf260S4i-31GUEumwMu6tN9vXRwJYRG5YvkFXWSgs72yFnik7SXQTyYRpFUL2V4wGSNRO7B/s1600/fe-blogger.blogspot.com(9).gif'/> :i
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfiSdB0rYqCnu9z605qgCM24FfqKyVxmgOzkQPre8wYj_l_HsLy6qzIdAeHwYuXsOTAuHIiCLqQmiqxAao90oaaUOUQT2Iq4rgCPqAqO3oNLCVUxm2UjD7qWny-EnCVvra-TxHKYFStQPc/s1600/fe-blogger.blogspot.com(10).gif'/> :j
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkuTvg0use8hL0k-t9Lko_vMS9H9HbccxMgeRxA0WzB8XKy4Zl694dGi9s3aGfJurt7DeMFZuiq6hCiDJf23jonFeJf46J7_18y-LvrJPB1vne_R6-WX8vEAH-v1HxVUJEC3f1MuIBitVd/s1600/fe-blogger.blogspot.com(11).gif'/> :k
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTFhs5jUptqEcfZQdbl-NAeG7F90sMK-pGLgmRi7CgBgaYPUMnf1XwLujhMCNc6v8-cel4PLQJpq8-a4sr7QdBTqVpBYDcrK2RXJ_5ekn0Iovqi_jGw2fEAogQMM3IF9UorTN2Btk5RZ-1/s1600/fe-blogger.blogspot.com(12).gif'/> :l
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhy91EU8iMRDCLJ_2eFRNBoaZhfImjRe6v69G4mhpeUTx0hzlRMYAOfzqQUQUzQqxV1229efFFqAXvtPTR5pWuegGZZ14N3qzs6eiOpid2PpCNJEGvYuAZ5aDaoVBQU28DfTaWS4BtX_j5I/s1600/fe-blogger.blogspot.com(13).gif'/> :m
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgmJcCqD4SC7-8QPrItrfGGXIqfgkLyHeg8juyHRjiaXOLfsvInoJrZCChJwrDlrItKoY13kLklXyUWb7OOVq3B3wxRnvWAVxNkF6Xjz57Wxh-aLmJZHrric5pTNPbLswFnLCgko1tVqDD_/s1600/fe-blogger.blogspot.com(15).gif'/> :n
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgxq3DBB9EAMlE9qjN9F13jd3zcGqlA29zmHZG9Bv8ROtOchncs323vXfoVu0tA2bw21ojE8y9F2GKzi4XpfKlXUYpLXOfkiUOt9hfLgEnmYYO0HCjTWHnvJatRnOzBrsIII1ocncL_bUeQ/s1600/fe-blogger.blogspot.com(16).gif'/> :o
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjP5d0-jWsob1tf-NXPEwKELSEpCaHuv4wYXGvUbab3Zok8guYuHXreg1txhswMgTVdpZI01Wlvo5O6sHO3u560gGSWwBlS7KAw1haiNo8lvfT67KmK4VfdlPnqmyLVXt17hJ15fnFEXHKH/s1600/fe-blogger.blogspot.com(14).gif'/> :p
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg424HwV59aSlsDD16bA1MIA-HsdiLdE7asWkMI4KgrrrAbSTjjDrqz8OQOdTxIoic97vwGnbZGTPbdDbSB5Y7WpKoXsVOG1oq2EtiqdxecGaFNJZotWl-tANKvFuZNfSz_OhL2FaviMBBg/s1600/fe-blogger.blogspot.com(17).gif'/> :q
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9m0ksj-ned5it2JRRakjzMjwC2b4LVhSPbOFxa00aePymHJNPI9Zk0O3hRtirH8oJwXsy_fvDPoOxQLgMFIkV6kUmgevspG7RtrW7XDX45aDrVfVZ6RhZ03ByGAfnLYeWXzeqwIxSeG2E/s1600/fe-blogger.blogspot.com(18).gif'/> :r
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghuBBAIcA6z4p-swdYES-T-IrO1w3gXd_Ed87uoEk9wWtbMNdJZJs7BceGjBe-Z1R2a8nS6UXSiPLW066BwRiz4OH-B50stJZCMnqQncQVmu4Z4iiEe20FSNyLQYnLx-iiAUB78hug8PPY/s1600/fe-blogger.blogspot.com(19).gif'/> :s
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzhA-yCMuWybOrwR4mikKpDbLsacTbkFbdim8R6AqU6CU9E5-TX5c1wkzs9Y6GN9N4p9yX9e1rB6VxPBbkWvNnbCjHIj9KsbHTyViPpu-_2bDgBMYFsSflyyXtbsqFExtXeweo0faNvGzk/s1600/fe-blogger.blogspot.com(20).gif'/> :t   <a href='http://fe-blogger.blogspot.com/2012/05/add-facemoods-emoticons-to-your-blogger.html' style='color: rgb(30, 122, 183); font-size: x-small;'>Add smileys to Blogger + </a>
      </div></b:if>

      Step 4. Now search for this piece of code:

      </body>

      Step 5. And add the following code immediately above it:

      • For previous commenting system:
      <script type='text/javascript' src="http://fe-blogger.googlecode.com/svn/trunk/facemood emoticons.js"/>
      • For threaded comments: 
      <script type='text/javascript' src="http://fe-blogger.googlecode.com/svn/trunk/facemood emoticons threaded.js"/>

      Step 6. Save the Template. Now, enjoy your comments!

      More aboutAdd Facemoods Emoticons To Your Blogger Comments

      How to Change Default Anonymous Avatar in Blogger Comments

      Posted by Unknown

      In the last tutorial, I wrote about how you can change avatars size in blogger comments and in this simple tutorial, I will show you how to change or customize default avatar of anonymous commenters or Blogger users with no picture added on their profiles. After Blogger announced new feature of threaded comment, we can still customize it by adding a jQuery plugin to our template and replacing the default anonymous avatar found at this

      URL http://img1.blogblog.com/img/anon36.png
      and the one for blogger users http://img2.blogblog.com/img/b36-rounded.png

      ...with our own.

      anonymous, default avatar, blogger blogspot

      Step 1.

      Go to Dashboard - Template - click on the Edit HTML button and then Proceed



      ...then select Expand Widget Template (don't forget to make a backup)

        Step 2. Find (CTRL + F) this code in your template:

        </body>

        Step 3. Add the following code just above it:

        <script src='http://code.jquery.com/jquery-latest.js'/>
        <script>
        $(&quot;img[src=&#39;http://img1.blogblog.com/img/anon36.png&#39;]&quot;)
        .attr(&#39;src&#39;, &#39;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNmzyH1JXGuZaS4FZKK239RDaIdRypOC8pmEXx0BsCBwTDjb4gR0vDGQ6GIorxSmnwKEAUrxYmrlob-jTQnCBrxlHG4iGktmgujti3EQX65FOWGHUqFfKR6UAvgBl9dOi-GFhd5kZsOiI/s1600/default_avatar.gif&#39;)
        .ssyby(&#39;blank&#39;)
        </script>
        <script src='http://code.jquery.com/jquery-latest.js'/>
        <script>
        $(&quot;img[src=&#39;http://img2.blogblog.com/img/b36-rounded.png&#39;]&quot;)
        .attr(&#39;src&#39;, &#39;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtXOGCjN5Xa9YXZfPnsE5VKfsSMNCqNlVpD0Saf3_J55I7OoAFDF7t4hUu8y_5csg2bmzCKxgJOr4MavNJIx20I_TjFFr9PWXFYe9nukpmGBSVpX9VshX0oNEBASSObXJ_nDaxPlMrEkQ/s1600/blogger-user.png&#39;)
        .ssyby(&#39;blank&#39;)
        </script>

        Step 4. Save the Template

        How to change avatar:

        For Anonymous users: Replace the code in red with the url address of your image
        For Blogger users: Replace the URL in blue with your own.

        You can choose one from these below (copy the url address):


        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNmzyH1JXGuZaS4FZKK239RDaIdRypOC8pmEXx0BsCBwTDjb4gR0vDGQ6GIorxSmnwKEAUrxYmrlob-jTQnCBrxlHG4iGktmgujti3EQX65FOWGHUqFfKR6UAvgBl9dOi-GFhd5kZsOiI/s200/default_avatar.gif


        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhT4duC85eD0MHclAJzp8U9VRlP6AmZfRJsxtHRTmfRsU3DRL17gYbRWBafaYvv3ivW0Kw425s1Amte_Q6BoAHv0lXEy9qXwLrxV0tPHYgwUAHQEcxfblRVxt_iibAb-RAXV3DHkRGT28Y/s1600/facebook.gif


        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU_11Pbuw8rA0LYLLIO1VQpOhW1bdj9rBM-Hk4rjBR-yCFW2UAtv_5Ly8Zx-vsBCZqBDjNsPaZQcs8gKVghRsWybrFCvBCnYEyEkehzoLpXC34u_0zlSuXysA4IVNaeQmeQpwKOaxTZzg/s1600/anonymous3.png



        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi6S4CDvytbSP3jvobUr_RJJfhIM_84tBf3C1m8RfPKb-BDnNneX-yy7niH6HxGklgZkGKfUJqpQmy6B98uJEXgOKq-nphai-16XpvnyJMECSTCZ_C804p0INfJCoa6YkYDU_sGijKmwzsf/s1600/blogger-user.png


        That's it!
        If you liked this post, please consider sharing it.

        More aboutHow to Change Default Anonymous Avatar in Blogger Comments

        How To Change Avatar Size In Blogger Comments

        Posted by Unknown

        This simple trick will help you to modify the avatars size in Blogger comments. For changing the style and size of avatars, we have to add some CSS codes in our Blogger template. So, let's begin:


        Step 1.

        Go to Dashboard - Template - click on the Edit HTML button - Proceed


        ...now select Expand Widget Template (I recommend to make a backup first)

          Step 2. Find (CTRL + F) this code in your template:

          ]]></b:skin>

          Step 3. Copy and paste one of the following codes just above it:

          [Works in Blogger threaded comment system]

          .comments .avatar-image-container{
          background-color: rgb(34, 34, 34);
          border:1px solid #ccc;
          margin: 0px 10px 0px 0px;
          padding: 0px 0px 0px 0px;
          width: 64px;
          max-height: 64px;
          }
          .comments .avatar-image-container img{
          margin: 0px 0px 0px 0px;
          padding: 0px 0px 0px 0px;
          max-width: 64px;
          height: 64px;
          }

          [for old blogger commenting system]

          .avatar-image-container{
          border:1px solid #d6d6d6;
          margin-left: -30px;
          -moz-border-radius: 4px;
          background:#fff;
          height:70px;
          min-height: 70px;
          width:70px;
          min-width:70px;
          }
          .avatar-image-container img {
          background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDwHKVDGnzZjBCQMcaCql2XZDKHQqJ8uyHD1y_Jpku6mdwUZza67UBi1zUQ1VfNLdluEDG0tIoVg2wLX8KOvYXGpMjkbNny88lMkZXcJELOEovkjLNip4uoVc5zlU-mm4axFmEhhhMOo8/s200/anonymous.jpg);
          background-repeat: no-repeat;
          background-position: center;
          background-size: 100%;
          width:70px;
          min-width:70px;
          height:70px;
          min-height:70px;
          }

          Note: If you want bigger/smaller avatars, change the values in red. To change the anonymous avatar, replace the URL address in blue with your own. (works only for previous commenting system)

          Step 4. Save the Template.

          Now view your blog to see the results. Hope you enjoy!


          More aboutHow To Change Avatar Size In Blogger Comments