Saturday, October 29, 2011


Use Automatic Fixed Read More Jump Break With Thumbnail On Blogger

On Blogger you have the option to add a jump break to your posts, so the posts will be displayed with just a short summery on the home page and a link to read the full post will be below.The jump break has a number of great advantages, if you display full posts on your home page it will severely slow down the load time, Also With the jump break in place visitors that land on your home page will see a selection of your posts without the need to scroll.It's also more professional looking and as visitors have to click through to the full post it increases page views.

In this Blogger Tip i have a script that will automatically turn your posts into read more summary's on your blogs home page with a few added extras.Here are some of the features of an auto Read More :
  • Your posts will automatically be displayed as short summary's with a read more link.
  • An image from the post will be re sized into a thumbnail and displayed beside the summery.
  • You can choose how much text is displayed in the summery.
  • You can choose the size of the thumbnail.
  • All Previous posts will also have the jump break so you don't need to go through your archive adding it.

Add Auto Read More Post Summary's To Your Blog

1. Log in to Blogger Dashboard.

2. In your Blogger dashboard click Design > Edit Html > Tick The Expand Widget Templates Box.
(Note: Before editing your template, save a copy of it.)



3. Find the following piece of code in your blogs Html :

</head>

4. Copy the following code and paste it Directly Above / Before </head>

<script type='text/javascript'>
var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 120;
img_thumb_width = 120;
</script>
<script type='text/javascript'>
//<![CDATA[
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;
}
//]]>
</script>


Important:
The code in red sets how the post summary's are displayed.Remember if a post has an image it will be re sized into a thumbnail to be displayed beside the summery.If the post does not have an image just a text summery will be displayed.
  • summary_ noimg= 430; --> The length of the summery if the post does not have a thumbnail.
  • summary_img = 340; --> The length of the summery if there is an image in the post that will be converted into a thumbnail.
  • null_thumb_height = 120; --> The height in pixels of the thumbnail.
  • null_thumb_width = 120; --> The width in pixels of the thumbnail.

5. Find the following piece of code in your blogs Html :

<data:post.body/>

6. Replace <data:post.body/> With The Code Below :


<b:if cond='data:blog.pageType == &quot;item&quot;'>
<data:post.body/>
<b:else/>
<b:if cond='data:blog.pageType == &quot;static_page&quot;'>
<data:post.body/>
<b:else/>
<div expr:id='&quot;summary&quot; + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>
createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);
</script>
<div style='clear: both;'/>
<span class='rmlink' style='font-weight:bold;padding:5px;float:right;text-align:right;'><a expr:href='data:post.url' >Read more ... </a></span>
</b:if>
</b:if>

Note - You can change the text in red from Read More to "Continue Reading", "Read Full Post" or anything you like.

Note - You should try to have the first image in your posts as close to square as possible so they work well when used as thumbnails on your home page.Images that are for example rectangle in shape will appear distorted when they are re sized.Try to add an image at the top of the posts that are close to square, then size then wont make a big impact on the appearance.Remember it's the first image in each post that is used as a thumbnail.

7. Save Your Template.

That's it for this Blogger tip, All your posts including all archived posts will now be displayed with a summary and read more on your home page, labels pages and archive pages.

Drop Your Comments, Views And Opinions Below.
Read Full Post ...


How To Create A Privacy Policy Page To Comply With AdSense TOS

Did you know that AdSense require you to have a privacy policy on your Blog or website if you display their ads? Failure to have a privacy policy could see you account being closed and all earnings forfeited.

To be honest i didn't know this until recently and have just added a privacy policy to my own blog.As ever this was something i knew my readers needed to be informed of and as most people wouldn't know were to start when writing a privacy policy i looked for and easy form you could copy and add to your blog.I actually found something much better.

Here is our Privacy Policy at http://www.howblogworks.com/p/privacy-policy-wwwhowblogworkscom.html

While browsing around i found a 'Privacy Policy Generator' all you need to do is add your blog address and your email one click and you privacy policy is ready to be added to your blog or website.

I will show you how to generate a privacy policy and how to add it to your blog.

Generate your privacy policy.

1. Click Here(http://www.serprank.com/privacy-policy-generator/) to go to the Serprank Generator Page.

You will be asked to provide 3 sections of information as shown in the image below :


Part 1 : Self explanatory add your Email and URL 
Part 2 use of cookies : I clicked yes for this because although this blog does not collect cookies directly gadgets like hit counters and stat analyzers do.This shouldn't count but to be honest it makes no difference if you click yes or no.If you say you don't collect cookie info but you actually do it could spell trouble, If you say you do but you don't it means nothing. 
Part 3 Advertiser Information : Just tick the boxes of the advertisers you use.If your reading this post i will presume you use AdSense.I added Amazon because i use them somtimes and i also use Clickbank.I also clicked Chitika, although i don't use their ads at the moment i intend to in the near future.So click the ones you use you can always go back if you sign up to another one.

2. Once this is filled up we click 'Create My Privacy Policy' and you will get your complete policy.

3. Copy the whole lot and you are ready to add it to your blog.


Adding it to your blog.

1. Log in to Blogger.

2. Create a New Page for your blog by going to Posting > Edit Pages >  NEW PAGE.

3. Paste the copied policy in the Page matter area, title the Page 'Privacy Policy'.

4. Press PUBLISH PAGE, and you are done.



Please spread the word of this as i don't think many people know it's required an visitors to your blog will thank you for the information.


That's it i would like to know if you were aware of this AdSense requirement let me know in the comments.If you need more help you can also leave a comment i'm always glad to help. 
Read Full Post ...

Sunday, October 23, 2011


Solution for Common Problems of "Drop Down Menu" for Blogger Blogspot Blog

In this tutorial we will talk about solution for most common issues and facts about "Drop Down Menus". Some Drop Down Menus not work properly in Internet Explorer as well as other problems are there, So i decide to solve some most common issues and facts.

Issue No.1
Question: Drop Down Menus not work properly in Internet Explorer, What to do ?
Ans: In my previous Tutorial to Make CSS Drop Down Menu for Blogger i added a string in CSS as given below to solve this problem.

z-index: 9999999 !important;

           "!important" is the only command recognized by Internet Explorer, and i found it as solution for this problem. Hope it could help you out.


Issue No.2
Question: My drop down menu is hidden behind my main wrapper or post page, What to do?
Ans: Well to solve this issue it took my whole one day :) . This issue is related with your template. And here is the solution given below:

1. Log in to Blogger

2. Go to Layout/Design > Edit HTML

3. Check "Expand Widget Templates"


4. Find (overflow: hidden;) string given below(sample image given below):

/* Tabs
----------------------------------------------- */
.tabs-outer {
  overflow: hidden;
  position: relative;
  background: $(tabs.background.color) $(tabs.background.gradient) repeat scroll 0 0;
}


5. and Delete the line (overflow: hidden;) after that it will look like this:


/* Tabs
----------------------------------------------- */
.tabs-outer {
  position: relative;
  background: $(tabs.background.color) $(tabs.background.gradient) repeat scroll 0 0;
}


6. Press SAVE TEMPLATE, and you are done.
      Now your Drop Down Menu will not hide behind your main wrapper or post page.

Read Full Post ...

Friday, October 21, 2011


Best Tutorial to Make CSS Drop Down Menu for Blogger Blogspot Blog

                    In this tutorial you will learn how to place a Drop Down Menu on your Blogger Blogspot blog. A Drop Down Menu will encourage readers as well as help them to quickely navigate to the page where ever they want to go. Drop Down Menu gives your Blog a stylish look. With the help of Drop Down Menu, you can show the most important pages quickly n easily like "Contact Us","About Us","FAQ" etc. pages.


Tutorial to Make CSS Drop Down Menu for Blogger Blogspot Blog

1. Log in to Blogger

2. Go to Layout/Design > Template Designer > Advance > Add CSS

(Note: These settings are working fine as my template's width is 1000px )
3. Copy the following CSS code and past it into "Add CSS" section as shown in the image below:


#coolMenu,
#coolMenu ul {
    list-style: none;
}
#coolMenu {
    float: left;
}
#coolMenu > li {
    float: left;
}
#coolMenu li a {
display: block;
    height: 2em;
    line-height: 2em;
    padding: 0 1.4em;
    text-decoration: none;
}
#coolMenu ul {
    position: absolute;
    display: none;
z-index: 9999999 !important;
}
#coolMenu ul li a {
    width: "";
}
#coolMenu li:hover ul {
    display: block;
}
/* Main menu
------------------------------------------*/
#coolMenu {
    font-family: Arial;
    font-size: 12px;
    background: #DADADA;
}
#coolMenu > li > a {
    color: #666666;
    font-weight: bold;
}
#coolMenu > li:hover > a {
    background: #FFFFFF;
    color: #CC6600;
}


/* Submenu
------------------------------------------*/
#coolMenu ul {
    background: #FEFEFE;
}
#coolMenu ul li a {
    color: #CC6600;
}
#coolMenu ul li:hover a {
    background: #EEEEEE;
}
#coolMenu ul li:hover a {
    color: #666666;
}
#HTML4{
position: relative;
z-index: 10;
}


4. To save this Click "Apply to Blog".

5. Now final step is again go to Layout/Design > Page Elements.


6. And Add a HTML/JavaScript Gadget and copy/past the following HTML code to make menu vicible on your site. Image given below.
(Note: edit links as well as name as per your need, instructions given below)


<ul id="coolMenu">
    <li><a href="http://www.howblogworks.com/" title="Home">Home</a></li>
    <li><a title="Menu1">Menu1</a>
      <ul>
        <li><a href="http://submenuURL.com">Sub Menu1</a></li>
        <li><a href="http://submenuURL.com">Sub Menu2</a></li>
        <li><a href="http://submenuURL.com">Sub Menu3</a></li>
        <li><a href="http://submenuURL.com">Sub Menu4</a></li>
      </ul>
    </li>
      <ul>
    <li><a title="Menu2">Menu2</a>
      <ul>
        <li><a href="http://submenuURL.com">Sub Menu1</a></li>
        <li><a href="http://submenuURL.com">Sub Menu2</a></li>
      </ul>
    </li>
    <li><a href="http://www.YourpageUrl.com/" title="Menu3">Menu3</a></li>
    <li><a href="http://www.YourpageUrl.com/" title="Menu4">Menu4</a></li>
    <li>
<a><form action="http://www.howblogworks.com/search" method="get">
<input class="textinput" name="q" size="20" type="text" /> <input class="buttonsubmit" name="submit" type="submit" value="search" /></form></a>
</li>
</ul>


7. Click Save and you are done.


Here are the Instructions to edit above mentioned code links as well as name as per your need:
1. Change the url of your page given up in blue color as per your need.
2. Change the Name of the menu you want given up in Red color.
3. The string above in the Pink color is the code of Search Box that i added to make a search option for my blog, you can delete that if you don't need it.(Note: Replace url address(www.howblogworks.com) with yours in search box code.)
4. You can add more main menu as well as sub menu by editing the whole structure.


         Some Drop Down Menus not work properly in Internet Explorer as well as other problems are there, So i decide to solve some most common issues and facts. you can visit this link (http://www.howblogworks.com/2011/10/solution-drop-down-menu-problem.html) to check if you have any issue with Drop Down Menu.
Read Full Post ...

Monday, October 17, 2011


Add Custom Search Box In Blogger Blogspot

               Even though many custom blog templates have a in-built search box(Like the one i have here). There are some blogs which do not have search boxes. So this is a simple way to add a search box to your blog. It will take just 1 min for you to do this.(30 secs for reading this and 30 secs for doing it.)

See Demo Here:

Add Custom Search Box In Blogger Blogspot

1. Go to Blogger Dashboard-->Layout.(login first if you are not logged in already)
2. Now click on Add a Gadget and click on HTML/Javascript.
3. Then copy the following code and past into HTML widget.
(Note: Replace the link above in the box (www.howblogworks.com) with your website's web address.)
You can see screen look like this.



4. Click Save and place the widget where ever you want to display your search box. Thats it.


Read Full Post ...

Monday, October 10, 2011


Create a Facebook Fan Page for your Blog

Facebook is a great Social Networking Site to promote your blog or brand. Most of the major brands do have a Facebook Fan Page. Here are some examples of Facebook Fan pages – Coca Cola FB Fan Page , Mashable FB Fan Page. Are you impressed and want to  create one for your blog? I too wanted to create one and i finally made it. Here is the link of my Facebook Fan Page .
So lets start making our own Facebook Fan Page for our blog.

1.Go to the Create Fan Page Link on Facebook and select Brand or Product
Next :

Choose Website from the drop down list and provide the Page name in the next  box. Read and agree to the terms and click the “Get Started” button.

2.On the Next Page, Upload an Image for your Fan Page

3.Once you have added the image, you can edit the fan page information by clicking on the “Edit Page” link as in the image below
Edit the fan page information and Save the Changes.

4. Now your Fan Page has been properly set up.If you want, you can automatically post your blog posts to Facebook. There are multiple ways to do it. I'm specifying one of them here

Using the RSS Graffiti Application

a. Go to http://apps.facebook.com/rssgraffiti/ and authorize RSS Graffiti

b. Once authorized, you will see a list of your Fan Pages on the left.Click on the Fan Page Name

Now authorize RSS Graffiti(second authorization for your fan page) to access your Fan Page

Once authorized, Click on the Add Feed Button, and enter your Feed Url.

If your blog  is http://blogname.blogspot.com, then your Feed Url will be http://blogname.blogspot.com/rss.xml

here I have used http://www.howblogworks.com/atom.xml?redirect=false&start-index=1&max-results=100 as my feed url, Because i have more posts to feed here at once. Click the link which says “click here to fetch and preview” and see if its grabbing your blog feed.(If its not grabbing your feed, then check if you have enabled the Blog Feeds. If your blog is not on blogger, then your feed url will be different.).

Now Go to the Filter Tab and click on the Change link next to the Cut-off date/time . Choose the last post(oldest one) from the drop down. and  click the Save button.

It may take some time for your posts to appear on your Fan Page Wall(your latest 25 posts). From now on every new post that you make will be automatically posted to your Fan Page’s Wall.There might be some delay in the wall getting updated, as RSS Graffiti checks the feed for new entries at regular time intervals.(If you want to post to your profile Wall as well, then in RSS Graffiti, click on your name and add the feed there as well)

Getting a Better Fan Page URL
Your Fan Page URL will look something like https://www.facebook.com/pages/How-Blog-Works/257143917656746 .Now if you have a pretty good number of fans(i think the minimum requirement is 25 fans) , then you can have a pretty Facebook URL like http://www.facebook.com/howblogworks instead of a long one like https://www.facebook.com/pages/How-Blog-Works/257143917656746 .

To claim such small usernames for your Facebook page, go to http://www.facebook.com/username/ and Click on Set a username for your Pages. There you can select the small pretty user name for your fan page.Once you opt for a user name you can’t change it back again. So be careful when choosing your Facebook Fan Page Username.



Read Full Post ...

Sunday, October 09, 2011


Add a Contact Me Page (Form) To Your Blogger/BlogSpot Blog


Whether you have a personal or a commercial blog, one of the important pages which must be present on every blog is a "Contact Us/Me" page. It is through this page, that your visitors give you their suggestions, feedback and advise.

While you can create a simple "Contact" page, with your name and email ID, but to give it a more professional look, you must have an embedded "contact-me" form in the page. Although there are many websites, which allow to create and embed a fully customized form, but finally when the visitor clicks on the "Submit" button, s/he will be redirected to the contact-form provider's website...

But now you can use the FREE service from EmailMeForm, which not only lets you to create and embed the form [fully customized], but even the landing page (Thank You page) will be a page on your blog (a custom-made thank you page or your blogs homepage).

1. So first of all, you have to create a "Contact Me" and a "Thank You" page.
     Go to Posting>>Edit Pages>>New Page


2. Link these pages from the top-menu or from the bottom (footer of your blog).I am using Link List gedget to link my contact-us page, and after that it will look like this.

3. Then, register at EmailMeForm and create your first contact-form.
4. Finally copy and add the code to your contact-me page by going to Posting>>Edit Pages>>Under your page title click Edit. Navigate your page to Edit HTML and paste your code there and press PUBLISH PAGE.
5. You are done.
Check out the live example of this form, at my own "contact me" page !
Read Full Post ...

Saturday, October 08, 2011


Add Cool Subscription Widget to Blogger Blogs


Subscribers or readers of a blog actually represents the image of the blog. Adding a Subscription widget can help you build the number of readers and followers of your blog. In this step by step tutorial I'll show you how to add the Pro Subscription widget (that i am currently using) to your blogs.


How to add the Subscription widget

  1. Go to Design >Layout
  2. Add a Gadget
  3. Select HTML/JavaScript and add the following code to the box.



<a href="http://feeds.feedburner.com/HowBlogWorks" imageanchor="1" 
style="margin-left: .5em; margin-right: 1em; float: center;">
<img border="0" height="40" 
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoosXe48CS6Fql8EwK4RFHsJ-1WecA5a0aqJ8MWeR48ZRY2gglO3V09YKgVI506kBdC2C8HvdJ4ryarQyFhpwjd6UFVTWjBQaeSFx0jjpwSex60IcygVoBj068nEGCImsdvRNQDYbO_hPY/s1600/Untitled-5.png" width="290" /></a>
<style> 
.mbtips-email{ 
background:Fff no-repeat 0px 12px ; 
width:270px;
float:center;
font-size:1.4em;
font-weight:bold;
margin:2px 20px 0px 35px;
color:#686B6C;
}
.mbtips-emailsubmit{ 
background:#0084CE;
cursor:pointer;  
color:#fff; 
border:none;
padding:3px;
margin:0 0 0px 0;
text-shadow:0 -1px 1px rgba(0,0,0,0.25); 
-moz-border-radius:2px; 
-webkit-border-radius:2px; 
border-radius:2px; 
font:12px sans-serif;
} 
.mbtips-emailsubmit:hover{ 
background:#E98313; 
} 
.textarea{ 
padding:2px; 
margin:0px 2px 0px 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:170px; 
color:#666;}
</style>
<style class="text/css">
.center 
{
text-align:center;
font-weight:bold;
margin:10px;
}
</style>
<div class="center">
Submit your Email Address to Get Free Updates</div>
<div class="mbtips-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=HowBlogWorks',
 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"> 
<input gtbfieldid="3" class="textarea" name="email" onblur="if 
(this.value == "") {this.value = "Enter email address here";}" 
onfocus="if (this.value == "Enter email address here") 
{this.value = "";}" value="Enter email address here..." type="text" /> 
<input type="hidden" value="HowBlogWorks" name="uri"/>
<input type="hidden" name="loc" value="en_US"/>
<input class="mbtips-emailsubmit" value="Submit" type="submit" />
</form> 
</div>
<style class="text/css">
table
{
border-bottom: 1px solid #E6E6E6;
float: center;
width: 300px;
margin:0 10px;
}
</style>
<div class="table">
<table>
<tr>
<td><a href="http://www.facebook.com/pages/How-Blog-Works/257143917656746" 
imageanchor="1" TARGET="_blank"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhhGQ0E0GEIMGgRznAGj1KkmntUeJzm8cGZmUCqibIH_K-bZu0xTuJ6Q1K4r8gDDPad-cqW4MAaI0rDyiX6amg4ZpwkbK5UdCvzonAJ-R1_Dai6mOcJUpGUdlGFn3Ap_sGzpE2mY-OScb9C/s1600/facebook-buttons-59-68.png" /></a></td><td>
<a href="http://twitter.com/howblogworks" imageanchor="1" TARGET="_blank">
<img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjgzOUK5Naa6fwQkPS4A80AGYG2WnPvqWZ_V5AX9gWZkM9W3ngW2Mx3fM1oN-9V_uRMoadzezwqD_R3AQQ2ainNRkkJnRlbZV7GP6WB1PURHp6aiWMKLyD5f7pzL0F96gS1Aw8-hTx-j6fn/s1600/Twitter-Buttons-70-10-.png" /></a></td>
<td><a href="http://feeds.feedburner.com/HowBlogWorks" imageanchor="1" TARGET="_blank">
<img border="0" 
src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4kwav_0D3vyIdRIxj_Jds7xiCYEkyohpc5Kh2gxDVj4tviC15YSLmMU6gztrcrFfhBGAkiyQ-MR1SoCYXGa9rYDQLtxLPMKaiVBVlCZa9KYtBzAB-_RyQoF1wOPE8YxVK1wXpAIXrXi6E/s1600/subscribe-rss.png" />
</a></td></tr></table></div>
<style class="text/css">
.grablink
{
link-color:#0084CE;
text-size:8px;
text-align:right;
text-weight:italic;
}
</style>
<div class="grablink">
<a href="http://www.howblogworks.com/2011/10/add-cool-subscription-widget-to-blogger.html">Grab this Widget</a>
</div>


   4.      Save and you are done, you should be able to see Pro Subscription Widget now.


Adjust the Widget

Follow the steps below to adjust your widget.
  • Replace http://feeds.feedburner.com/HowBlogWorks with your Feedburner url.
  • Replace uri=HowBlogWorks with uri="your feed value"
  • Replace value="HowBlogWorks" with value="your feed value"
  • Replace http://www.facebook.com/pages/How-Blog-Works/257143917656746 with your Facebook fan page url.
  • If you don't have a fan page yet then create a facebook Fanpage now.
  • Replace http://twitter.com/howblogworks with your Twitter Page.
  • Replace http://feeds.feedburner.com/HowBlogWorks with your Feed Url.

Customize your Widget

There are some basic customization you can make.

  • If you want to change the email Submit button, then change #0084CE with your own color value
  • If you don't want the pointer when you hover your mouse over the button then remove cursor:pointer;
  • When you hover mouse over the Submit button , the color of the button changes to#E98313, If you want to change that , then simply replace that with your own color value.
  • If you want to change the Text "Submit your Email Address to Get Free Updates" with Words you like.
Read Full Post ...

Thursday, October 06, 2011


How to Setup Your own Domain to Blogger Blogspot Blog

                               Today I am bit excited to get my new domain www.howblogworks.com, I just buy domain to teach you how to setup your own domain to blogger, as in previous tutorial I taught you How to Buy Custom Domain For Your Blogspot Blog Via Blogger and in this tutorial we will learn How to Setup Your own Domain to Blog Blogger Blogspot.

There are 2 ways to do it,

    1. Point your already owned and registered domain name to your blog.
    2. Buy new domain name via your blogger account.

Note:backup your template as well as your posts for precautions.
We’ll now talk about number 1.

1. Login to Blogger and navigate to Settings > Publishing.

2. FIND: Switch to: • Custom Domain

3. And click Custom Domain

for more detail check next image.


4. And click Switch to advance settings


5. Fill your domain name with www (eg.   www.howblogworks.com) and click save settings.


6. At very next same on this page and check "Redirect" and save settings again.
Now you are all done.


7. Now you hav to setup your domain
you are just 1 step away

How to create a CNAME record for my custom domain

i am going to give you these two links that will guide you step by step according to your domain owner:
http://www.google.com/support/blogger/bin/static.py?page=ts.cs&ts=1233381
http://www.google.com/support/blogger/bin/answer.py?hl=en&answer=58317

Note:after setting up cname, your domain will take minimum 2 hours to work, so be calm and your site will be down during these setup(2 hours).

Now your custom domain is setup.
You are done.

And of course you can use any domain owned for you from another web company, But in choosing custom domains, be sure to secure your sites with the best Web Hosting Solutions.

Note: after changing your domain remember to add/replace your new domain to feedburner,webmasters tool, google analytics as well as on all related SEO tools where you registered with your old domain, and google also redirect all your visitors who use old domain, so no need to worry about loosing visitors.


Related Articles
List of How Blog Works Tutorials for Blogger Blogs
How to Buy Custom Domain For Your Blogspot Blog Via Blogger

Read Full Post ...

Sunday, October 02, 2011


Add background music to your blog

        I was asked many times, how to embed background music in a blog. It's actually quite simple to do this, and there are various methods you can use.

In this post, I'll concentrate on actually embedding the music (rather than adding widgets such as Last.fm playlists). You can see an example of embedded background music here and also further down this page...


The easiest method of adding background sound is
  1. Login to Blogger if not already logged in
  2. Go to Design > Edit HTML
  3. Back up your Blogger template as a precaution by downloading the full template to your computer
  4. Expand Widget Templates by checking the box on the right hand side
  5. Find the following line in your Blogger template by using CTRL + F:

    <body>
  6. Include a line like following in your blog template,just after the opening <body> tag.


    <bgsound src="http://yoursite.com/yoursound.mp3" loop=infinite>

where the URL is that of the background music you wish to use. This method works perfectly well, but visitors to your site will not be able to switch the music off if it becomes distracting.

So instead, you may prefer to use this method instead, which is compatible with all browsers (press the play icon to start music):

This is achieved by including the following code somewhere in your template (eg: the sidebar widget):


<embed width="200" src="http://yoursite.com/yourmusic.mp3" autostart="false" loop="false" height="50"></embed>


You can change some of the variables to suit your needs:

  • autostart: set to "true" to make the music begin as soon as the page is loaded, or "false" to ensure the user has to press the play icon 
  • loop: set to "true" to have the music play over and over, or "false" so that it plays only once. 
  • height: if this is set to "40", only the play options will be visible. You can make this larger if you prefer, in which case blank space will be visible.

Using either method, you can link to .mp3, .mid or .wav music files. However, you must be aware of copyright restrictions, and ensure you have the appropriate permission for use for the music you decide to use!

Here are some sites I've used for copyright-free music you could use in your blog:



Related Articles
List of How Blog Works Tutorials for Blogger Blogs
Read Full Post ...

Saturday, October 01, 2011


How to Buy Custom Domain For Your Blogspot Blog Via Blogger

                    Many of us using blogger blogspot blog for blogging, because it is easy to use and editable, but after a while you want to your blog look more professional and more credible by Publish on a custom domain .Because some people think that yourblogname.blogspot.com used by newbies only. That’s not always true, of course.

There are 2 ways to do it,

  1. Point your already owned and registered domain name to your blog.
  2. Buy new domain name via your blogger account.

We’ll now talk about number 2.

Buy new domain name via your blogger account.
Now blogger makes it easier to convert your Blogspot Account into a .com Domain.
When you register a domain name via blogger account your Domain will be registered through a Google partner and cost $10 (USD) for one year.and as part of registration, you will also get a Google Apps account for your new domain.
and the great deal here is that YourBlogName.blogspot.com will redirect to your new custom domain. So you won’t leave your readers behind!

The first thing to do is to log into your blogger account,
Then got to Settings >> Publishing
FIND : Switch to: • Custom Domain
and click Custom Domain
for more detail check next image.


FIND : What address would you like your blog to have? Next to this you’ll find a small text filed, fill it by your custom domain name, and click Check Availability.


If the name you entered is Available you will navigate to
Choose a domain name (step 1 of 3) page
Click continue to registration
After that you’ll navigate to Sign up (step 2 of 3) page.
Enter the domain registration information for your chosen domain name.
(Note: This information will be listed in whois directory.)
Then click i accept, process to Google checkout.
If you already have credit card added to your Google account, you can easily press agree and continue
Or you have to add your billing information, credit card number and details to your current Google account.
Once you are finished press agree and continue.
Next review your purchase and press place your order now.
Now your custom domain is setup.
You are finish.
Note: it may take 2 for 3 days to your blog to transformation to your new domain.


Finally here is video helps you to do it in the right way:



              And of course you can use any domain owned for you from another web company, But in choosing custom domains, be sure to secure your sites with the best Web Hosting Solutions.

Related Articles
List of How Blog Works Tutorials for Blogger Blogs
Read Full Post ...


Blog's Definition & History In Short Note


Define: blog
                 There are different descriptions of that concept. According to most of the articles on the Internet 'blog' is short for 'web-log', a frequently updated publication of comments and thoughts on the web. Usually it is reflecting the views of the blog's creator. Blogs consist of text and images and are sorted by date. The newest information is on the top and there is an archive of the old one. People create blogs to share their thoughts with the world. A person writing in the journal is called a 'blogger'. Bloggers write about different topics: from the typical daily situations to the progress of some scientific researches. The readers also can leave comments and thus make the whole blog more interesting and useful.

History of the blog
                  Blogs are part of the World Wide Web since its creation. In the beginning they did not have a defined name, but their purpose was more or less the same as that of contemporary blogs. Here is a list of the first blogs:


  • Dawn of Internet: Tim Berners-Lee at CERN begins keeping a list of all new sites as they come online.
  • June 1993: NCSA's oldest archived 'What's New' list of sites.
  • June 1993: Netscape begins running it's 'What's New!' list of sites.
  • January 1994: Justin Hall launches Justin's Home Page which would become Links from the Underground.
  • April 1997: Dave Winer launches Scripting News.
  • December 1997: Jorn Barger coins the term 'weblog''.


For more info on blog check it out: http://en.wikipedia.org/wiki/Blog
Read Full Post ...