Monday, June 4, 2012

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

Here's another way to 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 have a different color from the rest of the text. This style can be often seen in newspapers, literature, magazines. So, in this tutorial I will show you how to apply automatically a Magazine text style on Blogger Posts and Comments. 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. From your Blogger Dashboard, go to Template and click on the Edit HTML button:


Step 2. Click anywhere inside the code area and press the CTRL + F keys to open the Blogger' search box. Type this piece of code inside the search box then hit Enter to find it:
]]></b:skin>
Note: you might need to click on the arrow next to it to expand the code within and then you need to search ]]></b:skin> one more time.

Step 3. Just above ]]></b:skin>, add the following CSS code:
.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;
}
Color - change the value in blue with the hex of your 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 the changes by clicking on the Save template button.

Important! If the above code is not working, add one of following codes from this example:
<p class="capital"><data:post.body/></p>
Or try this instead:
<span class="capital"><data:post.body/></span>

Big First Letter For Blogger/Blogspot Comments

Step 1. Log in to your Blogger account > go to Template > Edit HTML > click anywhere inside the code area and press CTRL + F keys to open the search box

Step 2. Type the following piece of code inside the search box and hit Enter to find it (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;
}
Color - to change the letter color, replace the value in blue with the value of your color. Here's a tool that might help you to find the hex of the color that you need: Color Code Generator
Size - to change the letter size, change the value 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!

Saturday, June 2, 2012

Numbered comments on threaded comments for Blogger/Blogspot

In a previous tutorial you've seen how you can add numbered comments to your blogger blog, unfortunately, this trick worked only for those who don't have the reply option and are still using the old blogger commenting system. But we won't have any problem this time because this tutorial will show you how to add numbered comments 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 the original comment or a reply (.comment-thread li), it will bring us in front (:before) of the comment's body the number that is the counter.
  3. Finally, this is incremented in the counter (counter-increment).
See the screenshot:
count comments, comment bubble, forum, blogger

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

Steps to add bubble comments count

Step 1: From your Blogger Dashboard, go to Template and click on the Edit HTML button:

    ... click anywhere inside the code area and press CTRL + F to open the Blogger' search box.

    Step 2: Type the following tag inside the search box and hit Enter to find it:
    ]]></b:skin>
    Note. you have to click on the arrow next to it, then search the ]]></b:skin> one more time 

    Step 3: Add the following code just above ]]></b:skin>:
    .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/AVvXsEhVKQYo_6okYUzMDvBfPZaTIimab5FkKEpGcCtgsfpiYvV2WCiGFVLKAwxO4_mBXeBHGSiNeLzhW0631NDYQ6tBCecJH0i0Ga9jzObDW8h96ljQ9BLjf4PWydrGVLIwnilkbhzIyPXHYr83/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:
    • if you want to have no bubble icon, remove the code in red (including the address in blue)
    • 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 you may have, leave a comment below.

    Friday, June 1, 2012

    How to add “Email Subscription Form” to Blogger Blogspot

    email subscription form, blogger blogspot, gadgets
    When you are providing useful information in your blog, then many times some readers will need to get the latest updates from your blog. For that purpose, you need an Email Subscription Form in your blog, so that the interested visitors can easily get the latest updates.

    Related: How to Burn Blogger RSS Feeds at Feedburner

    To add email or Feed Subscription Form to your blogger blog (blogspot) is very easy.
    Just follow the next steps:

    1. Log in to Blogger, then go to Layout > click on "Add a Gadget" link:


     2. From the pop-up window, scroll down and click on the "HTML/JavaScript" gadget:


     3. Paste the following code inside the empty box:
    <style>
    .hl-email{
    background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTzh0XzyI_vkKR7hxgK51436jxQ_0Pzy7Bz408fNJ40PlII4AmAIeCe56Ek6pUKwV1Y2WJ-pUYgJBn2rJR3KPkoxlY2uKa8uSpZqMAmWCvtha4I71jkf4SnALdNWyCio9QfwY7Iw8od3o/s1600/mail.png) no-repeat 0px 12px ;
    width:300px;
    padding:10px 0 0 55px;
    float:left;
    font-size:1.4em;
    font-weight:bold;
    margin:0 0 10px 0;
    color:#686B6C;
    }
    .hl-emailsubmit{
    background:#9B9895;
    cursor:pointer;
    color:#fff;
    border:none;
    padding:3px;
    text-shadow:0 -1px 1px rgba(0,0,0,0.25);
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    font:12px sans-serif;
    }
    .hl-emailsubmit:hover{
    background:#E98313;
    }
    .textarea{
    padding:2px;
    margin:6px 2px 6px 2px;
    background:#f9f9f9;
    border:1px solid #ccc;
    resize:none;
    box-shadow:inset 1px 1px 1px rgba(0,0,0,0.1);
    -moz-box-shadow:inset 1px 1px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,0.1); font-size:13px;
    width:130px;
    color:#666;}
    </style>
    <div class="hl-email">
    Subscribe via Email <form action="http://feedburner.google.com/fb/a/mailverify" id="feedform" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=helplogger', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">
    <input gtbfieldid="3" class="textarea" name="email" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Enter email address here&quot;;}" onfocus="if (this.value == &quot;Enter email address here&quot;) {this.value = &quot;&quot;;}" value="Enter email address here" type="text" />
    <input type="hidden" value="helplogger" name="uri"/><input type="hidden" name="loc" value="en_US"/>
    <input class="hl-emailsubmit" value="Submit" type="submit" />
    </form>
    </div>

    Settings 
    - Replace the url address in green to change the email icon
    - To change the width or the text area, increase/decrease the 130px value in red
    - replace http://feedburner.google.com/fb/a/mailverify?uri=helplogger with your Feedburner Email Feed link. You can get it by visiting your feedburner account then navigate to "Publicize" and then to "Email Subscriptions".
    - Replace helplogger with your feed title. It appears at the end of your feed link. In my case it is http://feedburner.google.com/fb/a/mailverify?uri=helplogger

    4. Now Save your widget and check your blog. Enjoy!

    Thursday, May 31, 2012

    Add Floating Social Media Sharing Buttons To Blogger

    The Floating Social Media Sharing is a very popular widget on all the top blogs and this is one of the ways to increase the number of times your posts get shared on Twitter, Facebook and other social networks.

    This floating social bar has the following options: Facebook Like, StumbleUpon, Twitter Share, Digg This, Google+ and each of them comes with a live counter. You can add more sharing buttons or social bookmarking icons later if you want.

    Blogger, WordPress, Facebook, Share

    How to add the scrolling social bookmarking bar


    Step 1. Log in to your Blogger Dashboard, select your blog and go to Layout 

    Step 2. Click on Add A Gadget link


    Step 3. From the pop-up window, scroll down and select HTML/Javascript 

    Step 4. Copy the code below and paste it inside the empty box.

    Step 5. Save the gadget.

    The code to copy-paste (updated!):
    <style type="text/css">
    #social-buttons {
    position:fixed;
    bottom:15%
    margin-left:-721px;
    float:left;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    background-color:#fff;
    padding:0 0 2px 0;
    z-index:10;
    }
    #social-buttons .button-share {
    float:left;
    clear:both;
    margin:5px 5px 0 2px;
    }
    </style>
    <div id='social-buttons' title="Get this from helplogger.blogspot.com">
    <div class='button-share' id='like' style='margin-left:7px;'>
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="fb-like" data-send="false" data-layout="box_count" data-width="40" data-show-faces="false"></div>
    </div>
    <br /><div class='sbutton' style="margin-left: 2px;" ><a class='twitter-share-button' data-count='vertical' data-via='Helplogger' expr:data-counturl='data:blog.url' href='http://twitter.com/share' rel='nofollow'>Tweet</a><script src='http://platform.twitter.com/widgets.js'; type='text/javascript'></script>
    <br />
    <div class='button-share' style="margin-left: 3px;" id='su'>
    <script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
    </div>
    <div class='button-share' id='digg' style='margin-left:3px;width:48px'>
    <script src='http://widgets.digg.com/buttons.js' type='text/javascript'></script>
    <a class="DiggThisButton DiggMedium"></a>
    </div>
    <div class='button-share' style='margin-left:3px;' id='gplusone'>
    <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
    <g:plusone size="tall"></g:plusone>
    </div>
    <div style="clear: both;font-size: 9px;text-align:center;">Get <a style="color: #3399BB;" href="http://helplogger.blogspot.com/">widget</a></div></div></div>
    Customization:
    • Vertical alignment - Change the 15% value of bottom. The code positions the social bar relative to the bottom of your browser window. To fix the distance even when window is resized, specify the value in px (pixels) instead of %.
    • Horizontal alignment - Change the -721px value from margin-left. Negative value pushes the button to the left of the main blog column, positive value pushes it to the right. Increase or decrease the value based on your needs.
    • Twitter setting - Replace Helplogger with your Twitter username
    • Replacing and removing buttons - You can replace existing buttons with your own. Each button is represented by this code:
    <div class='sbutton'> BUTTON CODE HERE </div>
      Enjoy!!! :)

      Create A Rollover Image Effect (change image on mouseover)

      The Rollover effect is one in which an image web object changes (swaps itself) on mouse over to another web object (called rollovers) and reverts back to the original image on mouse out. Rollover images are preloaded into the page when it is loading, this ensures that the rollovers are displayed quickly. The onMouseOver and onMouseOut attributes of the link tag are used to make this functional.

      Demo:  Place your mouse over the image below to see its rollover effect


      Making Rollover Effect Image

      You have the following code:

      <a href="URL ADDRESS"><img src="URL OF THE FIRST IMAGE GOES HERE" onmouseover="this.src='URL OF THE SECOND IMAGE GOES HERE'" onmouseout="this.src='URL OF THE FIRST IMAGE GOES HERE'" /></a>

      Change the colored texts as it follows:

      1. URL ADDRESS

      This is the address where somebody will be sent when clicks on the image.
      Example, my blog address: http://www.helplogger.blogspot.com

      2. URL OF THE FIRST IMAGE GOES HERE

      Replace the orange text (two times) with the URL address of the image which will appear before you hover over it.

      3. URL OF THE SECOND IMAGE GOES HERE
      Replace the text in blue with the url of  the image that will appear when the cursor hovers over it.

      Now you can paste your image inside a blog gadget, going to Layout > click on Add a Gadget link (right side) > Select HTML/JavaScript from the pop-up window, then add it to your sidebar.

      You can also add it inside your post by going to New Post > Switch to HTML tab and then paste the code in the empty box.

      That's it. Enjoy ;)

      Saturday, May 12, 2012

      Add Facemoods Emoticons To Your Blogger Comments

      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. From your Blogger Dashboard, go to Template and click the Edit HTML button


      ...click anywhere inside the code area and press CTRL + F to open the search box:

      Step 2. Type or paste one of the below lines inside the search box, then hit Enter in order to find it:

      • 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/AVvXsEjHxMQX6RDHpE4fgDM48wPL_7oB1q5AUTIHGyAZJB9YtDA9NsaRAnykb5DDb6Tofaj37q9DPCh-krBurdcUm6NChNI-KgtSuYTtDwP-gzCoGzeir25XBcFhi6qo-gBQDadrMpN95vV6xINF/s1600/helplogger.blogspot.com(1).gif'/> :a
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi0f6IOS93VygV4td6L7lN6HzR-DD_MHaGQPUKIt-YTmfDSZXugIYYmW6QeL2dMdrRpdeenb2CDAw_sJxFIe0PKndwJar5nxZVj7BeIjGVZW26N4MlVMe7crUSnmLS7qrne6Sbr_4RHLWEN/s1600/helplogger.blogspot.com+(2).gif'/> :b
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuplDiRafzJ6m6rhBpuXusfHDwI3uo1-Dk7lcF8cLwmsCkGgCozeb3X7qtVOXMN8kyI_KS8x-_-z_gWVdPAZEGIbLCqCRKVYBqnvs14eDPhwHde1DJNCNEirfec2rZtzBEF83o-U91Knsa/s1600/helplogger.blogspot.com(3).gif'/> :c
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicv5ygw9kgzIySsWSbrx2AU-sHSwubHz6d0E5y1PPS2Fqys7ZQ3waIa8H54kJMVTYO8ptI3l2dpw5zIsynEvJM-nR5SmC9GENlqv2TOqAhzt6zkslQHvGtH-BNChu8PcWuHz5gHY2xlLnp/s1600/helplogger.blogspot.com(4).gif'/> :d
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgy96RW9zlnNz24ciTj0JLJlQhwvUf1du_3e_Id65mnKU97vlrROtiIWZKgWep9_KzlXGIs5TcgSoR4uTWhHEBdMo1qOo7NOE4nL0QyLhl9Uq05UkuZ9_j5SYgK2lqdMsyQK_m1_U8OitPK/s1600/helplogger.blogspot.com(5).gif'/> :e
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTMGVe4cdT_VaM8eU0vfNEIRlAZIp44eun_DiTAIPv4RG6_4SfIQz0M7O3rcLUjCHAhWUyA59bRIvk8UXG7dflZ2BzWDcygq1POhhgbz5_-tYtz-akn-vXqtjvGVgA0OLyMAFonortzxuM/s1600/helplogger.blogspot.com(6).gif'/> :f
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgssAf5ENxqRcZYSGnGdgQVojNPUeEGCLGW9fPxJS1k4amWmDNltMynwNLXY0706ps5NLXJI0EUUwJLhS0Ce0j3NVupN3r5FKBvibumZ7_oSasT0Spjk7KXSy5Qm8tk-EpnNypcFjH1OtAb/s1600/helplogger.blogspot.com(7).gif'/> :g
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgCjlseZNQSYgvn3MvkUfFqH2zMshdl0Vm7O1IZ62g6mzxGC1lcCS5MbVMb3qf89gJmcio0Hx4zByvIxfFB75Ea2gbT2jR5pJZBonORIn_nh0YLocRRaVfxljaR42HgpQAMzOxgUoNhLUcP/s1600/helplogger.blogspot.com(8).gif'/> :h
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh89-NLCMIHrCN4_5cH0FjTncBkYF1hGfIt8Eqo3k69eDn3x5j19m0v8aWBYsTgaHOvRjRPpSLJ7KtvY01fW7jrPMNy2LfOVUuc5q6SNUWzLXEKGFiZhHfRK-JRkT28uy8dHzEUe-YBI1CF/s1600/helplogger.blogspot.com(9).gif'/> :i
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3Jbt5sJIOYEk_Bgd01GR9qHUM1ckgLqtEM6tUfHbwnFXiipeNijKFDJwiXDPNKrfsPUcmuvX5fNHf-waYj6mRgn88fm6kkFWna9bCdynH1L7PXuiJUSwAa4d2c4zN_5I1wfIDeuf9MLw3/s1600/helplogger.blogspot.com(10).gif'/> :j
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuKA2KSEx10bdtr-1dpzhjnErsd1Q8JAyj6UwemkyfQNdhEoEZtup5014gFs0rOpAm14D-WiEXVwVnl1CAyCP1E5YHvrbEtQxfD4UmS2vIGDo9bQ9OqaD_Y9vy3tw-YH5cDNiSqAUDbqDv/s1600/helplogger.blogspot.com(11).gif'/> :k
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2SRjTOSjNk8WN9ZkScKkKGriktNsM1pMd_TYm_tDQ7DMsx7uYIozgBG1xj5NYFYVEPeoTRU9fWQl8Ns2pFkAFYbT_GE_XVt5KKgbEZ-xRkBBq13vZm8zXcrXwetushc-1DHAn9pgmxhwd/s1600/helplogger.blogspot.com(12).gif'/> :l
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9a5AK-IwxUcCkgwqFu4WQEOdYGCVu6sv7hWEyNK3L8BneRoyMa_64wl8OYRIQUCGDW019kUYqfsIIoZH5YammHcytsB0kZoydGkgOBlrW2OpC1sRSn6L1UBJfukf-ba5x1MBDOCPi9sjf/s1600/helplogger.blogspot.com(13).gif'/> :m
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgZJLGdm-NtlElfcVIMJ2cpmsySx9XEuM_Zwja8KP3L-aWQvKoYegD0Ai1Kdg6ewe3oK-SBQpTfDGW4EtTNm787CUqcNKFfzeMBDI1EWD7h_CeJAAq8PeR0_8Nl8CzrYVgDxiCiATyVI_P9/s1600/helplogger.blogspot.com(15).gif'/> :n
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhS7cjJnhr1mcyMyFJCYj-CjYMTgyecMSbaszXRgzHjzZfKNzN6uXXaC1STFfrvsXo-EOViHPZGrYvbgM0ZZN0TZlnqlqIcRnOdrax9YEvAMyqTqwI-yYnslEf4F23WLGDctczbU_b52Mq/s1600/helplogger.blogspot.com(16).gif'/> :o
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6zB7yoyj94T7823fMTe98pMYIjvRgyamoQQ1dn7SG9rCHSQ4Jkj9PcblQTbDAgiHr9-6cNXeA9rFh4yqDe3arLpKfB_rGQMW129yA_LHUvWX2-U43hKKt5uQsIOdFmDu7xKSQFUnR4f7l/s1600/helplogger.blogspot.com(14).gif'/> :p
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgP1qsgMhXnF8yc2GZ4REGov-7flNMitnVGxJGbLuk53tXQUOs63xKS5UUPzs1RBYM2BgfJApXHu0zDjNlrr5M1LS0Y3V9rHdTnKGviwg-p2j-8BnH8SEcc-aL-TK_aeZIoQdpuVBYJeuHb/s1600/helplogger.blogspot.com(17).gif'/> :q
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjCzKWSS_KNngXE_TDRJVEE0Jbn0FGf1eKkwVrceA1vaZZXhBMjxI1BZ12zMi9jw2SZW4oWWycr3VJs6-pSyQM6Tiz4levEWjMqQ4Lh2UoldM7pvTKVffge536-pufVlYv97UwTFdcqMery/s1600/helplogger.blogspot.com(18).gif'/> :r
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPWprxlu0s0hueEvWyJ7STvKLV_Vp-kSh374ei4fV8mY4_nUjKYMhWW7zdHAfrayg0_IqUMmg2rAvcl8LgO1P2dgFx0i3qgWsFTj1Bdx7kHFIubsuAsJUSV7-kh1XJSOwesO2Fqggv8Nsl/s1600/helplogger.blogspot.com(19).gif'/> :s
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj95CC6pqtX1OSczX-xgI7vEUNpwUpD5eMRO6_JXD9bp95esITLQbuHMDE67Plu2vQXv70E8dR71PHS-0HQjqerd12JuC4sHOLmWqH2qq_iSh1sk1wrWOInSXDDeVtZhJxaZyGdrvtdaTkf/s1600/helplogger.blogspot.com(20).gif'/> :t   <a href='http://helplogger.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://helplogger.googlecode.com/svn/trunk/facemood emoticons.js"/>
      • For threaded comments: 
      <script type='text/javascript' src="http://helplogger.googlecode.com/svn/trunk/facemood emoticons threaded.js"/>
      Step 6. Save the Template and hopefully, now you can enjoy commenting by adding these cool emoticons.

      Sunday, May 6, 2012

      How to Change Default Anonymous Avatar in Blogger Comments

      Earlier, you've seen how you can change the size of the avatars in blogger comments and now I will show you how to change or customize the default avatar of anonymous commenters or Blogger users with no picture on their profiles. While Blogger announced the new threaded commenting system, we can still customize it by adding a jQuery plugin to our template and then replace the default anonymous avatar that can be found on this address: 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

      Replace the Default Anonymous Avatar on Blogger Comments


      Step 1. Go to Dashboard - Template - click on the Edit HTML button


      ...click anywhere inside the code area and open the template search box by pressing the CTRL + F keys

      Step 2. Type or paste this code in the search box, then hit Enter to find it:
      </body>
      Step 3. Just above the </body> tag, add the following code:
      <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/AVvXsEjdHeCHNoJORlIsvMGKQJjiviehCmuTOVHOownow06mBttoc8djuuHRrlO4U2z7v9SPuMs8lbI38Sgaazq-w7HLqSODXBwMn2hFEvWkp0EUvHrfJsnLoiYZdcZx8izN-BfSezfPZ39G43w/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/AVvXsEhDZtl-8K4f3l-CvL2n_OrKkozmLko5ewD583dwfX5ultroH8AuV2Xpi3xVl_LxbLg-Dwjjo72yEFVznQmK1wYWfJMiYpRnktWI04pbxa-V-dfKMV4e_P0ik3jpVBEI0xVVn0wYLAfeUEM/s1600/blogger-user.png&#39;)
      .ssyby(&#39;blank&#39;)
      </script>
      Step 4. Save the changes by clicking on the Save Template button

      Changing the default avatar

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

      You can choose an avatar from here and then copy the url of it:


      https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdHeCHNoJORlIsvMGKQJjiviehCmuTOVHOownow06mBttoc8djuuHRrlO4U2z7v9SPuMs8lbI38Sgaazq-w7HLqSODXBwMn2hFEvWkp0EUvHrfJsnLoiYZdcZx8izN-BfSezfPZ39G43w/s200/default_avatar.gif


      https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhb7n0_VChumxdLLQYa0neruGyS4KUXW-hknCjP4BUM5AdUhKE_EjcV4dpzp6p_VXYpWaL2_vUTIlEbaNPw5se5nAYqucHPOTHp9R4U3rjBm5MYFa9YVxQEkqnnRCEV9Hs4bw1sk3wjFVg/s1600/facebook.gif


      https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgVL7VdQdCKZZnmtWS2urtDwS5SXTXaVZcNDd_YViiPmMnGmtgeteyPlt1OxVezUbiR0e6Co4swoFDIpkEZtvVpQu4VPOIK0rcSjwozXawpp6wOomKU-ZpU452jYVhdCHBIH9UMjqkJUcA/s1600/anonymous3.png



      https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgacBpqN06iKBInoY_YUxgK8emh9WGhjry1csrp1RW6iE__BUVwL5C38kJyu7InUeFEHzlrsLB_COHefNSfwhIw_CKa8jT3S_6VIHsEHIO8rJ1ZQnmYcznskK8prKaGKipt_ceQWvJJJlok/s1600/blogger-user.png

      That's it! If you found this trick useful, please consider sharing it.