Thursday, December 31, 2009

Greetings of Happy New Year 2010

Dear All,
flying bird
happy new year

love2010love

red rose
pink rose

angel
angel
Wishing you lots of angelHappiness , Successangel , Love angeland Good health. angelarrowarrowarrow
Related Documents
http://arjudba.blogspot.com/2009/12/happy-new-year-to-all-my-readers.html
http://arjudba.blogspot.com/2009/11/eid-ul-azha-mubarak-to-my-readers.html
http://arjudba.blogspot.com/2009/10/shame-on-bangladesh-girl-raped-by-bal.html
http://arjudba.blogspot.com/2009/09/greetings-of-eid-ul-fitr.html
http://arjudba.blogspot.com/2009/09/eid-mubarak-to-everyone-from-arju.html
http://arjudba.blogspot.com/2009/07/step-by-step-to-create-paypal-donation.html
http://arjudba.blogspot.com/2009/04/why-i-dont-like-to-use-yahoo-service.html
http://arjudba.blogspot.com/2009/02/avoid-huge-whitespaces-above-table-in.html

How To Add Auto 'Read More' Feature with Thumbnails

There are many tips to make your blogger blog professional look and feel. One of the leading tips is to add "Read More" feature to your blog. This feature is very useful specially whenever user click on archive blog post or click on label that contains many posts under that label. There may be too many blog posts in the archive section and so loading time may be slower. Instead if you can display short story of the blog post and then add a link "Read More" then it will be more helpful.

Another reason to include a Read More link is to keep the visitors stay more times in your blog. In this case you will be benefited because if in your blog there will be more page loads, more time visitors will spend browsing and also advertisement (if any) loads more times in blog.

Step by step description for adding "Read More" feature is described below.

Step 01: Sign in to blogger.com and from http://www.blogger.com/home dashboard click layout and then click Edit HTML.

Step 02: Check the "Expand Widget Templates" checkbox. After you check the checkbox HTML textbox will be re-loaded. It will look like image below.



Step 03: Scroll down and find out the closing head tag i.e </head>
Just before this </head> tag add the following code:
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 230;
summary_img = 140;
img_thumb_height = 100;
img_thumb_width = 100;
</script>
<script src='http://oracle-in-world.googlegroups.com/web/excerpt.js?gda=vX7OozwAAACpV4QXH4wuT6KkbCExW2Uw7M0-zPcfYx8yiIHN6eVjGf7IDMbBIGglVJTmTj0R_Xz9Wm-ajmzVoAFUlE7c_fAt' type='text/javascript'/>
where
Thumbnail_mode: If you choose "no float", the image will not show thumbnails and if you choose to "float" it will display a thumbnail on the left of the posts on the homepage.

Summary_img and Summary_noimg: These two corresponds to the cutoff of the abstract when your post has no image and when it does, respectively. The value 50, for example, means "50 words".

Img_thumb_height and img_thumb_width: These two corresponds to height and the width of the thumbnails (thumbnail image).

and the contents of the javascript file
http://oracle-in-world.googlegroups.com/web/excerpt.js?gda=vX7OozwAAACpV4QXH4wuT6KkbCExW2Uw7M0-zPcfYx8yiIHN6eVjGf7IDMbBIGglVJTmTj0R_Xz9Wm-ajmzVoAFUlE7c_fAt
is,
function removeHtmlTag(strx,chop){ 
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}

function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}

var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}


In the blog HTML it will look like,
]]></b:skin>
<script type='text/javascript'>
var thumbnail_mode = "float" ;
summary_noimg = 230;
summary_img = 140;
img_thumb_height = 100;
img_thumb_width = 100;
</script>
<script src='http://oracle-in-world.googlegroups.com/web/excerpt.js?gda=vX7OozwAAACpV4QXH4wuT6KkbCExW2Uw7M0-zPcfYx8yiIHN6eVjGf7IDMbBIGglVJTmTj0R_Xz9Wm-ajmzVoAFUlE7c_fAt' type='text/javascript'/>

</head>
<body>

Step 04: Now scroll down to find out this line: <data:post.body/>
Replace this line with following piece of code.
<b:if cond='data:blog.pageType == "item"'>
<data:post.body/>
<b:else/>
<div expr:id='"summary" + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>
createSummaryAndThumb("summary<data:post.id/>");
</script>
<div style='clear: both;'/>
<span style='padding-top:5px;;float:right;text-align:right;'><a expr:href='data:post.url' rel='bookmark'><b>Read more >></b></a></span>
</b:if>
And you are Done. Click Save Template button and test your blog.
Related Documents 
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html 
http://arjudba.blogspot.com/2009/07/how-to-setup-google-webmaster-tool-for.html 
http://arjudba.blogspot.com/2009/06/how-to-get-targeted-backlinks-to-your.html 
http://arjudba.blogspot.com/2009/07/draw-google-adsense-money-using-western.html 
http://arjudba.blogspot.com/2009/06/different-types-of-web-hosting-services.html 
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-yahoo-directory.html 
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-google-directory.html 
http://arjudba.blogspot.com/2009/12/how-to-know-when-googlebot-last-crawled.html 
http://arjudba.blogspot.com/2009/12/how-to-add-different-meta-tags-to.html 
http://arjudba.blogspot.com/2009/12/how-to-disable-or-remove-blogger.html 
http://arjudba.blogspot.com/2009/12/scrolling-text-effect-html-code-with.html 
http://arjudba.blogspot.com/2009/12/how-to-post-larger-images-in-blogger.html 
http://arjudba.blogspot.com/2009/12/how-to-transfer-or-sell-blogger.html 
http://arjudba.blogspot.com/2009/12/how-to-add-email-subscription-form-to.html 
http://arjudba.blogspot.com/2009/12/how-to-add-favicon-to-blogger-blogspot.html
http://arjudba.blogspot.com/2009/12/how-to-add-tag-cloud-category-to.html

How to add Tag cloud (category) to a blogger (blogspot) blog

Have you ever seen a tag cloud or list of categories to any blog. You might wonder how you will be able to add those tag cloud or category for your blog. Example of tag cloud and list of blog categories are shown below.
tag cloud

category list

Step 01: Login to blogger.com and from http://www.blogger.com/home click layout on the blog to which you want to add tag cloud or blog categories.

Step 02: Under Layout menu click Page Elements. From left side click Add a Gadget.

Step 03: A pop up window will appear. From the pop up window find Labels Gadget like the image below. Click Labels.


Step 04: After clicking Labels you will see a Configure Labels window.
From the Configure Labels window you will be able to change

- Title: You might change it to "List of Categories" or "Tag Cloud".

- Show: You can display All Labels or only Selected Labels.

- Sorting: You can sort the category/cloud Alphabetically or by Frequency.

- Display: You are able to display the lists as List or Cloud. If you

- Show number of posts per label: You can decide whether you want to display the number count or not.

Step 05: After you configure Lavels Click Save button and you are done.
Related Documents
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html

http://arjudba.blogspot.com/2009/07/how-to-setup-google-webmaster-tool-for.html
http://arjudba.blogspot.com/2009/06/how-to-get-targeted-backlinks-to-your.html
http://arjudba.blogspot.com/2009/07/draw-google-adsense-money-using-western.html
http://arjudba.blogspot.com/2009/06/different-types-of-web-hosting-services.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-yahoo-directory.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-google-directory.html
http://arjudba.blogspot.com/2009/12/how-to-know-when-googlebot-last-crawled.html
http://arjudba.blogspot.com/2009/12/how-to-add-different-meta-tags-to.html
http://arjudba.blogspot.com/2009/12/how-to-disable-or-remove-blogger.html

http://arjudba.blogspot.com/2009/12/scrolling-text-effect-html-code-with.html

http://arjudba.blogspot.com/2009/12/how-to-post-larger-images-in-blogger.html

http://arjudba.blogspot.com/2009/12/how-to-transfer-or-sell-blogger.html

http://arjudba.blogspot.com/2009/12/how-to-add-email-subscription-form-to.html
http://arjudba.blogspot.com/2009/12/how-to-add-favicon-to-blogger-blogspot.html

How to add favicon to blogger (blogspot) blog

Before starting this post let's have an idea what is called favicon. Favicon also named as Favourite icon or pageicon or urlicon is a small icon (image) displayed at the beginning of the address bar of the browser.

The main advantage of creating and using favicon is, whenever someone bookmarked or favorited your blog the icon easily identify your blog/site among several other sites.

The most common sizes for favicons are: 16x16, 32x32, 48x48, 64x64, 128x128.

Most people use .ico format as favicon. But you can use .jpg or .png or .gif format for your favicon.

Example image of favicon.

The image in the address bar is the favicon.
Steps by steps how favicon can be added to your blogger blog is discussed below.

Step 01: With photoshop or gimp tool you have to create a 64x64 or 32x32 pixel image. You can also any online icon generator tool to create an icon online. I have created following icon for my arjudba.blogspost.com favicon using gimp tool.

You can access icon image from url http://1.bp.blogspot.com/_8O68IaFjsdA/SzxpFsLsJUI/AAAAAAAAAaQ/RrS2kG1c1Dw/s320/arju+icon+final.jpg

Step 02: Go to your blogger dashboard>layout>Edit html.

Step 03: Find out the following lines from the HTML template.
<title><data:blog.pageTitle/></title>
Add following codes
<link href='http://1.bp.blogspot.com/_8O68IaFjsdA/SzxpFsLsJUI/AAAAAAAAAaQ/RrS2kG1c1Dw/s320/arju+icon+final.jpg' rel='shortcut icon' type='image/vnd.microsoft.icon'/>
below <title><data:blog.pageTitle/></title> this line.
So the codes will look like,
<head>
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>
<link href='http://1.bp.blogspot.com/_8O68IaFjsdA/SzxpFsLsJUI/AAAAAAAAAaQ/RrS2kG1c1Dw/s320/arju+icon+final.jpg' rel='shortcut icon' type='image/vnd.microsoft.icon'/>
<b:skin><![CDATA[/*



Step 04: Save the template and open your blog in a new window. You should see a fine favicon for your blog.
Related Documents
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html

http://arjudba.blogspot.com/2009/07/how-to-setup-google-webmaster-tool-for.html
http://arjudba.blogspot.com/2009/06/how-to-get-targeted-backlinks-to-your.html
http://arjudba.blogspot.com/2009/07/draw-google-adsense-money-using-western.html
http://arjudba.blogspot.com/2009/06/different-types-of-web-hosting-services.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-yahoo-directory.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-google-directory.html
http://arjudba.blogspot.com/2009/12/how-to-know-when-googlebot-last-crawled.html
http://arjudba.blogspot.com/2009/12/how-to-add-different-meta-tags-to.html
http://arjudba.blogspot.com/2009/12/how-to-disable-or-remove-blogger.html

http://arjudba.blogspot.com/2009/12/scrolling-text-effect-html-code-with.html

http://arjudba.blogspot.com/2009/12/how-to-post-larger-images-in-blogger.html

http://arjudba.blogspot.com/2009/12/how-to-transfer-or-sell-blogger.html

http://arjudba.blogspot.com/2009/12/how-to-add-email-subscription-form-to.html

Wednesday, December 30, 2009

How to add email subscription form to your blog

If you are new to blogging then you might think how you can get continuous visitor to your blog. One way to keep your visitors up to date is implementing email subscription form in your blog. Once users subscribed to your blog, email will be sent to the users automatically.

Following steps will demonstrate how you can add subscription form to your blog.

Step 01: Go to http://feedburner.com. Sign in to FeedBurner with your Google Account.
google feedburner

Step 02: Click on the My Feeds link that means visit http://feedburner.google.com/fb/a/myfeeds. You will see lists of feeds. If you don't burn a feed yet type your blog address in the textbox and then click Next. You will see your feed title. If you burn multiple feeds for the same blog you will see multiple feed title as well. Following image is the list of the feeds under my account.
my feeds

Step 03: Click on the feed title on which you want to add email subscription form. Click on the 'Publicize' tab and Select the "Email Subscriptions" option (on the left sidebar).
It should look like following image.
email subscriptions

Step 04: Click on Active button. There will you see two HTML codes. First one is form and second one is link code. By default you will see Widget in Typepad like the image below.
widget in typepad
If you want it for your blogger account then select Blogger from the drop down menu and then simply click Go. You will see Add Page Element window and then simply Click Add widget. The subscription form will be added automatically to your blog.
add page element blog

Alternatively, you can copy the codes either



<form style="border:1px solid #ccc;padding:3px;text-align:center;" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=oraclefeed', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"><p>Enter your email address:</p><p><input type="text" style="width:140px" name="email"/></p><input type="hidden" value="oraclefeed" name="uri"/><input type="hidden" name="loc" value="en_US"/><input type="submit" value="Subscribe" /><p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a></p></form>


which yields,
Enter your email address:


Delivered by FeedBurner

or,



<a href="http://feedburner.google.com/fb/a/mailverify?uri=oraclefeed&loc=en_US">Subscribe to Oracle in World by Email</a>


which yields,
Subscribe to Oracle in World by Email

Step 05: Once you copy the code,Sign in to your blogger dashboard>layout>add a page element>html/javascript paste the code and save the changes.

You are done.
Related Documents
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html

http://arjudba.blogspot.com/2009/07/how-to-setup-google-webmaster-tool-for.html
http://arjudba.blogspot.com/2009/06/how-to-get-targeted-backlinks-to-your.html
http://arjudba.blogspot.com/2009/07/draw-google-adsense-money-using-western.html
http://arjudba.blogspot.com/2009/06/different-types-of-web-hosting-services.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-yahoo-directory.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-google-directory.html
http://arjudba.blogspot.com/2009/12/how-to-know-when-googlebot-last-crawled.html
http://arjudba.blogspot.com/2009/12/how-to-add-different-meta-tags-to.html
http://arjudba.blogspot.com/2009/12/how-to-disable-or-remove-blogger.html

http://arjudba.blogspot.com/2009/12/scrolling-text-effect-html-code-with.html

http://arjudba.blogspot.com/2009/12/how-to-post-larger-images-in-blogger.html

http://arjudba.blogspot.com/2009/12/how-to-transfer-or-sell-blogger.html

How to transfer or sell blogger (blogspot) blog to another account

There are several situations in which you want to change the ownership of current blogger account to another blogger account. Some scenarios are,

- You have several email addresses and under different email addresses you have several blogs. For easier maintenance you want to see all blogs under one account so that you can edit/ add new post after login just from one account.

- You like to sell your blog and thus you need to transfer control to the buyer account.

Whatever the scenarios the steps to transfer blog account is discussed below.

Step 01: Sign in to http://www.blogger.com/home, you will see the list of blogs that is owned by you. Click on the settings link of the blog that you want to transfer.
blogger dashboard

Step 02: In the new window click on Permissions. You will see the list of Authors like the image below.
author list arju blog

Step 03: Before transferring your blog you need to first invite him as an author and upon his invitation acceptance you have to make him admin. Click on the 'ADD AUTHORS' button, enter his email address in the textbox and then click Invite.
add author

Step 04: After sending him invitation let him check his email address. He would get an email like below.


And in your blog you will see the status like below,
author just added

Step 05: Let him accept the invite , i.e click Contribution link and using a gmail account accept the contribution.

Step 06: Once the invitee confirmed, go to the permissions page once again. Now, you will see an option to grant admin privileges associated with his/her email. Click on the 'grant admin privileges' link and confirm.
after invitation acceptance

Step 07: Now you see in your blog you have two admins. Your task is to click remove link associated your email address. After you remove now your blog will be transferred from your account to your partner's account.
remove admin access

You are done now. You have transferred your blog to another blog account.
Related Documents
http://arjudba.blogspot.com/2009/08/how-to-increase-your-technorati.html

http://arjudba.blogspot.com/2009/07/how-to-setup-google-webmaster-tool-for.html
http://arjudba.blogspot.com/2009/06/how-to-get-targeted-backlinks-to-your.html
http://arjudba.blogspot.com/2009/07/draw-google-adsense-money-using-western.html
http://arjudba.blogspot.com/2009/06/different-types-of-web-hosting-services.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-yahoo-directory.html
http://arjudba.blogspot.com/2009/07/how-to-add-site-to-google-directory.html
http://arjudba.blogspot.com/2009/12/how-to-know-when-googlebot-last-crawled.html
http://arjudba.blogspot.com/2009/12/how-to-add-different-meta-tags-to.html
http://arjudba.blogspot.com/2009/12/how-to-disable-or-remove-blogger.html

http://arjudba.blogspot.com/2009/12/scrolling-text-effect-html-code-with.html

http://arjudba.blogspot.com/2009/12/how-to-post-larger-images-in-blogger.html