SEO Search

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Saturday, 28 July 2012

How to Make the Blogger Posts Have a Calendar for the Date in

Posted on 22:03 by Unknown
It's quite common to see calendar style dates next to some WordPress posts but for the Blogger platform it isn't always an very easy task to add this. But who said you can't do it? You need to look no further than this blog. In this tutorial, we'll learn how to create a calendar style date for your Blogger posts.


DEMO

How to create calendar style dates in Blogger

Step 1. Go to Settings > Language and Formatting - Date Header Format and change the date format as you can see in my example below (put day first, then the month and finally the year)
 

Step 2. Then go to Template > Edit HTML


Step 3. Select the "Expand Widget Templates" checkbox

Step 4. And search (CTRL + F) the following line:

<h2 class='date-header'><span><data:post.dateHeader/></span></h2>

Step 5. In case you find it twice, then you should replace it twice with this code:

<div id='Date'>
<script>changeDate(&#39;<data:post.dateHeader/>&#39;);</script>
</div>
<b:else/>
<div id='Date'>
<script>changeDate(&#39;&#39;);</script>
</div>

Step 6. Now search for this tag (CTRL + F to find it)

</head>

Step 7. And paste the code from below just ABOVE the </head> tag:

<script type='text/javascript'>
//<![CDATA[
var DateCalendar;
function changeDate(d){
if (d == "") {
d = DateCalendar;
}
var da = d.split(' ');
day = "<strong class='date_day'>"+da[0]+"</strong>";
month = "<strong class='date_month'>"+da[1].slice(0,3)+"</strong>";
year = "<strong class='date_year'>"+da[2]+"</strong>";
document.write(month+day+year);
DateCalendar = d;
}
//]]>
</script>
<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<style type='text/css'>
/* Calendar style date
----------------------------------------------- */
#Date {
background: transparent url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiR3u8QSTHdZjoJZ2q9zcWeLnooPgYzrkb8g9-iMXzrhuf0XXfQa2dRVajhdJstTSBRwWNspzF2Nsl7YWLz2JxM4Ir0fi8eZA4N112310LzQZjqOYYH8hrogUgXWX_u9fBqB6gB5Uy_7zHx/s1600/calendar07.png) no-repeat;
display: block;
width:60px;
height:60px;
float: left;
margin: 15px 2px 0 -108px;
padding: 0 0 8px 0px;
border: 0;
text-transform: uppercase;
}
.date_month {
display: block;
font-size: 15px;
font-weight:bold;
margin-top:-1px;
text-align:center;
color:#ffffff; /* Month's color */
}
.date_day {
display: block;
font-size: 28px;
font-weight:bold;
margin-top:-8px;
text-align:center;
color:#282828; /* Day's color */
}
.date_year {
display: block;
font-size: 10px;
margin-top:-8px;
text-align:center;
color:#282828; /* Year's color */
}
</style>
</b:if>


Before saving your Template, we can make some changes:
  • To change the calendar style, replace the url in blue with yours;
  • If the calendar doesn't appear correctly, change -108 with 0;
  • With green are marked the areas where you can change the color of the dates

Step 8. Now Preview your Template and if everything is ok, click on the Save button. Enjoy!
Read More
Posted in Blog Design, blogger posts, Hacks, how to | No comments

Monday, 4 June 2012

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

Posted on 08:18 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!
Read More
Posted in Blog Design, blogger posts, Comments, comments tricks, how to, posts | No comments

Saturday, 2 June 2012

Numbered comments on threaded comments for Blogger/Blogspot

Posted on 15:26 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/AVvXsEifMQyWnUy9Smifo4E7-qvXl_FxeC-4KQCAG_c3JHKp5BFuEyalr4aERVlRheGMwh79taihmEsPpjDBC8nkw0K4yd4UblAv6XobuDVeE5SmPPp_ThT_sFEn7RlVPZHmj-sauUI2lUAFfaCN/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.
    Read More
    Posted in Blog Design, Comments, comments tricks, how to, threaded comments | No comments

    Friday, 1 June 2012

    How to add “Email Subscription Form” to Blogger Blogspot

    Posted on 15:58 by Unknown
    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.


    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/AVvXsEiDei9kDL-ni0Q1dN3IumZ4x_r51jvTrdmc3wPMDHtLAWBtsMgeP3RvamIhJel6r2oBwt-NG3XE8-fu8nLKTO9zFBGxtEwVZzNH1qhvLavZ9kIlwOBMcnuyfbUJkRxhsUzl-ESn3L5UNpk/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
    • Increase/Decrease the 130 width value for a wider text area
    • 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!

    Read More
    Posted in how to, Widgets | No comments

    Thursday, 31 May 2012

    Add Floating Social Media Sharing Buttons To Blogger

    Posted on 16:10 by Unknown
    The Floating Social Media Sharing is a very popular widget on all the top blogs, being a very good way to increase the number of times your posts get shared on Twitter, Facebook and other social networks. It has some of the following functions: Facebook Like, StumbleUpon, Twitter Share, Digg This, Google+ and RSS Feed Icon and each of them comes with a live counter. You can add more sharing buttons or social bookmarking icons later if you wish.

    Blogger, WordPress, Facebook, Share

    How to add the scrolling social bookmarking bar

      1. Go to Layout
      2. Click on Add A Gadget link
      3. From the pop-up window, scroll down and select HTML/Javascript
      4. Copy the code below and paste it inside the empty box.
      5. Save the gadget.

    The code to copy-paste (updated!):

    <!-- floating share bar Start helplogger.blogspot.com--> <style type="text/css"> #pageshare {position:fixed; bottom:5%; 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;} #pageshare .sbutton {float:left;clear:both;margin:5px 5px 0 5px;} .fb_share_count_top {width:48px !important;} .fb_share_count_top, .fb_share_count_inner {-moz-border-radius:3px;-webkit-border-radius:3px;} .FBConnectButton_Small, .FBConnectButton_RTL_Small {width:49px !important; -moz-border-radius:3px;/*bs-fsmsb*/-webkit-border-radius:3px;} .FBConnectButton_Small .FBConnectButton_Text {padding:2px 2px 3px !important;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:8px;} </style> <div id='pageshare' title="Get this from Helpblogger.com">
    <div style="margin-left:8px;"><div class='sbutton' id='like' style='margin: 5px 0 0 5px;'><script src='http://connect.facebook.net/en_US/all.js#xfbml=1'></script><fb:like layout='box_count' show_faces='false'></fb:like> </div></div>
    <br /><div class='sbutton'><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='sbutton' id='su'> <script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script> </div> <div class='sbutton' 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='sbutton' id='gplusone'> <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script> <g:plusone size="tall"></g:plusone></div><br/><a href='http://feeds.feedburner.com/helplogger' rel='nofollow' target='_blank' title='Subscribe To Our Rss Feed'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjXJ0-ZFDDl_rujfIohnZHxr0nzPeTfkZeZJglfrrZiwwa1C8DbRSbwUGoZaK33J2aQ-jq0qh3P1u7hz5I0BNYZ9Z2Yyhj6ILNGV6oeGsN6n8wcTevvm0wcYSnGKGe-aCvBkUsVf8TVB9-j/s1600/icon_rss_reader.png'/></a><div style="clear: both;font-size: 9px;text-align:center;">Get <a style="color: #3399BB;" href="http://helplogger.blogspot.com/">widget</a></div><!-- Do not remove this link --> </div> <!-- floating share bar End --></div>


    Customization:
    • Vertical alignment - Change the value of bottom in code line 3. The code positions the button 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 value in red of 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>
    • RSS Feed - Change the text in blue with the url address of your RSS feed.
    Enjoy :)


    Read More
    Posted in social media, social media plugins, Widgets | No comments

    Create A Rollover Image Effect (change image on mouseover)

    Posted on 07:23 by Unknown
    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 ;)

    Read More
    Posted in Blog Design, how to, Image Effects | No comments

    Saturday, 12 May 2012

    Add Facemoods Emoticons To Your Blogger Comments

    Posted on 14:52 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
    DEMO

    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/AVvXsEjkzkQ7phkytmz909LbUaIHK2t2k1t1S6aRh7ZJYQqFZpxh8_tmfQ8wtSoq95309OkHGES8nDAg3ha2iYAzk8YZFllUvc-3CaBX1O2XHzJOCSM66Uflmprc7y-XmFp224F7xljDnj4OAJUf/s1600/helplogger.blogspot.com(1).gif'/> :a
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9jv4qckweoH2ws2d3jwdGYCkr1e_tIYWVALVonTZzB0oOU2SHUeEfcx0kdgurre9NoEEJp9yvJPH2DQJKnBiR6L3W_LIVkEg7uas4YLyAVpnnSZd5ngYVnz7YcDnlhQxvJEsIqct7Nc0N/s1600/helplogger.blogspot.com+(2).gif'/> :b
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjhKLUBi3bvcGf1flgaPcbETyUiK8xr-sm5V70Ug0bNxVQg7aGPXKk4Pl3QFiIkYBvRVpe6OuKQfURPMFNkHCQo8G1IKMLpTeJU7oTILQmDhssCP0DW49tlBiJRZnVOat2ZoQ8RUm43rdky/s1600/helplogger.blogspot.com(3).gif'/> :c
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoMDGSy1Vw966_mNcI2fjc5AI6S_T1APs3X12O-jNQjhX-RpGVMz6nmWiHI1_uvpp4pwzufXSTr6Y9frEUrFaPJmRL1oVNf3YFUM6FSgY8CN5eGnRhWa5WE3qH3fzBQArGdICpruNMXlij/s1600/helplogger.blogspot.com(4).gif'/> :d
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFXSZuCxygZQWHElSv6bxLTX-JziAV9qK6Xw05as48OwJGg15N2rao7hM3kGKvXIIIQBSpjR4D5hISHZwJvTlyhOvVRWG-DIgziQ07KerMrZHkuf2aVKtfUTNyd3vjH5PePsNqI1A4qIXc/s1600/helplogger.blogspot.com(5).gif'/> :e
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidxIGR4g1ebFnILerCUzr6ZAQKAoASoovQBz1-vR5Z8NXtIWRnEXbMwbwp4e1imjOklGO-h6-sAnC8bq7TAyrJOX2iFdf-viXxUE5m7nCG4IEs5ele00T1SGQmYFhyhHyGJuUzUo1ByKb4/s1600/helplogger.blogspot.com(6).gif'/> :f
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjcGJJFHs2WWBPtykEAnALTHZlYynaqVJXRBxCH8lQ3ldufx2qd9xq8JG4mvbR5NJ6Z00VtYd0pDADAhM0jslGFVYc7p3FPz1hfyGXdySnpodiHHzLExvh_SS4_IoNg4C46J13CTj6E40aF/s1600/helplogger.blogspot.com(7).gif'/> :g
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiW6MO1a-ppxjN_J5Ow0QzSYW1TBuBxMqxRZR4j2YuhEZk4dca1WDHAiN7NYHdWe5YPwzr9OmB9aTBDEcN8a8Gxvjekx0WLmv7BMTlHfdRt2O3I5cJWf8XQABp3reAdLLjIHJ27yO0Yefto/s1600/helplogger.blogspot.com(8).gif'/> :h
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgkeLLYmWwKcJoIiapgxw6sLe7sjPYcpsjoealmQoZoIAjGRHp8fj584kAczNMyHC9dgzj8ZI-d_S_OEBPOvTfwneDC9Qd0eR7-nzT7bkTbKR4SGQ1A_ZJ29Gv9mVZtSO8W3RwA1l97CGXZ/s1600/helplogger.blogspot.com(9).gif'/> :i
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhSvnXWftpCZyeRl7ZE7qNJl4ihfU9OB_xGG9Eo1RY6ggPuhoB1bDjaIdLU5rwsAdS29u3grQ0iIlhcypyyXsbE7xKzk8jeWY06ptGfM2LNlOLH1WVY8NwMC-z90d6DjD8TdmV5uGMxYyW-/s1600/helplogger.blogspot.com(10).gif'/> :j
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjIebxfAo5DZeRph-T631s_1Jfzrv9623u4BMNOlPUJiqCFYzKNb8vTfdAswOVyvF1pBMNzUAcNnvSqoyiM1ZDYwictPc3xwOzp4qAoz5xHyTF_AcxrBnkWpE0BjbCIPnP02IqkSEiplDfu/s1600/helplogger.blogspot.com(11).gif'/> :k
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhM73_H2Ug4ZYRMKoAGJt5MRj-cfNTUOO_VqqWznLFsBxUOuXsbfQpHxlY-EVXwXnrGjk6r63LjLMZRtwjMWnvl2pFRTS0tlQZvIOkN_ZOD1xl4G98HwBH-cHjMvSpyPouEeNWgSh2Mbbyl/s1600/helplogger.blogspot.com(12).gif'/> :l
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWAs8FcBFuTYYhBYWOnlzkNM7TykQ2vX5A4zxd-FqouuDKj4YjNfMH1dIRwzaqy3OaSllqNpn_Jv6PSd5frbooTlvV4jWpHnrB7JnZIWPMDuDJxATqBuDNoDVL-az7EAahFy6Sjt8CEg3C/s1600/helplogger.blogspot.com(13).gif'/> :m
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhe3D2aSkZlA3LyeSnlXYsWstqTEXpHA-ZuHF_mD3ybM-PfPFMKBay8BEmcqPjPFAaFq-1BPwEDz_GZ3qjQgK_Z3Eu0rbVPTX-lSvPiBLxmr6zKMwCPuzWwtRu3Slv76Y7HTedJBAp0PZfT/s1600/helplogger.blogspot.com(15).gif'/> :n
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTsGzGGBFi4asVvyEvpULhmy6Z0hv3l6-1CnJt3lZ1P_CfJg0ky7uM018D8aUYF1rSVfrjQhNL6qllh_AMsHlafuR0uAeaNcn4JIMKZ082oLI4RaqSf9kHghWM9kGMbPgQ6Z5x8lJsmcHJ/s1600/helplogger.blogspot.com(16).gif'/> :o
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi28YtfhUhQFOlCrMWlvUCAxuNaIHqT2yB2PJHC1cZ6K2qwp_vBp6WkCJPodLFgX_3PYAZ3Ue-vNTw7m6z5Iz3vgtlI15QwZheQyKQ0ZUZSq-RLUTjhX4shUanBfDPC-DUfYC6QyNgJvOdI/s1600/helplogger.blogspot.com(14).gif'/> :p
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg9W-B6VSupTFsJ2TtGPY_Uyth4vkXUSHpgGKVFAnUWJW-tXtzqDdzOKYw8_XRuoOJ26OuWGe-wc28TSU_04ITxdwQ18-GgmmBlIK5EjkHqD82ObSjQCxH2W3r9bNS6WVfZZl2klGF5Diia/s1600/helplogger.blogspot.com(17).gif'/> :q
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhONeb_4RXpX7RMaZ1MPiUGwhMa_OhL0-CoHG0SwdJaVr543nQv_FcMoUm3SoQGGrwJ19xiJtm9diMf-JLpFoLu9_bhUFcaC4-H4pHBHOAPy_Xhs88dIcESQEOI5gdelpItX7rwVxuLWGlD/s1600/helplogger.blogspot.com(18).gif'/> :r
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVb4CIdhvE_mnCP-UkqSI2XaSoUw-8ZlR3olk36fhnwIiDJYx58z75xcy7ZKN6ODrjl9P84CGlemXQ6lbZKxDB8w_tMS-3492UZRdQyQLDOCglFBGc3DTNLjr593xTxUUNhiZpZyFrSSJr/s1600/helplogger.blogspot.com(19).gif'/> :s
      &#160;
      <img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj-BGICOVIM5as_q1sbDAqpVgOa_F-41VaJWgdJ4FNj7WYlm4cJOhtWmS0jx9nyDBNNFPC-0J8VDJvrUrU4g1jbgPDGcAHxA0cBXnFDl9KSYCNCzgeTx6q-P5kqCC_j8eV8Z3jFi28-202g/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. Now, enjoy your comments!

      Read More
      Posted in blogger, Comments, comments tricks, emoticons, Emoticons/Smileys, Widgets | No comments

      Sunday, 6 May 2012

      How to Change Default Anonymous Avatar in Blogger Comments

      Posted on 05:31 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/AVvXsEhlY8RGkZNBQ-DpJ2mRif3F1HRBWAqWV38VYjlrhpXommTiiIkEKQDCZdyD-s764I5QLhn6e70ZpZor2mNNGwfhbIFd4RnhrsEOohLh-dZR3XtkAy9pN38gTSA0n9Ee-duBGtwqwo8sTUU/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/AVvXsEhERtlIi4duP73i-tObVKDeBx1tUonu577nIR81g6NR4HBamsjUyWWjG0wWrxi9GaCe1yDAXP4gRLei1ylREJToxywjbMcJnlUN1ZrxXrX0MWNlyFZA4llpl-pOaSvIp6gwDoFWibrb574/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/AVvXsEhlY8RGkZNBQ-DpJ2mRif3F1HRBWAqWV38VYjlrhpXommTiiIkEKQDCZdyD-s764I5QLhn6e70ZpZor2mNNGwfhbIFd4RnhrsEOohLh-dZR3XtkAy9pN38gTSA0n9Ee-duBGtwqwo8sTUU/s200/default_avatar.gif


        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhX2xLlJKGVoe-c5bd3CCAsUzWYDnXgj3K1-F54KxxirA4LwgQDnRtWP42jAD3yfo8pETQ8RjoATF0GgOqdPta4-rTc6f6Qn1LYRAQTZlAJNxvlt0md3gSQj4sh0433nPO-zkiBz2GBMR4/s1600/facebook.gif


        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVBNPo4pRNcw6X946XlsM1NpfJX92MZJn2taGGw2C8ee5k5HX8_b8gSqGJmMy7DAXxz5WWiUk3NOtOm0wc3ibw0h80_oMc8weU_QDnVWyvuEKx8EBlHvuUMb_tvpICxC20wYym7zMgLfw/s1600/anonymous3.png



        https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiWTWI9YwH2Jx9UrPNMypgIUIwYoD1WqB5EOOmmx3_Oy3NLQX4HgTf0H5-N4801c3QqQuS9NuiOFw0SnwtM9hQ9lJzwPLGODOdPiAqqA-gIaUcfj5zawLJ9T7R9zlXRUcK-tsaRukK-pHxq/s1600/blogger-user.png


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

        Read More
        Posted in avatars, Blog Design, Comments, comments tricks, Hacks, how to | No comments

        Saturday, 5 May 2012

        How To Change Avatar Size In Blogger Comments

        Posted on 16:28 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/AVvXsEgO0Dma7jg_4uL7hXDGnj-G7ocJbjeJT5YRT4QszZ1Yd6QzrpGWbcebFSrQQTcK4PklYlPKSTEdHFXF0W6oXNNHSjE_AcAt3VgJ9aUkWdLFGvCGzluhoK3icsK_2Ggi2D8yrXIaw4GDIso/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!


          Read More
          Posted in avatars, Blog Design, Comments, comments tricks, how to | No comments

          How to Hide Blogger Sidebar to Display AdSense For Search Results

          Posted on 07:56 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.

          Read More
          Posted in adsense, adsense tips, Blog Design, Hacks, how to | No comments

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

          Posted on 06:23 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/AVvXsEgau6bxMpnG_fWpf2ymeEnTLoqVibA4V9WGqZGdzA3LUVDO8A_i4id9PEqC6RtRS9IBhBcOJGF-YeIbtVgqUCI_rOquocfAxWGJVkeOH9MefRCYkh5fo5We9vB18pB9kHymA4lpergWd_4/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/AVvXsEgau6bxMpnG_fWpf2ymeEnTLoqVibA4V9WGqZGdzA3LUVDO8A_i4id9PEqC6RtRS9IBhBcOJGF-YeIbtVgqUCI_rOquocfAxWGJVkeOH9MefRCYkh5fo5We9vB18pB9kHymA4lpergWd_4/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.

            Read More
            Posted in Blog Design, Hacks, how to, posts | No comments

            How to Remove Showing Posts With Label in Blogger

            Posted on 05:05 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.

            Read More
            Posted in Blog Design, blogger posts, Hacks, how to | No comments

            Friday, 4 May 2012

            Recent Posts Widget with Thumbnails for Blogger/Blogspot

            Posted on 10:07 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://helplogger.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://helplogger.blogspot.com/2012/05/recent-posts-widget-with-thumbnails-for.html" target="_blank" title="Grab this widget">Recent Posts Thumbnails</a> <a href="http://helplogger.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/AVvXsEjIJvyX-MeiNYA-Rv_moGAqcNPFwtTt87GkxPAGtHOEs9BiMmO1jLxBU-Q-V8UYHPbs03SL_USDXbr734OVX7nFZewTwnM_1-dYLySO599Gu2VuPGpjfhYlE9IPFYTTDkFN6z87xbPqQOg/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://helplogger.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.

            Read More
            Posted in blogger, blogger posts, posts, recent posts, Widgets | No comments

            Saturday, 28 April 2012

            Google Translate Widget with Flags For Blogger

            Posted on 13:59 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/AVvXsEg9oQBwFTWE8gyy4pyBC8yWPWCTEpx92OTh7urlJI43ZQOSYRPdkmFwkZ5Dvb_JCIZoJup4r520g9bYP941uS4MZL7MGc_pfTsE0Znr2_kajhyyX63Q60jX-HfHA3199tCsbODONdflfkiO/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/AVvXsEh73KyfNZU6pm8PzuTwabGtiIyaH1mX3A5Wp8utn2a0c4fZ6sJPEgz4aineiXhsqh2cZajzVIj1QaqZKqynH9Fdfd-v0coVrgQpy_hXTjbkkp2o0pjQ1bSrG42PwDc6i-x06FIjnSitKUXU/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/AVvXsEjrXyX-TUxIjppBLz8MAM7IhHtn-_X7446WhufxW9eaHXZi9tfCeUWNdWh29o8e2gBlPBxupY3UfDuBmWo96pjnI1Dx1tYRb31_QBzt7uTC7TMWzTPn4TTwU-WAw6xVijddcJVL0JJXMKtX/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/AVvXsEgeCn66DZ-dM-E2K9ylpDOOzus47VEvesAY9CtqCirACo9M7ST5Av0qvB0tpmQIx8bQsp-pt8o3F-QlszPIxZr2ebfWOYgUooHewqvr5xun0JuJyHiqz-jTf6GoyvQZnJnslYiLg2ieczVk/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/AVvXsEg31mxf5lo8ekJ3zg25SgNI4ytdIiHbJzC29a8Dmr5krerFzIScw19ce6GStuvAxTS-X2BRDh-zFDBubZlc1Ldv-vyqOm3vb6QY6iwYKV4_6ksm-NL_i9gM8wSVq52YMKKp83AARKvS5gou/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/AVvXsEhAyWDVrfpMU6d7-qISqp6Hl_XIs_hdv1OxfYODdjrzwxegVjdqtFnq31D7idG5yC5kG3K2pzTuTTNiQlMwE1Aim6wT0WNDXCjGQqTf1So2S9VTEOHOCpkorcXxD8Qu84vF6q57ZBO5-vpZ/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/AVvXsEi6z0gSQH2e1WZ5rwac6kU5S1jX9ediIr07QP2eOlzwCgd2vZLs_q3duaAVfpWnpOt84wZnAty-VXxITnQhTMgpLmogqF1EtmZTP7aO_I03W_k0agLt17jyRCqjzp5Cznz9YZo1l0lVngfU/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/AVvXsEgRaAUWKDiMhTn4hlhHmTFKMzJKkSpTyU5UOVjSbsHJKQIfwKZmpOk2E7B1Cc30dRxFxxmN-MCXB47QQrfxBlZVV0tV2DWSRMoMLHQ4Mm4-r3LtKJtqTmszgo01PgJQBfVT1UKoWVwUDduG/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/AVvXsEhANXkbLu2lY5DQMiqB2ADbbpWzIbSsLe7oMOnIpedgke0uD9GCmfatpZccpRFAAhK07M-G7LVyPtzOU3fShFtUb_Ypd8rhiMTw73iyeRLpn4ly8lODna8dgEABGa51aAWVrBGeGUDoHC1T/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/AVvXsEjfDpLZFi5DM4OL_YD6tfxMK-iN1j3qY5yHpuchGrjt84bp2EZo0NGDTeQKziOhJtScJUcHvdYp32wAeDY_Vk796pCGNoKnHnFtj9068PhEKH9FNjTtgqwgTTEKil9VEz9ovWynjbq6YXoa/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/AVvXsEiuNhbgyKoCAOsoq6HrME1XcjQAa6ALG6EZ6BmU1V8UL8Mx1UrJoSRZ16ZUpmOtFqQL1ceYrO6tAVkCD_hRMqYLYfliD2H45NnRdikW5jGXvt6LzyfWoog5iD57vRrp-Ih6-TPmslslSjGL/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/AVvXsEgR8cM4tExj9phx_PYFHwLV7etP_Z5vIFkUKOLlXxUvECvejPls1B4NJUKEE0HyAIrFfCPZs6eWPQWflmaIi54QLf4iovsbRpIxtP_sgONgRx-QFH669OgCvD_PYgIqNyuNPqZcTnRF-KS3/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://helplogger.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 (:

            Read More
            Posted in blogger, translating, Widgets | No comments
            Newer Posts Older Posts Home
            Subscribe to: Comments (Atom)

            Popular Posts

            • CSS Basics. How to Apply Rounded Corners On Images #1
              This tutorial will explain how to change the outside border of any image using some simple CSS rules to make it round, but this is so easy t...
            • How to change Blogger "Post A Comment" Message
              In this tutorial i will show you how to replace the 'Post A Comment' text that appears above the comment form with an image. Also, I...
            • Google Translate Widget with Flags For Blogger
              The Google Translate Widget for Blogger allows the visitors to translate your site or blog in their own language. This widget also auto-dete...
            • How to Write SEO Optimized Blog Posts
              I'm not a SEO Expert, nor what we will read further is a top secret, but this is something about basic positioning that everyone should ...
            • Scriptaculous image slider/carousel for Blogger
              This is a very nice carousel slideshow made by Brian R. Miedlar which shows a gallery of images having a sliding effect that returns to the...
            • A Simple Related Posts Widget For Blogger
              In the last tutorial, i've been talking about the Related Posts widget  that shows related posts along with thumbnails just at the end ...
            • Blogger Auto Video Template by webbilgi
              Rate this template: Demo: Click here for Demo Source And Designer: Author page Click here to Download Features: Automatic thumbnail creati...
            • A Beautiful jQuery Drop-Down Menu For Blogger Blogspot
              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,...
            • Turn off the lights with jQuery
              For those who enjoy watching videos on the net, this is a very useful script made by Janko with jQuery. So what this script does? It will ...
            • How to add go to top and go to bottom buttons Using jQuery in Blogger
              The Up and Down buttons can be used to navigate to the top and bottom of the page content, especially when on the main page there are many ...

            Categories

            • adsense
            • adsense optimization
            • adsense tips
            • Auto Video Template
            • avatars
            • blockquotes
            • Blog Design
            • blogger
            • blogger posts
            • color code generator
            • Comments
            • comments tricks
            • css
            • emoticons
            • Emoticons/Smileys
            • Facebook
            • feedburner
            • forum
            • Hacks
            • how to
            • how to make a blog
            • Image Effects
            • internet
            • jQuery
            • labels
            • menus
            • Navigation
            • navigation menu
            • popular posts
            • posts
            • read more
            • recent comments
            • recent posts
            • related posts
            • RSS
            • SEO
            • sitemaps
            • slideshows
            • social media
            • social media plugins
            • static pages
            • Templates
            • threaded comments
            • titles
            • tools
            • translating
            • webbligi
            • Widgets

            Blog Archive

            • ►  2013 (57)
              • ►  November (4)
              • ►  October (16)
              • ►  September (13)
              • ►  June (3)
              • ►  May (4)
              • ►  April (5)
              • ►  March (12)
            • ▼  2012 (73)
              • ▼  July (1)
                • How to Make the Blogger Posts Have a Calendar for ...
              • ►  June (3)
                • How to Create Drop Caps (Big First Letters) in Blo...
                • Numbered comments on threaded comments for Blogger...
                • How to add “Email Subscription Form” to Blogger Bl...
              • ►  May (9)
                • Add Floating Social Media Sharing Buttons To Blogger
                • Create A Rollover Image Effect (change image on mo...
                • Add Facemoods Emoticons To Your Blogger Comments
                • How to Change Default Anonymous Avatar in Blogger ...
                • How To Change Avatar Size In Blogger Comments
                • How to Hide Blogger Sidebar to Display AdSense For...
                • Show Blogger Image only in Homepage and Hide it in...
                • How to Remove Showing Posts With Label in Blogger
                • Recent Posts Widget with Thumbnails for Blogger/Bl...
              • ►  April (23)
                • Google Translate Widget with Flags For Blogger
              • ►  March (30)
              • ►  February (7)
            Powered by Blogger.

            About Me

            Unknown
            View my complete profile