Around 3200 Rss Feed readers​​ Already joined, Have you?
Showing posts with label Tutorial Blogger. Show all posts
Showing posts with label Tutorial Blogger. Show all posts

Keyboard Shortcuts for Posting with Blogger

Tuesday, May 15, 2012

Keyboard shortcuts are a feature I find incredibly useful. Most of our favourite applications offers shortcuts to perform tasks, such as the generic CTRL+S to save or CTRL+B to generate bold text in word processing programs (the "Command"/CMD button for Mac users).

Blogger offers us a range of keyboard shortcuts we can use when creating and editing our blog posts to perform some most-used tasks without having to scroll around to find their appropriate buttons.

The following shortcuts have been tested to work in Internet Explorer 6+, although at present not all of these work in Firefox, Chrome and Opera*:

Shortcut
Function
browser compatibility
CTRL+B Bold Text Yes
CTRL+I Italic text Yes
CTRL+U Underline text Yes
CTRL+L Blockquote (when in Edit HTML mode only) No
CTRL+Z Undo last operation Yes
CTRL+Y Redo last operation Yes
CTRL+SHIFT+A Insert Hyperlink No
CTRL+SHIFT+P Preview Post No
CTRL+D Save as Draft No
CTRL+P Publish Post Yes
CTRL+S Autosave Yes
CTRL+G Indic Transliteration No

* Mac users substitute CTRL for CMD 

I've tested the shortcuts above in Firefox 3.63, Internet Explorer 7/8,Flock and Chrome, though have yet been unable to test in Opera (so if anyone is able to do this, please let us know your findings in the comments!).

The Blogger Team are aware that some keyboard shortcuts do not work across all browsers and are working through the issues.
Read More - Keyboard Shortcuts for Posting with Blogger

Easy Post Summaries and Thumbnails for Blogger Blogs - No JavaScript Required!

Monday, June 27, 2011

The ability to display post summaries and automatic thumbnails is one of the most sought-after Blogger customizations. Using such a feature enables us to create a cohesive layout on non-item pages with the entire post and full-sized image on item pages.

Recent changes to Blogger's functionality now enables us to achieve this using only Blogger code - no need for JavaScript, awkward CSS customizations or restrictions on the length or format of our posts.

With only a few small changes to our Blogger template, we can display post summaries and thumbnails using this easy to manage hack.


How to add Blogger post summaries and thumbnails in three simple steps

Here's my step-by-step guide to the easiest solution for post summaries and thumbnails with Blogger:

Step 1 - Back up your template!

It is important to back up your Blogger template before making any edits. This ensures we can easily restore the working template if anything goes wrong.

To back up your Blogger template, go to Design>Edit HTML in your Blogger dashboard and click the Download Full Template link near the top of the page.

You'll be prompted to save an XML file to your computer hard drive - this XML file includes all of the HTML and widget templates required to display your current Blogger design. Be sure to save this in an easy to remember location and make a note of the file name in case you later need to restore your working template.


Step 2 - Add the code to display summaries and thumbnails on non-item pages


The next stage is to add the Blogger code which will display a summary and thumbnail of our posts. Go to Design>Edit HTML and check the Expand widget templates box and search for the following line of code:


<data:post.body />

Replace this line with the following code:

      <b:if cond='data:blog.pageType != "item"'>
          <b:if cond='data:post.snippet'>
          <b:if cond='data:post.thumbnailUrl'>
              <div class='Image thumb'>
                <img expr:src='data:post.thumbnailUrl'/>
              </div>
          </b:if>
            <data:post.snippet/>
    <b:if cond='data:post.jumpLink != data:post.hasJumpLink'>
      <div class='jump-link'>
        <a expr:href='data:post.url + "#more"' expr:title='data:post.title'><data:post.jumpText/></a>
      </div>
    </b:if>
          <b:else/>
            <data:post.body/>
          </b:if>
      <b:else/>
      <data:post.body/>
      </b:if>

Preview the change to your template and you'll see that your posts will appear in a format similar to this:


As seen in the screenshot above, the thumbnail appears above the summary. We can align the thumbnail more cohesively to the left or right of the summary by adding CSS to our template.

At this stage, you can choose to save the edit to your template or add the CSS and preview the final effect before committing the changes to your site.


Step 3 - Add CSS to align the thumbnail image

While still on the Design>Edit HTML section of your dashboard, search for the following line:


</b:skin>

Immediately before this line, paste the following CSS statement:


.thumb img {
  float: left;
  margin: 0 10px 10px 0;
}

This will align the thumbnail to the left of the post summary, and allow some distance between the thumbnail and text like this:


If you would prefer to align your thumbnail image to the right, paste the following code instead:


.thumb img {
  float: right;
  margin: 0 0 10px 10px;
}


Preview your template to see how this makes your posts appear on the home page. When you're happy with the layout, save your template and enjoy your automated thumbnails!


How this customization displays summaries and thumbnails

While simple to add to our Blogger template in order for the function to work, there is a lot of complex conditional code in use to ensure the summaries display as they should.

First, the code checks if the page being viewed is an item page or not. If the page is not an item page, the summary/thumbnail code will come into effect.

The second check discovers if a post snippet is available (i.e: if the post contains some text). If there is a snippet, the code checks if a thumbnail is available and displays the thumbnail if there is, followed by the snippet. Where no thumbnail is available (when the post does not contain an image), only the snippet is displayed.

If there is no snippet available for a particular post, the complete body of text is displayed normally. This ensures that posts with no content or which feature only an image are displayed normally; no thumbnail is displayed, and any images are displayed at full size.

Finally, the code checks if the post contains the <!-- more --> tag. If it does not contain this tag, a "Read more" link will be displayed beneath the snippet, ensuring visitors can easily click through to read the post page. Where a jump-link is present, this is displayed as normal after the snippet.

Phew! It's complicated to explain, but hopefully produces a foolproof set-up in which posts will be properly formatted no matter what the conditions.


What do you think?

I hope this solution will prove useful for anyone who wants to display automatic summaries and thumbnails in their Blogger powered blog without having to rely on JavaScript, CSS or by changing the method used to write blog posts.

Please feel free to leave your opinions or suggest improvements to this hack by leaving your comments below.
Read More - Easy Post Summaries and Thumbnails for Blogger Blogs - No JavaScript Required!

How to Add Social Bookmarking Icons to Blogger

Wednesday, June 08, 2011

Adding social bookmarking icons or buttons below blogger posts let's your readers to bookmark and share your posts which ever he likes. It's not only a Web 2.0 feature but also a great way to get social. I have seen that there are many times when I get traffic from social networking sites. Now you may also like to get social by adding bookmarking buttons, so I have updated this tutorial with 18 bookmarking sites and a feed icon.

Social Bookmarking Icons Below Blogger Posts

1. Go to Design > Edit HTML and backup your template and check the “Expand Widget Templates” box.
2. Find the bellow snippet:
<data:post.body/>
Or:
<div class='post-footer-line post-footer-line-3'>
3. Just bellow any one of the sections mentioned above, add the bookmarking codes:

    <b:if cond='data:blog.pageType == &quot;item&quot;'>

    <div class='share-icons'>

    <h4>Share this post</h4>

    <!-- Stumbleupon -->

    <a expr:href='&quot;http://www.stumbleupon.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Stumble' src='http://icon URL'/></a>

    <!-- Delicious -->

    <a expr:href='&quot;http://del.icio.us/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Delicious' src='http://icon URL'/></a>

    <!-- Google Buzz -->

    <a expr:href='&quot;http://www.google.com/buzz/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Google Buzz' src='http://icon URL'/></a>

    <!-- Facebook -->

    <a expr:href='&quot;http://www.facebook.com/share.php?u=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Facebook' src='http://icon URL'/></a>

    <!-- Reddit -->

    <a expr:href='&quot;http://www.reddit.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Reddit' src='http://icon URL'/></a>

    <!-- Technorati -->

    <a expr:href='&quot;http://technorati.com/faves?add=&quot; + data:post.url' target='_blank'><img alt='Technorati' src='http://icon URL'/></a>

    <!-- Yahoo Buzz -->

    <a expr:href='&quot;http://buzz.yahoo.com/buzz?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Buzz it' src='http://icon URL'/></a>

    <!-- Twitter -->

    <a expr:href='"http://twitter.com/share?url=" + data:post.url + &quot;&text=Currently reading: " + data:post.title + "&via=blogger_Raju"' target='_blank'><img alt='Twitter' src='http://icon URL'/></a>

    <!-- Digg -->

    <a expr:href='&quot;http://digg.com/submit?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Digg it' src='http://icon URL'/></a>

    <!-- Designfloat -->

    <a expr:href='&quot;http://www.designfloat.com/submit.php?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Designfloat' src='http://icon URL'/></a>

    <!-- Diigo -->

    <a expr:href='&quot;http://www.diigo.com/post?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Diigo' src='http://icon URL'/></a>

    <!-- Mixx -->

    <a expr:href='&quot;http://www.mixx.com/submit?page_url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Mixx' src='http://icon URL'/></a>

    <!-- Google Bookmarks -->

    <a expr:href='&quot;http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Google Bookmarks' src='http://icon URL'/></a>

    <!-- Meneame -->

    <a expr:href='&quot;http://meneame.net/submit.php?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Meneame' src='http://icon URL'/></a>

    <!-- Furl -->

    <a expr:href='&quot;http://www.furl.net/storeIt.jsp?u=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Furl' src='http://icon URL'/></a>

    <!-- Magnolia -->

    <a expr:href='&quot;http://ma.gnolia.com/beta/bookmarklet/add?url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Magnolia' src='http://icon URL'/></a>

    <!-- Blinklist -->

    <a expr:href='&quot;http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Blinklist' src='http://icon URL'/></a>

    <!-- Blogmarks -->

    <a expr:href='&quot;http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Blogmarks' src='http://icon URL'/></a>

    <!-- RSS -->

    <a href="http://feeds.feedburner.com/om-simplebloggertutorials" title='Subscribe to Feeds'><img alt='Subscribe to RSS' src='http://icon URL'/></a>

    </div>

    </b:if>
 
Note the conditional tags marked in red. These are used to hide the bookmarking icons from appearing below every posts on homepage.
As I'm providing too many bookmarking codes, I was unable to get matching icons for all of them, so change “src=http://icon URL” with the icons you want to use as social bookmarking buttons, “YOUR FEED ADDRESS” with the feed address of your blog and “blogger_Raju” to your twitter account.
If you don't want to add any specific bookmark, then delete it. For example, if you don't want to include Mixx, then delete:
<! -- Mixx -->

    <a expr:href='&quot;http://www.mixx.com/submit?page_url=&quot; + data:post.url + &quot;&amp;title=&quot; + data:post.title' target='_blank'><img alt='Mixx' src='http://icon URL'/></a>
4. Find ]]></b:skin> and above it add:
.share-icons {
display: block;
background:#EEEEEE;
margin: 10px 0 0;
padding:5px;
border:2px solid #992211;
-moz-border-radius: 5px;
border-radius: 5px;
}
.share-icons img {
margin: 2px;
border: none;
}

Adding Addthis or Addtoany Bookmarks to Blogger

Visit AddThis or AddToAny, which ever you like, select the style you want to use and get the script code that they will provide.
Now for adding the bookmarking scripts, Find:
<data:post.body/>
Or:
<div class='post-footer-line post-footer-line-3'>
And paste script beneath any one of the codes.
5. Preview your template for any errors and save it.
If you also want these bookmarks to not to appear on homepage, then use the conditional tags as mentioned above. Now wait for some one to come across your posts and click the bookmarking icons to add it to their favorite Bookmarks.
If you like this post then don't forget to add it to your favorite social bookmarks by clicking the bookmarking buttons.

Read More - How to Add Social Bookmarking Icons to Blogger

How to Create Facebook Like Page for Your Blog

Facebook is the best place to promote your blog or brand the natural way because when people like your page, their friends will also be able to see it and can visit your page and become a member too. Facebook is great as it has many active members and friends and even better to grow audiences by creating Facebook Like Page for your blog.
Facebook made some changes as a result the “Fan Page” has now become “Like Page”and also got updated.
The first thing is to login to your Facebook account and go to Create Page on Facebook. You will get some options to select, like, Local Business or Place, Company, Organization or Institution, Brand or Product and so on. As we bloggers blog, it will be best to select “Brand or Product”.

Create Facebook Page

Step 2: Select “Website” and give your Page a proper tile which should resemblance with your blog title or keywords. Agree with the terms and conditions and “Get Started”.

Facebook Page Name

Finally you have created a Facebook page for your blog.

Like Page

Don't forget to upload a picture or your blog's logo as it will give your page the recognition. to your page fans.
Next: Import blog posts to Facebook Like Page
Read More - How to Create Facebook Like Page for Your Blog

Add a Social Bookmarking Button to your Blog

Monday, June 06, 2011

In this tutorial you will learn how to add an Add This free Social Bookmarking button to your Blogger blog (Blogspot) blog. By adding this feature to your blog you will enable visitors to your blog to create links to popular social bookmarking sites such as Google, Technorati, Facebook, MySpace, Digg, Stumble Upon, Reddit, Delicious, Furl, Yahoo etc. Adding personal social bookmarks enables visitors to share these links with others thereby helping you attract more traffic to your site. For more information on the benefits of social bookmarking please refer to my article - Benefits of Social Bookmarking for Blogger bloggers.

add-this-share-buttonThis tutorial shows you how to place a social bookmarking button on your site by accessing a free social bookmark and feed button builder service called Add This. Add This will supply you with a simple piece of code which when placed in a widget will insert a social bookmarking button either at the end of each post or in the sidebar. If you wish you can add the social bookmarking button to both as I have done on this site. For those new to blogging don't worry if this sounds complicated as this article gives you step by step instructions suitable for any Blogger user including beginners.
How does an Add This Social Bookmarking Button Work?
The code from Add This places a button on your site which when clicked on by a visitor to your site opens a menu of the most popular social bookmarking services. When a selection is made by a visitor Delicious, Yahoo, Google, Facebook, MySpace, Stumble Upon they are given the option to submit your blog to their online bookmarks. Once a visitor submits your blog to a social bookmarking service Add This can provide you with useful analytics about bookmarks, feeds and emails depending on which buttons you enable on your site. This kind of statistical information from Add This will help you gain greater understanding of your site traffic and your most popular posts.
add-this-button-choices Now Steps for Adding a Social Bookmarking Button from Add This to Your Blogger Blog
1. Register for a free account with Add This

add-this-signup-screen
2. Once you supply a username, email address, password and your website address sign up is pretty much instanteous.

3. After sign up is confirmed click on Get Your Button. This will take you to the Create Your Button Page.
add-this-button-screen
4. On the Create Your Button page you will be asked to make some selections about your social bookmarking button.

What kind of Button? Select Sharing/bookmarking button

What Look? Choose any of the six button choices. For this example I am going to select the share button

add-this-share-radio-button-option
Where? Select on a blog

Blogger Platform? Select Blogger

At this point the information your have entered should look like the picture below:
add-this-button-screen
Once you have confirmed that you have entered the correct information click on the Get Your Code button and you will be taken to the Get Your Code page.

5. From the Get Your Code page you will be given the option to Preview your button. Do so if you wish or move on to Step 6.

Having generated the code for your Add This Social Bookmarking button you now need to decide where to position it on your blog.
You may either place your new Social Bookmarking Button beneath each post (see below) or in a sidebar.

Instructions for Placing a Social Bookmarking Button Beneath Each Post of Your Blogger Blog


Click on Blog Post Button option.

Highlight the Javascript code supplied by Add This
Copy the code to the Clipboard of your computer using Ctrl + C command


In a new window open your Blogger Blog and sign in
Navigate to Layout > Edit HTML


As a precaution Backup your template in case you inadvertently overwrite some code.

Once you have backed up place a tick in the Expand Widget Templates checkbox

Use the Ctrl + F command to open the toolbar which will appear at the bottom of your page while using Blogger. You can close this at any time using the Ctrl + F command or by clicking on the blue cross in the lefthand corner.

Now highlight the following line of code and using the Ctrl + C command copy and paste the code into the Search Box on the toolbar at the bottom of Blogger.
This action will quickly locate the code for you in your Blogger template. You will be placing the code immediately before this tag.

Return to Add This and highlight the Javascript button code supplied. Copy the code to your clipboard using the Ctrl + C command.

Reopen the Blogger window and place the cursor right before the tag that you located earlier.

Paste the Javascript code from Add This into the template using the Ctrl + V command.
Your code placement should look like that pictured below
share-button-code
Click on Save Template
Now click on View Blog from the top menu and navigate to the end of your first post. If all instructions have been followed you will now have a social bookmarking button at the bottom of each post.

Instructions for Placing a Social Bookmarking Button in a Sidebar of Your Blogger Blog

Follow the Add This automated process by clicking on Add the Menu to My Blog button. This will place an Add This social bookmarking button in a widget in your sidebar as you see on this site.
sidebar-bookmark-button
This Blogger tutorial has covered the steps involved in adding a free Add This Social Bookmarking Button to your Blogger blog (Blogspot blog). Grow your Blogger (Blogspot) blog today by adding a free Add This social bookmarking button which will enable visitors to bookmark your site and share your posts with others.
Read More - Add a Social Bookmarking Button to your Blog

How to sign-up to bloggers

Thursday, June 02, 2011

Once we create an email with the Gmail service on "Sign up for Gmail as your login Blogger" Now we both are registering to bloggers.

First run the web browser, here we still use Firefox as web browsers. Seletah typing it in the Address Bar http://www.Blogger.com 
After writing the above address we will be faced on the main page of blogger. Click on the image of the arrow "Create Your Blog SE" for the first time registration process.

If you have clicked the arrow on the dining page will appear first stage is "Create a Google Account" in page we are asked to enter some data. 

Examples of Data Input: 

Email Address: input your email address from gmail that we created previously 
Enter a password: enter password / keywords to be desired, a password can be the same or different email password does not matter and remember at least 8 characters 
Retype password: enter the same password as input on our new 
Display name: This is our name will be shown each of us to post, choose a name according to taste (this name can be changed later so this name is not permanent) 
Acceptance of Terms: give a check or a check that says you agree to follow the rules blogger 

After entering the above data then click the arrow sign on "Continue" below right. In the second step, this is where we will make a choice name of the blog that we will create 

Example Input Data

Blog title: Represents the name of our blog title, the name usually appears in the caption web browser (this name can be changed later so this name is not permanent) 
Blog address (URL): Represents the name of our blog address url for example http://hatsadz-lamp.blogspot.com (this name can be changed later so this name is not permanent)

If you have to enter data over longer click the arrow like the following page that will appear next is choose a template. Template is a display interface or view our blog page, so adjust the template with a blog topic that we will create. We can choose the template according to our taste, choose one example, "Minima" Click again the arrow below (yes but not below the blogger page hehehe)

Up to this stage of registration sign up is complete. Congratulations you already have a blog now! Therefore if you want to immediately write we can click the "Start Posting" where we will view the first post directly addressed. 

Good luck 
Read More - How to sign-up to bloggers

How To Extract All Keywords From Google Analytics

Sunday, May 29, 2011

Many readers find the method on this post quite difficult so I wrote an easier alternative method to save all the keyword from Google analytics tool: How To Export All The Keywords From Google Analytics
 
Google analytics does not allow you to download more then 500 keywords from Google analytics. But there is a method to savee all the all keywords, say about 2000 in a CSV file.

Steps:

1. Log onto Google analytics and select report for the desired site
2. Click Traffic Sources and then select Keywords which appears under that category
3. Now, on you address bar you will see a link like this:
4. Add &limit=5000 at the end of the url and the link will be like
4. Click enter
5. Now click export and select CSV

keyword export in Google analytics 

6. Download and save the file
Screenshot of my CSV file:

Read More - How To Extract All Keywords From Google Analytics

JS-Kit Comment: Alternative Systems Comments on Blogger

Monday, May 23, 2011

This time there are alternatives provided by js-kit for blogspot and wordpress comment box, quite fairly easy and practical. equipped with such an avatar photo from facebook, yahoo, and much more, if you have a photo avatar from facebook, you can display it on when you commented on the blog! curious? okay! now I will explain how to install to blogspot and to wp patient huh? heheheh ..



The first step: 

1. login you keblog 
2. click for the blog layout and Indonesian click layout 
3. click edit html 
4. on the edit html page you had been instructed to download the template. 
5. then stored in a computer document

Step Two:

1. visit this web address: http://js-kit.com/comments/?wow 
2. note the blogger logo in it and then click. 
3. see instructions in step 1 
4. input your domain name example: http://yourdomain.blogspot.com then input your account and password of your blog. and wait until finished

Third step:

1. go to step2 and upload the template you downloaded earlier 
2. wait until complete and save the command box appears. 
3. you after the save, upload the results back from the file that you save from js-kit to your blog, and then save again

Until here all phases are finished .. Please try :)
Read More - JS-Kit Comment: Alternative Systems Comments on Blogger

Javascript in Blogger Hosting Solutions

When the most unpleasant moment the javascript file where we store on another host start running out of bandwidth. An interactive blog that originally seen even so chaotic tampilanya khan. Well, this is one keleman bloggers because they do not give us the capacity of disk space, especially those dealing with the javascript file. As an alternative we can usually only borrow free web hosting from a third party, unfortunately the offer provided was not always satisfactory. storage capacity offered big hell, but so useless when given bandwidth capacity is not comparable hehehe. Well, here I try to share tips to overcome the problem of hosting javascript in blogger, hopefully enough to help.

Change the format of the file extension from .Js to .Txt

Remember, not all the javascript is called by the ending .Js, this is an advantage where we can store and call the javascript file in a text format that are stored in the format .txt

Not all free web hosting services provide the flexibility for us to store the file format. Js in hosting them, so we can outsmart just by changing the extension from .Js to .txt

How to call a javascript format .txt file on another host:

<script type="text/javascript" src="address-url-filename.js" />

The invitation can be replaced with

<script type="text/javascript" src="address-url-filename.txt" />

Save Javascript in an HTML page element / Blogger Gadget

Not all the javascript code should be in store in other hosts or only in the Edit HTML page, we could have put this JS code directly on the blogger page element "HTML / Javascript". Unfortunately this does not always 100% successful, because not all javascript files can support the storage of this widget. Perhaps the only successful if the javascript code is only stand alone, in terms of JS files are not interconnected with one calling code and other code.

Save the javascript code directly in HTML EDIT page 

Platform bloggers actually frees us to put the code directly javascipt on Edit HTML page. The way I apply these always succeed, but sometimes not very effective as well if the javascript code that we use the script code is too long. This last way I think is the best one that should be attempted.

Before you try the method below, make sure that we already have a JS code that will be saved. If someone is still confused, JS code can be found directly by taking the URL address. see example below calling code are printed bold. JS code and there are usually stored.  

<script type="text/javascript" src="address-url-filename.js" /> 

Try to directly input the URL in your browser, if you have found any live copy the code. 

JS code for previously in other host can be directly used dialamat diblogger, we can directly use the code below. 

<script type='text/javascript'>
//<![CDATA[
Fill_Script_Here
//]]>
</script> 

Hopefully the above can solve the problem running out of bandwidth, if ya still have problems staying just use a paid hosting goes wrong .. 
Read More - Javascript in Blogger Hosting Solutions

Page Peel Effect using jQuery & CSS

Tuesday, May 17, 2011

If no one ever wrote my first tutorial on style ads Page Peel huh? try opening the archive before ... never see you:) oh yes it turns out there are 2 different tutorials ever published, the first to use the style display Page Ear Javascript, then this is the same .. Sexy Curls jQuery Plugin. Well, for a foreign partner with the term rada Page Peel, please go back to previous records on the second link above yes.

Advanced Ok, well this time I found the latest Peel artificial Page Sohtanaka.com with coding that is of course very different from the above two Page Peel, Sohtanaka not use complicated coding setup, so just put it directly associates live page blog. Although there is little to be edited, and even then just change the look of the picture and link purpose only. When viewed at a glance, for it looks almost the same style, where when you point your mouse at this PagePeel area, it will show the page as you open the roll up a piece of paper and found another page dilembar vice versa. See demo here.  


 
How To Install:

Put the following jQuery script code on code <b:skin><![CDATA[

<script src='http://code.jquery.com/jquery-latest.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){
//Page Flip on hover
$(&quot;#pageflip&quot;).hover(function() {
$(&quot;#pageflip img , .msg_block&quot;).stop()
.animate({
width: &#39;307px&#39;,
height: &#39;319px&#39;
}, 500);
} , function() {
$(&quot;#pageflip img&quot;).stop()
.animate({
width: &#39;50px&#39;,
height: &#39;52px&#39;
}, 220);
$(&quot;.msg_block&quot;).stop()
.animate({
width: &#39;50px&#39;,
height: &#39;50px&#39;
}, 200);
});
});
</script>

Then put the CSS code below the above code]]> </b:skin>

#pageflip {
position: relative;
right: 0; top: 0;
float: right;
}
#pageflip img {
width: 50px; height: 52px;
z-index: 99;
position: absolute;
right: 0; top: 0;
-ms-interpolation-mode: bicubic;
}
#pageflip .msg_block {
width: 50px; height: 50px;
overflow: hidden;
position: absolute;
right: 0; top: 0;
background: url(http://img222.imageshack.us/img222/9213/subscribe.png) no-repeat right top;
}

Put this code under the tag <body>

<div id='pageflip'>
<a href='http://feeds2.feedburner.com/thenameofyourfeed
'>
<img alt='' src='http://img224.imageshack.us/img224/8315/pageflip.png'/>
<span class='msg_block'/>
</a>
</div>

Please be saved and see the results. Remember! Display the above only as an example, yes, peer can change the image and link any purpose as desired. 
Read More - Page Peel Effect using jQuery & CSS

Displaying Images Transparent, mouseover Effect

This means what? ok, than my colleagues try jelasin lengthy preview samplenya in zoomtemplate.com, if already try now point to the picture page of posts there .. nah colleagues will see the effect where the original image will be dim light or it could be vice versa from dim to bright when it passed the mouse. Perhaps the meaning is clear enough, yes, immediately wrote to the next.

 How it works transparently above the image effect is not so difficult, we need only use the CSS Image Opacity property. But before you should also know the CSS opacity property was not included in the standard CSS, which this property only works well on some modern web browsers only.

Code mouseover effect from dim to brighter (set directly in the picture)

<img src="Save the image location url" style="opacity:0.4;filter:alpha(opacity=40)"
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.opacity=0.4;this.filters.alpha.opacity=40" />

Code mouseover effects from bright to dim (set directly in the picture)

<img src="Save the image location url" border="1" style="opacity:1;filter:alpha(opacity=100)"
onmouseover="this.style.opacity=0.4;this.filters.alpha.opacity=40"
onmouseout="this.style.opacity=1;this.filters.alpha.opacity=100"/>

Maybe a bit too complicated if each image must be set one by one the value of his property, now co-direct for each post having an effect this automatically, can simply add this CSS code:

 .post img{opacity:1;filter:alpha(opacity=1); this.style.opacity=6}

.post img:hover{opacity:.5;filter:alpha(opacity=100); this.style.opacity=1}

To my knowledge Firefox usually uses the property opacity: x for doing tranparancy, unlike IE which uses a filter: alpha (opacity = x). In Firefox opacity: x value of x can be filled with values ​​between 0.0 -1.0, while the IE filter: alpha (opacity = x) the value of x between 000-100.

Read More - Displaying Images Transparent, mouseover Effect

Increase Blog Traffic Through Twitter With Button Install tweetmeme / retweet

A lot of effort to increase traffic, one may share it through social networking twitter. But beyond just sharing articles via twitter alone is not enough you know, no problems at Twitter friend list if we have reached thousands of followers, but kalo cuman 50-100 does not seem too effective. Well, from the dizzy every day to follow people who do not clear, let alone the main purpose kesedar only reproduce a friend, would that we ask for help the reader himself to share our articles link on their twitter each. The easiest way one can by installing buttons from tweetmeme or Retweet.

To install tweetmeme button is very easy, first view the first entry EDIT HTML, then check the Expand Widget Templates. If so, look for the red color code and put that code right underneath the blue button.

<div class='post-header-line-1'/>

<div style='float:right; margin-left:10px;'>
<script type='text/javascript'>
tweetmeme_url = &#39;<data:post.url/>&#39;
</script>
<script src='http://tweetmeme.com/i/scripts/button.js' type='text/javascript'> </script>
</div> 

Similar to the way above, install Retweet button is also very easy, first view the first entry EDIT HTML, then check the Expand Widget Templates. If so, look for the red color code and put that code right underneath the blue button. 

<div class='post-header-line-1'/>



<script type="text/javascript">
url = '<data:post.url>';
</script>
<script type="text/javascript" src="http://www.retweet.com/static/retweets.js"></script>

 
If you want small size:

<script type="text/javascript">
url = '<data:post.url>';
size = 'small';
</script>
<script type="text/javascript" src="http://www.retweet.com/static/retweets.js"></script>
 

Little information, tweetmeme or Retweet has its own counter value to assess how much of our links that have been distributed by the reader. we can see that value directly on button. 
Read More - Increase Blog Traffic Through Twitter With Button Install tweetmeme / retweet

How to set homepage on Blogger Comments

Still in commemorating the anniversary of bloggers is the 10th, this time adding new features more bloggers that is in addition to visitor comments, can also directly display the comments along with their blogger profile photo. The facility is very similar to predictably tutorial I wrote some time lulu here and here. Unfortunately, to be able to display comments Avatar on Blogger, we need the login status.


 
Blogger also provides an easy to directly upload a profile picture when we want to leave a comment, the commentary select the Preview button, click the "Add Photo" to upload photos to Blogger profile. Next when we leave a comment diBlogger, profile picture will be instantly displayed on the comments field.

 
To enable or disable the profile images on comments, open the Settings page - Comments. Then put a check "Yes" in the "Show profile images on comments?" 

Just info, some templates that have been modified may be problematic with Avatar fasititas this comment, but do not worry everything can be back to normal.
Read More - How to set homepage on Blogger Comments

Recovering and Enabling feedback on Custom Template Blogger Avatar

By default avatar actually comment on fellow bloggers can directly activate without changing anything on that yet dimodifkasi tempate. But this would be problematic if the template in use today are already using custom templates. Now let me comment this avatar can look back is very easy, just follow the tutorial below:


 
Enable comments on Custom Template Blogger Avatar

First look for the code below.

<dl id='comments-block'>  

Then replace the above code with the code below. 

<dl expr:class='data:post.avatarIndentClass' id='comments-block'> 

After changing the above code, then look for the line of code below. 

<a expr:name='data:comment.anchorName'/>  

Then put the following code after the code above. 

<b:if cond='data:blog.enabledCommentProfileImages'>
        <data:comment.authorAvatarImage/>
 </b:if> 

To enable or disable the profile images on comments, open the Settings page - Comments. Then put a check "Yes" in the "Show profile images on comments?" 

Returns the Avatar comment if you use the avatar of MyBloglog 

Previously I've written a tutorial to install using mybloglog avatar comment, well when colleagues just want to use standard avatars bloggers, colleagues can easily restore it. follow the tutorial below. 

To facilitate co-delete the code, first try searching the first code below

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

Then look at the line of code like this below 

<div style='border:0;float:left;margin: 0 5px 0 0;'>
<script>
myBlogAvatar('<data:comment.id/>','<data:comment.authorUrl/>');
</script>
</div>
 

If you've met, lived erase all the code above, then follow again how to turn on comment avatars as indicated above. 
Read More - Recovering and Enabling feedback on Custom Template Blogger Avatar