How to Hide Blogger Sidebar to Display AdSense For Search Results

Posted by Unknown

When visitors are searching for content on your blog, you have the following options to display the search results: opening the results in the same window, in a new window or within your own site using an iframe.

But the best option is to display the search results in your own site/blog, mainly because you are not sending people off your blog and when they are taken to a new page of search results, so it could be confusing many times because it doesn't look anything like your site or Google. Therefore, displaying the search results within your site, could look more professional and could also increases your page views and your revenue from the ads on the search page.

A problem that many bloggers are facing is that the page which displays the AdSense for search results must be at least of 800 px wide, so the posting area must be of minimum 800px and there's nothing like that in most of the blogs.

So, what we will do in this tutorial is to set up the search results to be displayed in a static page (none of other posts or pages will be affected) where we'll remove the sidebar, so that we'll have enough space to make the post/page section of 800px wide. Also, we will create a static page specially designed for the search results, then create a new AdSense for search in our AdSense account and finally add a small snippet of code top in your Blogger template to hide the sidebar in that specific page.

Search results span the width of the page with the sidebar hidden:


Display AdSense For Search Results Within Blogger Page

Step 1. Create a new static page on your blog, you can give it the title 'Search Results' but leave the content section empty and then Publish the page.

Step 2. When you publish the page you have the option to add the page to a menu, choose the third option 'No Gadget Link To Pages Manually' click 'Save and Publish'. OR in case this screen will not appear, right click on View Page and select Copy Link Address. We will need this URL of the page when creating the AdSense for search.

Step 3. Go To Your AdSense account, then go to My ads tab, select the Search option and Create a New custom search engine. Follow the steps until you come to the Search results option.

Step 4. Select the 3rd method "on my website using an iframe", then Enter the URL of the page you created into the URL field and continue.


Step 5. Follow the rest of the set up process, at the end you will be given two pieces of code. The first piece of code is for the actual search bar that you can paste into a Html/Javascript gadget in your sidebar or wherever you want it. The second piece of code you must copy and paste into a new HTML/JavaScript gadget and after clicked on Save - drag it above the Blog Posts area


 Now that you have your page set up with the search results code and your search bar code in your sidebar, it is time to add a snippet of code to your template to remove the sidebar.

Adding The Code In Blogger To Change the Results Page Layout

Step 1. In Your Blogger Dashboard, go to Template > Edit HTML - then click Proceed 


Step 2. Select the "Expand widget templates" box



Step 3. Find (CTRL + F) the following piece of code

]]></b:skin>

Step 4. Just below it, paste this code:

<b:if cond='data:blog.url == &quot;PAGE-URL-HERE&quot;'>
<style>
.main-inner .columns {
padding-left: 0px !important;
padding-right: 0px !important;
}
.main-inner .fauxcolumn-center-outer {
left: 0px !important;
right: 0px !important;
}
.main-inner .fauxcolumn-left-outer, .main-inner .fauxcolumn-right-outer, .main-inner .column-left-outer, .main-inner .column-right-outer {
display: none !important;
}
</style>
</b:if>

Note: Replace PAGE-URL-HERE with the url address of the page where the search results will be displayed (the one you have added at the step 4)

Step 5. Now Save Template and you're done!

This simple trick allows you not only to hide the sidebar in the search results page, you can, as well, hide it in any page you want... just create your page and follow the same steps. It is also good to hide the sidebar in Privacy Policy Pages, Contact Pages and in all the non-content-based pages with little content or no content at all.

Make sure to check out other interesting AdSense Tutorials.
If you need more help, leave your comments below.

More aboutHow to Hide Blogger Sidebar to Display AdSense For Search Results

Show Blogger Image only in Homepage and Hide it in Post Page

Posted by Unknown


To hide images/pictures from our blogger posts and to make them appear only in homepage, we will have to add just a small piece of CSS code in our template and then use the class "hidepic" each time we want to hide an image.

Just follow the next steps:

Step 1. Go to Dashboard - Template - Edit HTML ( click on Proceed button )


 Step 2. Select "Expand Widget Template" (make a backup)

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

        }]]></b:skin>

    Step 4. Copy and paste the following code just below it

    <b:if cond='data:blog.pageType != &quot;index&quot;'>
    <style>
    .hidepic{
    display: none;
    }
    </style>
    </b:if>

    Step 5. Save the Template.

    Now everytime you create a post, firstly add the pic you want to hide and then switch to HTML tab where you'll see the HTML code of the image you have added that will look something like this:

    <div class="separator" style="clear: both; text-align: center;">
    <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhS6EC2ik5upO18jSdfJqY0C7U_kBKGP5j97Bdp18PrFkHNGbGko0XQ_FuMTcCFw9G14eGcnY9M70UgtQo2gbwmJ0Ms1FU6l6vmYSBGef4Iv9KA7F7HmU9-kWl54ZgDSimpJZBmzIixAo/s1600/fire_bird_by_fhrankee-d32af8v.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhS6EC2ik5upO18jSdfJqY0C7U_kBKGP5j97Bdp18PrFkHNGbGko0XQ_FuMTcCFw9G14eGcnY9M70UgtQo2gbwmJ0Ms1FU6l6vmYSBGef4Iv9KA7F7HmU9-kWl54ZgDSimpJZBmzIixAo/s320/fire_bird_by_fhrankee-d32af8v.png" width="320" /></a></div>

    Note: it should be at the exact location where your image has been added 
    (if the image is at the middle of the text, then the code should be found at the middle)

    Step 6. Replace "separator" with "hidepic" - see the screenshot below:


    If you need more help, please leave a comment below.

    More aboutShow Blogger Image only in Homepage and Hide it in Post Page

    How to Remove Showing Posts With Label in Blogger

    Posted by Unknown

    label, blogger, remove, how to

    For any default Blogger layout, the "Showing posts with label" message shows up above the posts whenever you click on a label link. As it's a pretty useless and annoying message, many people like to have it removed. If that is your wish, just follow the tutorial below:

    Removing "Showing post with label...show all posts"

    Step 1. Go to Dashboard - Template - Edit HTML (if necessary, click on Proceed button)


    Step 2. Click somewhere inside the template code, then search - using CTRL+F - this code:

    <b:includable id='status-message'>

    After you found it, click on the sideways arrow next to it, to expand the rest of the code.

    Screenshot:

    Step 3. Below is this code that you need to remove - along with the first one, as well:

         <b:includable id='status-message'>
          <b:if cond='data:navMessage'>
          <div class='status-msg-wrap'>
            <div class='status-msg-body'>
              <data:navMessage/>
            </div>
            <div class='status-msg-border'>
              <div class='status-msg-bg'>
                <div class='status-msg-hidden'><data:navMessage/></div>
              </div>
            </div>
          </div>
          <div style='clear: both;'/>
          </b:if>
        </b:includable>

    Screenshot 

     Step 4. Replace it with this one:

    <b:includable id='status-message'>
    <b:if cond='data:navMessage'>
    <div>
    </div>
    <div style='clear: both;'/>
    </b:if>
    </b:includable>

    Step 5. Save the template. Now view your blog and click on some label....there should be no box anymore.

    More aboutHow to Remove Showing Posts With Label in Blogger

    Recent Posts Widget with Thumbnails for Blogger/Blogspot

    Posted by Unknown

    A few days ago, I've posted a tutorial about How To Add A Simple Recent Posts Widget but today I want to present to you a very nice Recent Posts widget that comes along with posts thumbnails and post summary as well. If you want to know how to add this Recent Posts widget/gadget to your Blogger blog, then follow the steps below:

    recent posts, blogger widgets

    How to Add the Recent Posts Widget to Blogger

    Step 1. Go To Blogger > Layout and click on "Add a Gadget" link


    Step 2. From the pop-up window, scroll down and choose HTML/JavaScript


    Step 3. Paste inside the empty box, the following code:

    <div class="eggTray">
    <script src="http://fe-blogger.googlecode.com/svn/trunk/listbadge.js">{"pipe_id":"1a6640e2a78b2c6e736f2220529daae5","_btype":"list",
    "pipe_params":{"URL":"YOUR-BLOG/SITE-URL/feeds/posts/default"},
    "hideHeader":"false","height":"500","count": 8 }</script>
    <div style="font-family: arial, sans-serif; font-size: 9px;" class="ycdr"><a href="http://fe-blogger.blogspot.com/2012/05/recent-posts-widget-with-thumbnails-for.html" target="_blank" title="Grab this widget">Recent Posts Thumbnails</a> <a href="http://fe-blogger.blogspot.com/" target="_blank">Blogger Widget</a></div><noscript>Your browser does not support JavaScript!</noscript></div>
    <style type=text/css>
    .eggTray {margin:10px 0px;padding:0px;}
    .ybr li  {border-bottom:0px #cccccc dotted; padding:0px 0px 10px 0px!important;}
    .pipesTitle {padding-top:0px;}
    .pipesDescription {display:true;}
    .ycdr {background:transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZxzxDJ6ZnK6U4CUi1QUWBTVuKdknVd64bKYUkDus7-b1hNSeNbvMQ98RP3Ys5eVmztCHcjqeOcQ8vFVn_dmYFHkSA2X8Ss6LujROb9Fo0WqtXLaJkNBUz6zWNJdyeOP8QBLwXMuSKkLM/s1600/logo.png) 0px 0px no-repeat; padding: 1px 0px 0px 19px; height:14px; margin: 4px 0px 0px 0px;line-height:14px;}
    .ycdr, .ycdr a {color:#999999;}
    .widget .popular-posts ul {padding-left:0;}
    </style>

    Step 4. Change YOUR-BLOG/SITE-URL with the url address of your site/blog (ex: http://fe-blogger.blogspot.com) and look to have no forward slash symbol "/" at the end of your url

    Note:
    • To disable the scroll bar, remove the number 500
    • By default, this widget is set to display a maximum of 8 recent posts. To change this number, replace the number 8 with the number of posts desired
    • if you want only the posts titles to appear, change true to none and "0" from padding-top:0px with 10

    Step 5. Save your widget. And you're done!

    If you need more help, leave your comment below.

    More aboutRecent Posts Widget with Thumbnails for Blogger/Blogspot

    Spraying animated subscription buttons for blogger v.1

    Posted by Unknown

    spraying animated subscription buttons blogger
    Spraying jQuery animated subscription buttons widget is an awesome widget for blogger.This animated subscription buttons created by Redeyeoperations and i modified it by adding some additional features.This widget works best in Mozilla Firefox..
    I created a widget generator for you with some important options.




     
    To view demo of this widget please click on following link

    Features

    • 5 subscription buttons
    • jQuery Animation
    • Effective CSS3 Animation
    • Color Selectable base button
    View Demo
    Step 1: Add jQuery plugin (if your blog have a jquery plugin,ignore this step)
    • Go to Template->Edit HTML [A dialog box appears click Proceed]
    • Copy and paste the below code <head> and save it
    <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>



      More aboutSpraying animated subscription buttons for blogger v.1

      Google Translate Widget with Flags For Blogger

      Posted by Unknown

      The Google Translate Widget for Blogger allows the visitors to translate your site or blog in their own language.
      This widget also auto-detect your blog language and then translate it to the readers chosen language.

      It supports 12 different languages:
      English, French, German, Spanish, Italian, Dutch, Portuguese, Russian, Japanese, Korean, Arabic And Chinese.
      google translate for blogger, blogger gadgets, blogger tricks

      How To Add The Google Translate Widget To Blogger

      Step 1. Go to your Blogger Dashboard >> Layout and click on "Add A Gadget" link



      Step 2. From the pop-up window, scroll down and choose HTML/JavaScript


       Step 3. Paste the code below in the empty box:

      <script type="text/javascript">
      function showHide(shID) {
          if (document.getElementById(shID)) {
              if (document.getElementById(shID+'-show').style.display != 'none') {
                  document.getElementById(shID+'-show').style.display = 'none';
                  document.getElementById(shID).style.display = 'block';
              }
              else {
                  document.getElementById(shID+'-show').style.display = 'inline';
                  document.getElementById(shID).style.display = 'none';
              }
          }
      }
      </script>

      <style>

       .google_translate img {
      margin: 10px 20px 0px 20px;
          height: 24px;
          width: 24px;
              }
              .google_translate:hover img {
      filter:alpha(opacity=0.30);
              -moz-opacity: 0.30;
              opacity: 0.30;
              border:0;
              }

      .more {
          display: none;
      a.showLink, a.hideLink {
          text-decoration: none;
          color: #0880C4;
          padding-left: 18px;
          background: transparent('down.gif') no-repeat left; }

      a.hideLink {
          background: transparent url('up.gif') no-repeat left;
      color: #0880C4;}

      a.showLink:hover, a.hideLink:hover {
      color: #0880C4;
       }

       </style>

       <div>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="English" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cen&hl=en'); return false;"><img alt="English" border="0" align="absbottom" title="English" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHI5WQpiUUwFM4USuet6myMIGnzAtdRCEF8kP8TzDcsnr1ehIxes4Xt9dLUBblrhps2xH4CNN0t57g9qii6hjC0yzBBg0vaYCgb7-lFlUWnJDbW5wEWS3mekCjBC0kHXIE7ZAUvaKTwnxj/s1600/United+Kingdom(Great+Britain).png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="French" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cfr&hl=en'); return false;"><img alt="French" border="0" align="absbottom" title="French" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZXJFEVVtatnmRWpIQbC3OB9g3NChjekqbMpZnefSHH1Uaoz7VK457uFAhOW7J-Zd48DFDnpb-O9zdSOri-ypQ0GCOBu2z_SVif_dW4oKH4FCGCCzSfMQPweq6A92OLg9fwj4Vyn8PgFzP/s1600/France.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="German" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cde&hl=en'); return false;"><img alt="German" border="0" align="absbottom" title="German" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSLB0K7BIuOU1baG57KxI8HNLPQsQLnX6cU1cZWX2tM-p5GNKtHG0kGEIQ_n1p0sP2JxbGD0aBMMbPiBefif_qTSOQ2tGsI0JOfchVudVik7AbObqIPI_hAAVXId3qCtv5oOYZmR-ebwd-/s1600/Germany.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Spain" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7ces&hl=en'); return false;"><img alt="Spain" border="0" align="absbottom" title="Spain" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgePhPGf_1x6OE5Xi4d4dvdVgomvCYbaOJkIaxyr0Z6TPIeFWjmckQFJLG-tGMrywZHXwz2CJ5kN0DQ2mHu_8Le0xQ5lnPqdfd2eG5n-ztKtylaHbSb8N1WFND_hXxEQmn4HqoOyiinnIcR/s1600/Spain.png" style="cursor: pointer;margin-right:8px" width="24"/></a><a href="#" id="example-show" class="showLink"
      onclick="showHide('example');return false;">More</a>
      <div id="example" class="more">
       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Italian" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cit&hl=en'); return false;"><img alt="Italian" border="0" align="absbottom" title="Italian" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9vHIvIpA9EY6m4Iopcmo_zAhxN5zymD7-ondsMs1wXOgZaEZZf7CRL0KcY1SGz87XD3aBjJJxEd3PnTTDgoAdqzmz1Fq3EhGRaQFlc1pFUnBSgKq9IkJljI1uR8UFZKJbGh0YfVk12DmD/s1600/Italy.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Dutch" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cnl&hl=en'); return false;"><img alt="Dutch" border="0" align="absbottom" title="Dutch" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh6ppF87NWi594ZGk88wEveFdO-afM4JVzP5pl-F-bmvZK7BExnuDEXzxKrdwsgCurtj-UOLG-9bq_FfmvZ9UTLTHfYwgkzV1TzcgnDaFeVn9sTgLtsgf2RKbPrp6kWoY0GVOihoI3aEugh/s1600/Netherlands.png" style="cursor: pointer;margin-right:8px" width="24"/></a>
            <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Russian" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cru&hl=en'); return false;"><img alt="Russian" border="0" align="absbottom" title="Russian" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh9Y4Rmh-xW3gwARRBCUYjERtvQ96h7dZaQ06Zl58oKfxfSEm7GO0xM2yAde-j0DiJa7SSEnXgxorYzk9EkW6gBZhkd33uaj1ZKpzIKOcCroltfzDXG9yTQXa63-GkU-nm0a7waFrurqT7j/s1600/Russian+Federation.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Portuguese" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cpt&hl=en'); return false;"><img alt="Portuguese" border="0" align="absbottom" title="Portuguese" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjW0S9EVfkP2U4PTpNQ3WN0KjqNxBeQEaLTuVPZCBrmkqI68hdoafwkLLN44peJxuyK9MskuVzBT1YfQv5IB9uMVEvboWyipehQRqMfCNMfWmUaEV9yRkmQo4tLwzutnSfL9FrUpn-R2z5o/s1600/Brazil.png" style="cursor: pointer;margin-right:8px" width="24"/></a>
      <br />
       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Japanese" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cja&hl=en'); return false;"><img alt="Japanese" border="0" align="absbottom" title="Japanese" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2glb5i3w47aEADW6AwuaJPNyAIap7JiHh20nj6rp9WUwCqTmsN5cLFxtJw3LiDrjZfghl-h3JwPpsMY5mQiLCizQ3V_KFUO6X0vlZ9SBOdbpR5_PxZhhDEZPBphQuXCNJbniZrIcAA6OB/s1600/Japan.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Korean" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7cko&hl=en'); return false;"><img alt="Korean" border="0" align="absbottom" title="Korean" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRWTzAUCzYb0CdT4aorcGdqEgSfRly-1GPVxSQNvUYJ_maianUm_ujPTyCeeLU6rh4zA7kSY75HM7XMQey51o8U0jGzc8Z_BdQSjYaEZtTHtT6s6hLAEvYhqHSrfLCT7IwvRxQRf-p6rPL/s1600/South+Korea.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Arabic" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7car&hl=en'); return false;"><img alt="Arabic" border="0" align="absbottom" title="Arabic" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBWLttZbcgtfog-ZiRiSe0AXBu3EC9iePeRQvLvMdKRChW00af6VsN7jf4qoPbuULSHyRiLH1ueQ0IHvXawY0eUS2-xh78NVeVkIxo_EDsWG_OL33F3qEQgmJLYMPR7sCoKWiHFxsKkVQm/s1600/Saudi+Arabia.png" style="cursor: pointer;margin-right:8px" width="24"/></a>

       <a class="google_translate" href="#" target="_blank" rel="nofollow" title="Chinese Simplified" onclick="window.open('http://translate.google.com/translate?u='+encodeURIComponent(location.href)+'&langpair=auto%7czh-cn&hl=en'); return false;"><img alt="Chinese Simplified" border="0" align="absbottom" title="Chinese Simplified" height="24" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhRJdcbgamNNKtMhbzln66i3xtNRbUX5CQnONPhueqM7muWPKpXvduHWRBCGxTFMkKrEuBc9k95tIsG0YU8wkti88xud0Vj7peh4dxvOgbEs58V8v0CsOLZnfv0eYhw72BdNE-ZCmARuk-1/s1600/China.png" style="cursor: pointer;margin-right:8px" width="24"/></a>
          <p><a href="#" id="example-hide" class="hideLink"
          onclick="showHide('example');return false;">Hide / </a><a href="http://fe-blogger.blogspot.com"><font size="1px">Get this widget</font></a></p>
      </div>
           </div>

      Step 4. Now click on Save

      google translate, blogger widgets, gadgets for blogspot
      And you're done! Enjoy (:

      More aboutGoogle Translate Widget with Flags For Blogger

      Simple Recent Posts Widget for Blogger/Blogspot

      Posted by Unknown

      The main advantage on this Recent Posts widget is that it will show not only post titles but also post excerpts or snippets and it's easy to customize/ apply different style on it. To style it into your own design, you just have to modify the CSS style - you can change the link or background color, the size and color of text/links.

      What you can do with this widget:
      • display post titles only
      • change the number of posts
      • change the number of characters of the post snippet/excerpt
      • show the post dates

      See the screenshot below:

      How to add Recent Posts Widget to Blogger

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


      Step 2. From the pop-up window, scroll down and choose HTML/JavaScript


      Step 3. Select & Copy the code from one of the options below and paste it into the new HTML/JavaScript:

      Option 1: Recent posts widget with snippets

      <div id="hlrpsa">
      <script src="http://fe-blogger.googlecode.com/svn/trunk/recent-posts-with-snippets.js">
      </script>
      <script>
      var numposts = 5;var showpostdate = false;var showpostsummary = true;var numchars = 100;var standardstyling = true;
      </script>
      <script src="http://your-blog.blogspot.com/feeds/posts/default?orderby=published&amp;alt=json-in-script&amp;callback=showrecentposts">
      </script></div>
      <div id="rpdr" style="font-family: arial, sans-serif; font-size: 9px;">
      <a href="http://fe-blogger.blogspot.com/2012/04/recent-posts-widget-for-bloggerblogspot.html" target="_blank" title="Grab this Recent Posts Widget">Recent Posts Widget</a> by <a href="http://fe-blogger.blogspot.com" title="Recent Posts Widget">fe-blogger</a></div>
      <noscript>Your browser does not support JavaScript!</noscript>
      <style type="text/css">
      #hlrpsa a {color: #0B3861; font-size: 13px;} #rpdr {background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWB1w2RlUd5-LOy3TO7adZVbbYXiQ8mPrIb-GWpNWiY6aIJGAA8pBZ1Y2zii2pBBnWzpUvUWDc0y691u57ig8kzjeGTbTWnd68U-sxCxP5KlbYwKQmskW9rpfGNH10eaAbHlCHaG5uMDNy/s1600/blogger.png) 0px 0px no-repeat; padding: 1px 0px 0px 19px; height:14px; margin: 5px 0px 0px 0px;line-height:14px;}
      #rpdr, #rpdr a {color:#808080;}
      #hlrpsa { color: #999999; font-size: 11px; border-bottom:1px #cccccc dotted; margin-top:-10px; padding-bottom:10px;}
      .hlrps a {font-weight:bold; }
      .hlrpssumm {}
      </style>

      Option 2: Recent Posts Widget Showing Post Titles Only

      <div id="hlrpsb">
      <script style="text/javascript" src="http://fe-blogger.googlecode.com/svn/trunk/recent-posts-with-titles-only.js"></script>
      <script style="text/javascript">var numposts = 10;var showpostdate = false;var showpostsummary = false;var numchars = 100;var standardstyling = true;</script>
      <script src="http://your-blog.blogspot.com/feeds/posts/default?orderby=published&alt=json-in-script&callback=showrecentposts"></script></div>
      <div style="font-family: arial, sans-serif; font-size: 9px;" id="rpdr"><a href="http://fe-blogger.blogspot.com/2012/04/recent-posts-widget-for-bloggerblogspot.html" title="Grab this Recent Posts Widget" target="_blank">Recent Posts Widget</a> by <a href="http://fe-blogger.blogspot.com" title="Recent Posts Widget">fe-blogger</a></div><noscript>Oops! Make sure JavaScript is enabled in your browser.</noscript>
      <style type=text/css>
      #hlrpsb a {color: #0B3861; font-size: 13px;} #rpdr {background: url( https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjWB1w2RlUd5-LOy3TO7adZVbbYXiQ8mPrIb-GWpNWiY6aIJGAA8pBZ1Y2zii2pBBnWzpUvUWDc0y691u57ig8kzjeGTbTWnd68U-sxCxP5KlbYwKQmskW9rpfGNH10eaAbHlCHaG5uMDNy/s1600/blogger.png ) 0px 0px no-repeat; padding: 1px 0px 0px 19px; height:14px; margin: 5px 0px 0px 0px;line-height:14px;}
      #rpdr, #rpdr a {color:#808080;}
      .bbrecpost2 {
      padding-top:6px;
      padding-bottom:6px;
      border-bottom: 1px #cccccc dotted; }
      </style>

      Step 4.
      • Change 5 (option 1) and 10 (option 2) with the number of posts you want to display. 
      • Change false to true if you want the posts dates to appear 
      • Change 100 (option 1) if you want more characters to be displayed.
      • To change the color and font size of the links, modify the values in blue (links) and violet (font-size)
      • To change the style of posts summary, modify the values in green (color) and orange (font size)
      • Replace the your-blog text with the name of your blog or if you have a custom domain change all the bolded line with your address like in this example:
      http://www.your-site.com/feeds/posts/default....

      Step 5. Save your widget. And that's it! Enjoy!

      If you need any help, leave a comment below.
      And if you liked this post, please consider sharing it. Thanks.

      More aboutSimple Recent Posts Widget for Blogger/Blogspot

      A Beautiful jQuery Drop-Down Menu For Blogger Blogspot

      Posted by Unknown

      Alright, this time, we are going to make a stylish and simple jQuery drop down menu. The main objective is to make it as simple as possible, with some little jQuery effect and easy to customize/ apply different style on it. To style it into your own design, you just have to modify the a tag CSS style. You can change colors or put background images, or the size and color of text.
      jquery menu, menu blogger

      Steps Adding the jQuery Drop-Down menu

      Step 1. Go to Dashboard - Template - Edit HTML - Proceed


      Step 2. Expand Widget Template (make a backup)
        jquery drop-dowm menu


        Step 3. Search for the following code:

        ]]></b:skin>

        Step 4. Add the following CSS code before/above it:

        #jsddm {
        height: 40px;
        margin: 0;
        overflow: visible;
        z-index: 2;
        padding: 15px;
        position:relative;
        }
        #jsddm li {
        float: left;
        list-style: none;
        font: 12px Tahoma, Arial;
        }
        #jsddm li a {
        display: block;
        white-space: nowrap;
        margin:1px 3px;
        border: 1px solid #AAAAAA;
        background: #cccccc;
        background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#cccccc));
        background: -moz-linear-gradient(top, #ebebeb, #cccccc);
        padding: 5px 10px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        text-shadow: #ffffff 0 1px 0;
        color: #363636;
        font-size: 15px;
        font-family: Helvetica, Arial, Sans-Serif;
        text-decoration: none;
        vertical-align: middle;
        }
        #jsddm li a:hover {
        background: #C8C8C8;
        }
        #jsddm li ul {
        margin: 0;
        padding: 0;
        position: absolute;
        visibility: hidden;
        border-top: 1px solid white;
        }
        #jsddm li ul li {
        float: none;
        display: inline;
        }
        #jsddm li ul li a {
        width: auto;
        background: #CAE8FA;
        }
        #jsddm li ul li a:hover {
        background: #A3CEE5;
        }

        Step 5. Now find this piece of code:

        </head>

        Step 6. Add this code immediately before/ABOVE it:

        <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js' type='text/javascript'/>
          <script type='text/javascript'>
          //<![CDATA[
        var timeout    = 500;
          var closetimer = 0;
          var ddmenuitem = 0;
        function jsddm_open()
          {  jsddm_canceltimer();
          jsddm_close();
          ddmenuitem = $(this).find('ul').css('visibility', 'visible');}
        function jsddm_close()
          {  if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');}
        function jsddm_timer()
          {  closetimer = window.setTimeout(jsddm_close, timeout);}
        function jsddm_canceltimer()
          {  if(closetimer)
          {  window.clearTimeout(closetimer);
          closetimer = null;}}
        $(document).ready(function()
          {  $('#jsddm > li').bind('mouseover', jsddm_open)
          $('#jsddm > li').bind('mouseout',  jsddm_timer)});
        document.onclick = jsddm_close;
          //]]>
          </script>

        Step 7. Click on Save Template button.

        Step 8. Go to Layout > click on "Add a gadget" link


        Step 9. Choose HTML/JavaScript from the pop-up window



        Step 10. Paste the following code in the empty box:

        <ul id="jsddm">
          <li><a href="#">Home</a>
          <li><a href="#">Link 1</a>
          <ul>
          <li><a href="#">Drop 1-1</a></li>
          <li><a href="#">Drop 1-2</a></li>
          <li><a href="#">Drop 1-3</a></li>
          </ul>
          </li>
         <li><a href="#">Link 2</a>
          <ul>
          <li><a href="#">Drop 2-1</a></li>
          <li><a href="#">Drop 2-2</a></li>
          </ul>
          </li>
         <li><a href="#">Link 3</a>
          <ul>
          <li><a href="#">Drop 3-1</a></li>
          <li><a href="#">Drop 3-2</a></li>
          <li><a href="#">Drop 3-3</a></li>
          <li><a href="#">Drop 3-4</a></li>
          </ul>
          </li>
         <li><a href="#">Link 4</a></li>
          <li><a href="#">Link 5</a></li>
          <li><a href="#">Link 6</a></li>
          </li></ul>

        Note :

        You must change links titles and replace the # symbol with the URL address of each of your links

        Step 11. Click on Save

        Important:

        - if your menu is on the sidebar, or footer, just drag it to your page header and click and click Save again.
        - if drop down links are not showing, do the following:

        Go back to Template > Edit HTML and search (CTRL + F) for this code:

        <b:section class='header' id='header' maxwidgets='1' showaddelement='no'>

        You should change 1 with 3 and no with yes like this:

        <b:section class='header' id='header' maxwidgets='3' showaddelement='yes'>

        Save the Template.

        Next thing to do is to go to Layout and drag your menu immediately below your header


        Then click on Save Arrangement


        Here you can see the DEMO.

        Enjoy! :)


        More aboutA Beautiful jQuery Drop-Down Menu For Blogger Blogspot

        Google +1 button and Badge for Blogger

        Posted by Unknown

        Google +1 button and Badge for blogger
        Google's new GPlus +1 button for blogger,that lets to share your blog with like minded people across the world. Blogger introduces two Google+ gadgets (+1 Button and Google+ Badge) .Google+ button is almost same as Facebook Like button.Unlike the Google+ button appears below the post,the gadget is specific to your blog.Google+ gadget allows your visitors to recommend your blog and able to share on their circles.
        Here i am going to show how to add this gadgets..


        • Sig in to your Blogger
        • Go to Layout and click Add Gadget
         
        Google +1 button and Badge 
        • Take +1 button or Google+ Badge as you need
        • If you take Google+ badge give page ID
        Google +1 button and Badge
        •   Thats all....
        More aboutGoogle +1 button and Badge for Blogger

        How to Add Emoticons/Smileys in Blogger Comments

        Posted by Unknown

        Emoticons/Smileys are a great way of making discussions more interesting and fun, so it's a pity that Blogger don't support them. This tutorial will show you some simple steps on how to add some very cute emoticons called Kolobok to your Blogger/Blogspot comments, so that you and your blog visitors will be able to have an enjoyable time together.

        Now available for threaded commenting system too!
        emoticons in blogger, kolobok smileys, threaded comments



        How To Add Kolobok Smileys In Blogger Comments

        Step 1. Go to Dashboard - Template - Edit HTML - Proceed


         Step 2. Expand Widget Template (make a backup)


          Step 3. Search (CTRL + F) for this tag:

          </body>

          Step 4. Copy and paste just above it, this code:

          • For previous commenting system (comments without reply option)
          <!--kolobok-smileys-->
          <script src='http://fe-blogger.googlecode.com/svn/trunk/[fe-blogger.blogspot.com]smileys.js' type='text/javascript'/><noscript><a href='http://fe-blogger.blogspot.com/2012/04/how-to-add-emoticonssmileys-in-blogger.html' target='_blank'><span style='font-size: x-small;'>Add emoticons</span></a></noscript>
          <!--kolobok-smileys-->

          • For threaded commenting system (comments with reply option)
          <script src='https://fe-blogger.googlecode.com/svn/trunk/kolobok threaded.js' type='text/javascript'/>

          Note: ignore steps 5-8 if you are using threaded comments!

          Step 5. Now find this code snippet:

          <b:loop values='data:post.comments' var='comment'>

          Step 6. Paste the following code just above it:

          <div id='smileys'>

          Step 7. Find the following code (look carefully, it should be somewhere below the code from step 5)

          </b:loop>

          Step 8. Paste the following tag just after it:

          </div>

          Step 9. Now find this code:

          • For previous commenting system:
          <data:blogTeamBlogMessage/>

          Note: if you'll find it like 4 times, stop to the 2nd one!

          • For threaded commenting system:
          <div class='post-footer-line post-footer-line-3'>

          Step 10. And add this code just after it:

          <b:if cond='data:blog.pageType == &quot;item&quot;'><script type='text/javascript'>
          //<![CDATA[
          function moreSmilies() {
              document.getElementById('smiley-more').style.display = 'inline';
              document.getElementById('smiley-toggle').innerHTML = '<a href="javascript:lessSmilies()"><div style="font-size:small; font-weight:bold;color:#000000;">Hide Emoticons /<a href="http://fe-blogger.blogspot.com/2012/04/how-to-add-emoticonssmileys-in-blogger.html">Add Emoticons</div></a></span>';
          }
          function lessSmilies() {
              document.getElementById('smiley-more').style.display = 'none';
              document.getElementById('smiley-toggle').innerHTML = '<a href="javascript:moreSmilies()"><div style="font-size:small; font-weight:bold;">Show Emoticons</div></a>';
          }
          //]]>
          </script>
          <div class='emoticons'>
          <span id='smiley-more' style='display: none;'>
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUlLG0F-An-gWgUWmCouWwKZa8hjC_wDP8PmnUI_4A2-rtgToBxxN9NIBS3y6kmZPegXHjD0CIf7xx8FTexzCbSo4ExjTskZxFp48DFz1xAJXRqMXPv2iqNn8Noda1qtIgcsXvKdDcYQI/s1600/smile3.gif'/>:)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXYIH-tvCIGELpQF8GJdUq7Wsz_21GEIFFVqHPn6mOQY9wimBn9t5YXxxHnfHubM02xikXu3EKK11ABtmfk6nJpFye7B-38VuJVlIj2ZJjCEkfZGK0cB4wIugmq9-kkkU92voK6_70fK4/s1600/sad.gif'/>:(
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggx8frte7dB4aolmoiyBFDgERGceqNdSDgtS2DXTfwXJnYjJKC1AtlXfnRzJ0NMIIJSKE9IqGBdcfggw2Z_atrpvxrL7TyMMdHLlNAAJcJ4AfqEjpLIWN_cJj2QBBZno2R5-Wep1s1piU/s1600/taunt.gif'/>:))
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrAujln-Ai1AqOf1uWVqki61vXmejfJF_GkEJDDn0fqhPBUNN-G07_3tDGuw-8c4nLaTOAFu_7wisKdVhglC_TChi-srn-E5xqeWbHW5pnkqUvP9E4tHv7zN9VCz2h9Tposy1HVYumxgQ/s1600/cry2.gif'/>:((
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjFlaWeXtInQW6e3edJHqw4py1Tybqhs7iAtb9DOXZk9C_0YPDbsJagiX5POFcrtri5miZlObp0p8AfpucqTFn0Q-WB8tdAyo6GJELUVAh-MY5FxDaCg_Bx5ATMPwTdMLE-RlQxj3e3ykY/s1600/rofl.gif'/>=))
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtjW3Set1yAP9e-GjCPx5oVBKYOxRRJ2GmTHni8_6ES3vg0ZM3Afgb938aJwB9IEl3o5omwKZrV5b4VYiXKqX5CB2w0cbV24NfUB5W-hCDATzW8DkxhyXG2M0o6M2Bsu1JtfWInPy3Uqk/s1600/suicide.gif'/>=D&gt;
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh7L3dXuZ1PO4SSyObzwTBR0_tokM6UgvXEkN1n2Gq7Xut5IjMjkgUU3p5G-RWNxUW_KAQffidivbrYzJ2Td7F0F0eou_3xjSSUJLyQqGcHtg59Y4srTkAkuewn7P_lCzzjvCl3I_zlbTs/s1600/biggrin.gif'/>:D
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUUdNq6_Jrt-EctpnmsyzaUnMvS6jEBM3zN0CDdHdrcFg4NkTPaXtzPeApCyMoagfm1lpdDmCkILVvBbOhPkqA7w3Sa4Vrrw2tGTCVD5VL72u-USrLQsSbdpdzgSukN8Jj8ziWaG_zBJg/s1600/tongue.gif'/>:P
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjQMiEProhAgUFRiFrpWXbmyWlbIWbvnHXuq0Xtwt_tmbktI4d4bsJpgtXSFU_3jufnYV7-CxziG_YZ2bIimqf4jOC3NiigYmx8TFftSfA8nu6H0_0AhuSwGcqZsog2mVu7cdhpmGh9j4U/s1600/shock.gif'/>:-O
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihZgYQrUINsaEsFc07lWFBRj9wbYw2HNYiU6HwhaJ8qRMppODduNv7ML12F_v9eKZeEt7C_Mz-oQ9AgzKjhL-fPq8lIkjSIa5VcVt4qEs-JiR-vs_OoBLXOxxGYA28oSpcMfMKgqyE4wg/s1600/think.gif'/>:-?
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjxkOM_Lm5_J1uehBH4xkq7_zco3yBQj1TEG2y8CjccrQfXnstPl-LhXqlFGxoiWYDEzC6y84B04P8YKyNy4CpvSXfbyiKJ1i-c9rYRNeFwTBmWbYbfXZewdKitsTRpPYC1TKhYoBAUYpQ/s1600/unsure.gif'/>:-SS
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjuF2sUfZXYD-rA1jM1fWFKya8J9jwAFmxv2DhYM2njVh-M6ohzz8sMJ4RpM33D8FUIILR6Z5HYXdhs0HeCy7EPw5l8dzJv24dO05EWSVXHm6STrpdqV2wxXmHn-3ejtWPA0g3INg3qNAs/s1600/flowers1.gif'/>:-f
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj9PWBFiRCH9AtLwvTeP513AKfijotKN26pcQDZYvVC2ndljvg-aF9bgPYBoHzw0XBxyRYEmGagP7vZ8JWjwYiH4M1LPg-kOjEt2ND7eOdybydhcntTM3c0qSwA_Qnf1rG1nVXBMHEc1Us/s1600/doh.gif'/>d(
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiMTtwKAle9uvfuTYgvHxaSXiJQi1nhyphenhyphenWG4fsoUzS-M3f8m8ODBNQmPXN4rZhP5fMyTj94EKpW0L6zyGHUbLVMKsqRjOD-6wh_eUUWfQARJ2q2-Vw0Z6kTL3pc-xdRjNFnbCyUUdt34FHM/s1600/air_kiss.gif'/>:-*
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg-mZmFfn2Xotg2nhwmcb4Dy_SYr711q5z4-1ZNCEVz9p0it8pBAoM4A75fkmKemDaGkY0deXV5r86ntJC2bfThpuIZUoLi-w93FIWzpMfy9w6p5HbRAcXWPU3WgYphJ76E5_M9ygeKl3Y/s1600/threaten.gif'/>b-(
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1psIWKnIiFrj4fao5lTeWnhINevVa_wg0E1u7-QYIUf8BDHrusw4aCmqjmTlokxVTGrmLi2S6zfDEZQz-z-Eo9Q7MKjbEp7mlNAy8lb5kKdYqDMNeLP6qhHbczWzgeJxpVHbj_lUkOCA/s1600/help.gif'/>h-(
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhflSy2WM1kqH-rxMRBO_Ff60HMoOlvCITrieLbxNKhbl1R81pF19ozAoPVIqbHsHvZ0givNLlllWZKto-7JSGDq81_eien2wldmAIDDox_9mSCehfnncsIhz3r7Ig9PZqIoBdmvv46PG8/s1600/good.gif'/>g-)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjy0zx0rWqaVUuEM5yxgPOqa6nTwCpKNEh1UVsCTT6pBPFaxYATT-txbntkDcMu5yCCfbSQO7tm_z8FvfxS-cqd7srvO2bbd002m0nYA9F6GB8ExYmPiU2x1yf9SMxm_QMvQl-mxKN63_0/s1600/beee.gif'/>5-p
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgW3lG6Tw1yGJgZHUUGboPtGckSeGPHG3Xw9ld-zNq8ur-vBT4XcAr179JW1N0kGogm467zH7ze6zJ8G3tZV_Gf3ZyG5feIJtqBbB_uRsJ88tV9XzaGlR1tw9DN-e3vbEyssnNUi-Vpdug/s1600/yahoo.gif'/>y-)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgR8ISrZ8U2IYCWTQrBWW_zsR2yP5b3AslhaUendl5dwwGYMZo0xEXsn4mHwZ7EKSNWfwj0_ZghtuIly2ljB7x5D2KTlncmfyJ5XBUUqNfhsc6HOjsjeaa9yJD_eJpnxigPE1lbwjmA2d0/s1600/crazy.gif'/>c-)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4Gdk08ocdtzrpW0e8BZ9do788WgbPqegYhxR13l0QADwQNFZAkKQpcYN6pYdPkV52uZbpdwIZ4bxI83sTkazb1fXiLYv3r4Yt-HRCEGHwaRgNr2lx_jFix7AEXsAaEI32g7cU3b-DnBk/s1600/spiteful.gif'/>s-)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5tI3iq6MRrO7NrNXtyQj3Dua6aaIJiHGcgwIU_d_p3WHspG-xrFuVaHTTnhejHtDbB_JCNUX6Pju8N26ZKzeT0AEjcX0P4qPf_kZ12m_vHBqTR0nWI85-iNhlw-Au3BLmi2BgJrjXZBU/s1600/drinks.gif'/>d-)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj6hSV6RsGJpDRGq9hJJZPRIpJmXHy3QfE6bYj831PIatojr5JtmZoh-bA_XPl4WKaeNIc79kN4noXs8_pDmQvnMIOflOChghQkqU0XtQkgJH5YLZKsiEtZysbB4xAjbxUe4ugg54Js8Dg/s1600/cheer.gif'/>w-)
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjasuWMfSEJze-RkWbOfT9gNZi4WkIHo83cEDoFfS8V8DIxUkX-PibE3-N8wEjNLLOu57Sx8AbXhETdRmd880l_IBBsxh39euO2-XyTDd3SDxFgrhlfdlsDslcoLe-OOjPdT5bEP-hy9YE/s1600/hi+2.gif'/>:-h
          <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhv5K3wqDL7EEZMvcuzHseNEvFtzqpO6IW84yDGBwo1aeyspLqQaEYaHLgubSmRqOuBXaa8Jw-l4EfGvcUTOXQbSRgBw7UkGFLEFprci72B6hjhJmWcgyIOUvQwc1QcRdA9nwx8gOBQ4jE/s1600/give_heart.gif'/>:X
          </span>
          <span id='smiley-toggle'><a href='javascript:moreSmilies()'><div style='font-size:small;font-weight:bold;'>Show Emoticons <img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUlLG0F-An-gWgUWmCouWwKZa8hjC_wDP8PmnUI_4A2-rtgToBxxN9NIBS3y6kmZPegXHjD0CIf7xx8FTexzCbSo4ExjTskZxFp48DFz1xAJXRqMXPv2iqNn8Noda1qtIgcsXvKdDcYQI/s1600/smile3.gif'/></div></a></span>
          </div></b:if>

          Note: Ignore steps 11-12 if you are using threaded comments!

          Step 11. Finally, find this code

          ]]></b:skin>

          Step 12. Add this one below, just above ]]></b:skin>

          .emoticons {-moz-background-clip: -moz-initial;-moz-background-origin: -moz-initial;-moz-background-inline-policy: -moz-initial;text-align: left;width:400px;}
          .emoticons a, .emoticons a:hover {margin-left: 20px;text-decoration:none;}

          Note: if you want to change the size of the emoticon container, edit the red code.

          Step 13. Save the Template and you're done. Enjoy!

          If you have any problem and need help, please leave a comment below.
          More aboutHow to Add Emoticons/Smileys in Blogger Comments