How To Use HTML Code Inside Blog Post In Blogger

Is your blog about tutorials that needs to show codes and scripts? Are you facing problem in showing codes in your tutorial posts? Don't worry guys that's not a big problem and you can easily solve this problem. Using a plain  HTML code inside a blog post in Blogger is always a tricky task. Whenever you write codes in Blogger blog post, then instead of the codes it will display you something else that looks very messy. This tutorial post is all about how to use HTML codes inside blog post in Blogger. Read this one and your all problems will be solved.

Steps To Use HTML Code Inside Blog Post In Blogger:-

1. Instead of writing your codes directly in your Blogger post editor, write your codes in any text editor. I use Microsoft Word.




2. Replace

                       "<" with "&lt;"
                                              and
                       ">" with "&gt;"

To do this task easily use the Find and Replace feature of your text editor.

3. Now you can copy and paste the codes in the Blogger post editor.

Alternatively, you can also use online HTML encoder-decoder tools provided by various websites. I am providing link to one of such website that provides online HTML encoding-decoding services which I got on google search.

http://htmlentities.net/

Happy blogging :)
Continue Reading

How To Submit Blogger Blog To Bing And Yahoo

Submitting your Blogger blog to search engines will always gonna help your webpages reputation in search engine. Earlier I wrote about how to submit your blogger to Google webmaster. Submit your sitemap to Bing and Yahoo to index your pages in their search engines. Yahoo Search has merged Site Explorer into Bing Webmaster Tools. Hence submitting your sitemap to Bing webmaster will also index your pages in Yahoo search engine.






1--> Login to Bing Webmaster with your Hotmail account. If you dont have an account then signup for an account.




2--> Enter your blogger blog URL in Add a Site box and click on Add.



3--> Enter sitemap as http://your-blog-name.blogspot.com/feeds/posts/default
replace your-blog-name with name of your blog and click on Add



4--> Now click on Verify now button.



5--> Now you are given 3 options to verify your site.
  •     Option 1: Place an XML file on your web server
  •     Option 2: Copy and paste a <meta> tag in your default webpage
  •     Option 3: Add CNAME record to DNS
Choose Option 2: Copy and paste a <meta> tag in your default webpage.



6--> Go to your blogger Admin page > Template > Edit HTML.

Ctrl + F and find </head> and paste the <meta> tag above/before it. Click on Save Template

7--> Click on Verify and your site is verified. It will take some days to indexed your site's URLs

Continue Reading

Post Title Followed By Blog Title

By default your Blogger blog title appears first followed by your post title in search engines. People always search for more specific contents. And because of this reason there are more chances of overlooking of your website link by visitors even if your link is at the top of the search results of search engines. To increase click conversion of your links, display your post title first followed by your blog title because it is the post title that gives visitors an idea about what the post is all about and what contents the post is containing. It will surely help in attracting visitors eyes to your links to a large extent. In this post I will show you how to implement it by using a small piece of code in your blogger template.




1) Login to your Blogger account

2) Go to Blogger Admn Page > Template > Click on Edit HTML >Click on Proceed

3) At the top of your template you would find a piece of code similar to the codes given below.

<head>
<b:include data='blog' name='all-head-content'/>
<title><data:blog.pageTitle/></title>

4) Replace the line
<title><data:blog.pageTitle/></title>
with the code below.

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> | <data:blog.title/></title>
</b:if>

5) Its all done. Now your post title will appear first followed by the blog title.
Continue Reading

Add Mashable Like Social Media Widget

Mashable created a beautiful social media widget. The look of this widget is awesome. Just look at the snapshot given below.  You can also add this mashable-like social media widget to your Blogger blog. This widget will get perfectly fitted in your blog's sidebar. It is one in all social media widget. It contains Facebook fanpage,Twitter follow us, attractive subscription box, RSS feed, LinkedIn and Google Plus. You can add or change social media links too if you know a little bit of coding. 


Many bloggers have already added this widget in their blog. If you want to add this widget in your blog then follow the steps that includes mere copy and paste task. Here is the complete steps to be taken to get  the mashable like social media widget in your blogger blog.

1) Login to your Blogger account.

2) Go to Blogger Admin Page > Layout

3) Click on Add a Gadget and select HTML/Javascript.

4) Copy-paste the code given below in notepad:

<style> /* Social Widget */ #MBT-mashable-bar { border: 0; margin-bottom: 10px; margin: 0 auto; width:300px; } .fb-likebox { background: #fff; padding: 10px 10px 0 10px; border: 1px solid #D8E6EB; margin-top: -2px; height:80px; } .googleplus { background: #F5FCFE; border-top: 1px solid #FFF; border-bottom: 1px solid #ebebeb; border-right: 1px solid #D8E6EB; border-left: 1px solid #D8E6EB; border-image: initial; font-size: .90em; font-family: "Arial","Helvetica",sans-serif; color: #000; padding: 9px 11px; line-height: 1px;} .googleplus span { color: #000; font-size: 11px; position: absolute; display:inline-block; margin: 9px 70px;} .g-plusone { float: left;} .twitter { background: #EEF9FD; padding: 10px; border: 1px solid #C7DBE2; border-top: 0;} #mashable { background: #EBEBEB; border: 1px solid #CCC; border-top: 1px solid white; padding: 2px 8px 2px 3px; text-align: right; border-image: initial;} #mashable .author-credit {} #mashable .author-credit a { font-size: 10px; font-weight: bold; text-shadow: 1px 1px white; color: #1E598E; text-decoration:none;} #email-news-subscribe .email-box{ padding: 5px 10px; font-family: "Arial","Helvetica",sans-serif; border-top: 0; border-right: 1px solid #C7DBE2; border-left: 1px solid #C7DBE2; border-image: initial; height:35px;} #email-news-subscribe .email-box input.email{ background:#FFFFFF; border: 1px solid #dedede; color: #999; padding: 7px 10px 8px 10px; -moz-border-radius: 3px; -webkit-border-radius: 3px; -o-border-radius: 3px; -ms-border-radius: 3px; -khtml-border-radius: 3px; border-radius: 3px; border-image: initial; font-family: "Arial","Helvetica",sans-serif;} #email-news-subscribe .email-box input.email:focus{color:#333} #email-news-subscribe .email-box input.subscribe{ background: -moz-linear-gradient(center top,#FFCA00 0,#FF9B00 100%); background: -webkit-gradient(linear,left top,left bottom, color-stop(0,#FFCA00),color-stop(1,#FF9B00)); background: -moz-linear-gradient(center top,#FFCA00 0,#FF9B00 100%); -pie-background: linear-gradient(270deg,#ffca00,#ff9b00); font-family: "Arial","Helvetica",sans-serif; border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; border:1px solid #cc7c00; color:white; text-shadow:#d08d00 1px 1px 0; padding:7px 14px; margin-left:3px; font-weight:bold; font-size:12px; cursor:pointer; border-image: initial;} #email-news-subscribe .email-box input.subscribe:hover{ background: #ff9b00; background-image:-moz-linear-gradient(top,#ffda4d,#ff9b00); background-image:-webkit-gradient(linear,left top,left bottom, from(#ffda4d),to(#ff9b00)); filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr=#ffffff, endColorStr=#ebebeb); outline:0;-moz-box-shadow:0 0 3px #999; -webkit-box-shadow:0 0 3px #999; box-shadow:0 0 3px #999 background:-webkit-gradient(linear,left top,left bottom, color-stop(0,#ffda4d),color-stop(1,#ff9b00)); background:-moz-linear-gradient(center top,#ffda4d 0,#ff9b00 100%); -pie-background:linear-gradient(270deg,#ffda4d,#ff9b00); border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; border:1px solid #cc7c00; color:#FFFFFF; text-shadow:#d08d00 1px 1px 0} #other-social-bar { background-color: #D8E6EB; box-shadow: 0 1px 1px #FFFFFF inset; padding: 0px; font-family: "Arial","Helvetica",sans-serif; font-weight:bold; overflow: hidden; border: 1px solid #B6D0DA; height:37px; } #other-social-bar ul {list-style: none outside none; padding-left: 4px;} #other-social-bar .other-follow { float: left; color:#1E598E; overflow: hidden; height:20px; padding:5px; width: 270px;} #other-social-bar .other-follow ul { list-style: none outside none; padding-left: 4px;} #other-social-bar .other-follow ul li { font-size: 12px; font-weight: bold; display:inline; border:0; text-shadow: 1px 1px white;} #other-social-bar .other-follow ul li a { font-size: 12px; color:#1E598E; font-weight: bold; display:inline; text-shadow: 1px 1px white;} #other-social-bar .other-follow li { font-size: 12px; font-weight: bold; display:inline; border:0; text-shadow: 1px 1px white;} #other-social-bar .other-follow li a { font-size: 12px; color:#1E598E; font-weight: bold; display:inline; text-shadow: 1px 1px white;} #other-social-bar .other-follow li.my-rss { background: url('http://3.bp.blogspot.com/-sR72SM_Wets/TwHZG9y4hXI /AAAAAAAAFv8/0bP2R3Qkl8c/s400/rss-16x16.png') no-repeat transparent; line-height: 1; padding: 0px 3px 1px 20px; width: 60px; margin-bottom:0px; margin-left:5px;} #other-social-bar .other-follow li.my-rss a, #other-social-bar .other-follow li.my-linkedin a, #other-social-bar .other-follow li.my-gplus a{ text-decoration:none; } #other-social-bar .other-follow li.my-rss a:hover, #other-social-bar .other-follow li.my-linkedin a:hover, #other-social-bar .other-follow li.my-gplus a:hover{ text-decoration:underline; } #other-social-bar .other-follow li.my-linkedin { background: url('http://4.bp.blogspot.com/-ht4UMG88lvM/ TwHZFFgc-1I/AAAAAAAAFvs/BBmINSJhUsk/s400/linkedin-16x16.png') no-repeat transparent; line-height: 1; padding: 0px 3px 1px 20px; width: 60px; margin-bottom:0px;} #other-social-bar .other-follow li.my-gplus { background: url(http://4.bp.blogspot.com/-cC729VpBxrk/TwHZE71ZgoI /AAAAAAAAFvk/_UMyIgA8vj8/s400/gplus-16x16.png) no-repeat transparent; line-height: 1; width: 60px; padding: 0px 3px 1px 20px; margin-bottom:0px;} </style> <!--[if IE]> <style> #email-news-subscribe .email-box input.subscribe{ background: #FFCA00; } </style> <![endif]--> <!--begin of social widget--> <div style="margin-bottom:10px;"> <div id="MBT-mashable-bar" > <!-- Begin Widget --> <div class="fb-likebox"> <!-- Facebook --> <iframe src="//www.facebook.com/plugins/like.php?href=http://facebook.com/YOURFACEBOOKUSERNAME&send=false&layout=standard& width=200px&show_faces=true &action=like&colorscheme=light& font&height=100px&appId=234513819928295" scrolling="no" frameborder="0" style="border:none; overflow:hidden; "></iframe> </div> <div class="googleplus"> <!-- Google --> <span>Recommend us on Google! </span><div class="g-plusone" data-size="medium"></div> <script type="text/javascript" src="https://apis.google.com/js/plusone.js"> </script> </div> <div class="twitter"> <!-- Twitter --> <iframe title="" style="width: 300px; height: 20px;" class="twitter-follow-button" src="http://platform.twitter.com/widgets/follow_button.html#_=1319978796351& align=&button=blue&id=twitter_tweet_button_0& lang=en&link_color=&screen_name=YOURTWITTERUSERNAME&show_count=& show_screen_name=&text_color=" frameborder="0" scrolling="no"></iframe> </div> <div id="email-news-subscribe"> <!-- Email Subscribe --> <div class="email-box"> <form action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open ('http://feedburner.google.com/fb/a/mailverify?uri=YOURFEEDBURNERTITLE', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true"> <input class="email" type="text" style="width: 150px; font-size: 12px;" id="email" name="email" value="Enter Your Email here.." onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /> <input type="hidden" value="pctipsandtricks4u/myRh" name="uri" /> <input type="hidden" name="loc" value="en_US" /> <input class="subscribe" name="commit" type="submit" value="Subscribe" /> </form> </div> </div> <div id="other-social-bar"> <!-- Other Social Bar --> <ul class="other-follow"> <li class="my-rss"> <a rel="nofollow" title="RSS" href="YOURRSSFEEDLINK" target="_blank"> RSS Feed</a> </li> <li class="my-linkedin"> <a rel="nofollow" title="linkedin" rel="author" href="YOURLINKEDINPROFILELINK" target="_blank">linkedin</a> </li><li class="my-gplus"> <a rel="nofollow" title="Google Plus" rel="author" href="YOURGOOGLE+PROFILELINK" target="_blank">Google Plus</a> </li> </ul> </div> <div id="mashable" style="background: #EBEBEB;border: 1px solid #CCC;border-top: 1px solid white;padding: 1px 8px 1px 3px;text-align: right;border-image: initial;font-size:10px;font-family: "arial","helvetica",sans-serif;"> <span class="author-credit" style="font-family: Arial, Helvetica, sans-serif;"> <a href="http://blogtipsandtricks4u.blogspot.com" target="_blank" >Blogger Widgets û</a></span></div></div> <!-- End Widget --> </div> <!--end of social widget-->

Now look after the following things that are given below:-
 
   Replace YOURFACEBOOKUSERNAME with your Facebook username.
   Replace YOURTWITTERUSERNAME with your twitter username.
   Replace YOURFEEDBURNERTITLE with your Feedburner title. Your Feedburner title is the word added at the end of your Feedburner link. Example: http://feeds.feedburner.com/YourFeedBurnetTitle
   Replace YOURRSSFEEDLINK with your feedburner  link.
   Replace YOURLINKEDINPROFILELINK with your Linkedin profile link.
   Replace YOURGOOGLE+PROFILELINK with your Google Plus profile link.
 

 After replacing all these parameters mentioned above, copy and paste the final codes from your notepad to the HTML-Javascript section.

5) Click Save and get your Mashable like social media widget.

Contact me if you want to more about it or if you are facing some problem in the steps. Just throw a comment in the comment box, I will be there.

For this wonderful social media widget, all credits goes to the man behind mashable.com.
Continue Reading

How To Create A New Page In Blogger

Blogger is a popular blog-publishing service powered by Google. To know how to create a blog in Blogger, read my post - How To Create A Blog In Blogger. Many of you are preferring Blogger over many other blog publishing services available online. This is because of  rapidly increasing new features in Blogger and  it is free of cost. Some of you created your blog to showcase your writing ability and others to build their business over Internet.



Let's now come to the point. The reason of writing this post is to help you in creating new pages in Blogger blogs. If you are a newbie and don't know how to create a page in Blogger blogs then read this post.  I am creating a sample page to show you the whole process.


Steps To Create A New Page In Blogger:

1) Login to your Blogger account.

2) Go to Blogger Admin>Pages

3) Click on New page



4) Select Blank page



5) Page Editor will come up. Enter page title in page title section and write your content in the content box. There you can see a editor menu bar that will help you in styling your content. For example you can change text fonts, choose text colours, make text bold, italics etc . You can also put links or images in your content.



5) After you are done with editing your content, click on Publish to create your new page.

My sample page look like this:


You can put the link of your new page anywhere in the blog where you want to show the link to your readers. The best position for putting the link of your pages are position above header and position below header because it will be more visible to your visitors. So this is how you can create new pages in Blogger blog. For more tips and tricks keep visiting bloglivead.blogspot.com regularly. You can also like my facebook page for getting all the latest updates. URL of my facebook page is - facebook.com/BlogLive123
Continue Reading

Add A Contact Form In Your Blogger Blogspot

Creating a contact form page in your blog will be helpful for your readers as then they will be able to communicate with you directly. It will give them a easy way to share their problems with you. Even this will allow them to give feedbacks and viewpoints to you for your blog.


It is easy to create contact form in wordpress blogs. Blogger don't have such feature but good news is that you can create contact form in Blogger by adding some piece of codes. There are many websites providing this kind of services. Emailmeform.com is one of such website that provides this kind of service. Emailmeform provides free code for using a contact form. This tutorial will help you to create a contact form page in blogger.

Steps To Add A Contact Form In Your Blogger Blog

1) Sign up for a free account at emailmeform


2) Once you done with regstration process, click on the "Add Form" button.


3) A popup window wll come up to show you two options:

a) You can go to template section and choose from a list of pre-made forms.
b) Or you can go to form builder to create your own form.



4) I would prefer to create my own form. Choose the form builder option.

5) Choose parameters you need in your contact form.



I  have selected Name, Website, Email, File Upload and Paragraph text.
I have changed field Label of "Paragraph Text" to "Message"

7) Now my form looks like this:



8) Now click on the Form Title to give title to your form and add some descrption or you can uncheck tick if you dont need this. I have uncheck this parameter. Click Save button.

9) A popup wndow will come up like this:



Choose the second option and add a recipient email ID.

8) Again a popup window will show up choose the third option.



9) In Form manager Click Code and Choose the "HTML Only" option and copy the code.



11) Paste the code to your newly created blogger page and you are done. To know how to create blogger page read How To Create A New Page In Blogger.
Continue Reading

How To Add Or Change Favicon On Blogger

A favicon which is short form for Favorite icon, also known as a shortcut icon, web site icon, URL icon, or bookmark icon, is a small icon which is usually 16px X 16px in size. You may have noticed a small icon picture just before the URL of any website in your browser's address bar. That small icon is called a favicon. For every website there is a favicon. Google Blogger provides same favicon for every Blogger blog by default. Blogger favicon just look the way represented in the image given below.



Blogger also allow its users to remove or change their blog's favicon anytime. This favicon can be a unique identity of your blog. So design your favicon and add new favicon in your blog. Above picture illustrates the difference between the default Blogger favicon and self designed favicon. Build a impressive and unique favicon for your blog. This tutorial is for helping you in removing default Blogger favicon and adding your self designed favicon. You should be ready with your self designed favicon before applying this change in your blog.


Steps To Add Or Change Favicon On Blogger:

1) Log in to your blogger account.

2) Go to Blogger Admin>Layout

3) Click on the Edit link on the "Favicon" setting.



4) A popup window will open from where you can browse to your favicon image kept in your hard drive to replace the default favicon image.  Click on browse and select the favicon file from your computer hard drive. Always remember that favicon file must be a square image, file must be in .ico file extension and file must be less than 100 KB in size.

    

5) Click on Save button  and open your site to see the change.       

Now you got your self designed favicon in your blog. How it feels to have your own favicon of your blog???
Continue Reading

How To Submit Blogger Sitemap To Google Webmaster

We all use Google for searching information that we want to know. Google provides us links of webpages that contains the information that we are looking after. If you own a blog then you might be doing everything possible to get more visits to your blog. To get traffics from search engines your blog must be indexed in the respective search engines. Your blog will be indexed in search engine only when you have submitted your blog to that search engine.


Today I am going to show you how you can submit your Blogger blog to the giant search Engine - Google. Google is the most popular search engine and number of webpages indexed by Google is uncountable. To make Google find, index and rank your site you need to submit your sitemap of your site to Google Webmaster Tools. Google Webmaster is a good SEO tool to use. You could also keep track of your sites statistics with the help of Google Webmaster Tools. As a new blogger you may not know how to submit your blogger sitemap to Google Webmaster Tools. Here I am to help you.

Steps To Submit Blogger Sitemap To Google Webmaster:-

1) Go to http://www.google.com/webmasters/

2) Sign in to Webmaster Tools with your gmail id and password



3) You can see now a thumbnail and a link of your site. Click on the anyone of them to go to Dashboard of Webmaster Tools.



4) Click on Sitemaps


5) Click on ADD/TEST SITEMAP

Use http://YOURBLOGNAME.blogspot.com/atom.xml?redirect=false&start-index=1&max-results=500 as your blogger sitemap

where red section is the name of your blog

Copy and paste the blue section of your sitemap in the space provided.


6) Click on Submit Sitemap and refresh the page

Your webpages are submitted and waiting to be indexed.

When you login to your Google Webmaster some days later, you should be able to see the indexed pages and statistics of your blogger. Hope this helped you.
Continue Reading

How To Add A Widget Of Social Media Sharing Buttons

Social networking sites can be a good medium of getting large traffics to your blog. We all use social networking sites to communicate with our friends and we often share our status, thoughts, emotions, photos, links, videos etc with our friends. If a link of your blog is shared  in the social networking sites by somebody then his/her friends will also come to know about your blog. As a blogger you will always be happy if your visitors share link of your blog posts with their friends and followers in social networking sites. A widget which contains group of social media sharing buttons will ease your work a lot and you can allow your visitors with an option of sharing your blog post via this widget.



Look of this widget is simple and can be fitted anywhere in your blog. Social media sharing buttons includes buttons of twitter, delicious, facebook, digg, stumbleupon, favourites and more. You can add or replace or remove buttons according to your needs. Choose the social media buttons which are more popular in your country. To know about how social media can play a big role in the success of a blog or website read my post - Role Of Social Media In Promotion Of A Blog Or Website.

Steps To Add A Widget Of Social Media Sharing Buttons

1) Log in to your blogger account.

2)Go to Blogger Admin > Layout > Click on Add a Gadget.




3) Select HTML/Javascript in Add a Gadget window.



4) Copy and paste the given code below in the content box.

<div class='widget-wrap'> <h3 class='widgettitle'></h3> <div class='addthis_toolbox'> <div class='custom_images'> <a class='addthis_button_twitter'><img alt='Twitter' height='32' src='http://2.bp.blogspot.com/-TUTjx0Yc0FY/TXSLKPiLRbI/AAAAAAAAA3U/nI4HkE091Lk/s1600/twitter.png' width='32'/></a> <a class='addthis_button_delicious'><img alt='Delicious' height='32' src='http://4.bp.blogspot.com/-UWnmf5jmYYo/TXSJ0fF4OUI/AAAAAAAAA2k/1dfI5Vp6XkE/s1600/delicious.png' width='32'/></a> <a class='addthis_button_facebook'><img alt='Facebook' height='32' src='http://1.bp.blogspot.com/-GpYwvZxzuzU/TXSJ0qKwUlI/AAAAAAAAA20/UiLh_RsGsqY/s1600/facebook.png' width='32'/></a> <a class='addthis_button_digg'><img alt='Digg' height='32' src='http://1.bp.blogspot.com/-JVB0CPHCL1E/TXSJ0ceJsgI/AAAAAAAAA2s/kpyRlPsGJek/s1600/digg.png' width='32'/></a> <a class='addthis_button_stumbleupon'><img alt='Stumbleupon' height='32' src='http://3.bp.blogspot.com/-7-xCrO8HzH8/TXSLJ2054hI/AAAAAAAAA3M/lV4L-SpptZ0/s1600/stumbleupon.png' width='32'/></a> <a class='addthis_button_favorites'><img alt='Favorites' height='32' src='http://3.bp.blogspot.com/-le322tlJxbk/TXSJ0tmqaiI/AAAAAAAAA28/qDly1cnZiIk/s1600/favorites.png' width='32'/></a> <a class='addthis_button_more'><img alt='More' height='32' src='http://1.bp.blogspot.com/-DqjDPRVJc5g/TXSJ04YfobI/AAAAAAAAA3E/7HVFTgWb1dE/s1600/more.png' width='32'/></a> </div> <script src='http://s7.addthis.com/js/250/addthis_widget.js' type='text/javascript'/> </div> </div> <div style='clear:both;'/></script></div></div>

5) Click on Save button. Now you got that widget in your blog.

You can add this widget anywhere you want. Choose the buttons of your favourite social networking sites. Your visitors will definitely share your post if they like your posts.

Here in my blog, you can find some different widgets too for social media sharing.


Continue Reading

How To Add Meta Tags Description To Blogger Without Editing HTML code

Search Engine Optimization(SEO) is very important if you want to achieve your links of your website higher in the search results in all top search engine websites. Recently Blogger introduced a new feature that will help you in adding meta tag in your blog very easily. In my previous post I talked about how you can add meta tag in your HTML section. To read that post go to How To Add Meta Tag In Blogger . By virtue of this new feature of Blogger you don't have to go to HTML section and play with the HTML codes. We can even include meta description for every single post with the help of this new feature. Now Blogger has Wordpress like feature for using meta tags.





This tutorial will help you to add meta tags description to blogger without editing your HTML code. This is a good SEO technique. So try this in your blogger blog.  If you don't know the procedure to follow then read the steps given below. I am giving you the step by step procedure just for the sake of helping you.  

Steps To Add Meta Tags Description To Blogger Without Editing HTML code

1) Log in to your blogger account.

2) Go to Blogger Admin>Settings>Search Settings

3) Under Meta tags Description option, click on edit and choose Yes to Enable search description and write description of your blog in not more 150 characters. Fill the column with perfect description of your blog..





4) Click on Save changes

5) Now when you make a Post, you can set the Meta Description from the Post Editor’s

Your post will appear in search engines according to what you have filled in the Search Description column.  So fill up this column very wisely so that more visitors gets attracted to your blog.

Hope you like this new feature that Blogger has introduced.
Continue Reading

How To Add Meta Tag In Blogger

A meta-tag is a code that is found inside html code of any website and contains information about the page. Search Engines used this data to display the search snippet. It will be very helpful for your blog if you add meta tag in your blog's html code because then only search engines can know about your blog contents more exactly and they can show it to all visitors. This is a very good Search Engine Optimization(SEO) technique used by many website or blog owners.


For Wordpress blogs there are many plugins available for SEO. In wordpress blog you can  download plugins by which you can add meta tags very easily. But for Blogger blog, no such plugins has been built till now. That does not mean that you can not add meta tag in Blogger blog or adding meta tag in Blogger blog is a very difficult task. Lets make it easy. You can add meta tag in your Blogger blog by adding few lines in the HTML section of your blog. I am elaborating the whole process in steps. Just follow the steps given below.

Steps To Add Meta Tag In Blogger
1) Log in to your blogger account.

2) Go to Blogger Admin--->Template--->Click on Edit HTML

3) Click on Proceed button.

4) Press Ctrl+F and search for tag

5) Below the tag, paste the following codes:-


          <b:if cond='data:blog.url == data:blog.homepageUrl'>
          ADD CODE FOR YOUR META-TAG HERE
          </b:if>


6) Replace the blue line with the following codes:-

<meta content='DESCRIPTION HERE' name='description'/>
<meta content='KEYWORDS HERE' name='keywords'/>
<meta content='AUTHOR NAME HERE' name='author'/>

7) Replace the red lines with the parameters.

8) Click on Save Template and you just added meta tags in your html code of your Blogger.

That was easy.  Hope you like it. Meta tags are very much important for search engine optimizaton. Choose your keywords intelligently and have a perfect description for your blog. After adding meta tags, blog will definitely get more help from search engines in terms of blog hits. Experience the difference. Happy blogging :))

Continue Reading

How To Install A Blogger Template

There are only few templates that are provided officially by Blogger. You can find a large number of blogs using same blog template. To avoid your blog just don't look like any other blog, it is advisable to use template other than that are provided by Blogger. But where you will get different template that doesn't look like the template provided by Blogger. If you know HTML/CSS coding then you can make your own template. If you dont have HTML knowledge to manually customize your template then what will you do. Okay here is the solution. You can always download templates from websites that provides free Blogger template services. Search for the best template that suits your needs and right for your blog and use it in your Blogger.





After downloading the template follow the steps given below to install the blogger template. Before applying any changes it is advisable to save your current template in your computer harddisk so that in case of any problem you can always get back your old template successfully.:
  
Steps To Install A Blogger Template

1:  First of all download the Blogger template from a website providing free Blogger templates to your PC and unzip it.

2:  Log in to your blogger account.


3:  Go to Blogger Admin>Template>Click on Backup/Restore.




4:  Click on Browse button and Go to the folder where you downloaded and unzipped the template files.



5:  The folder has a XML file. Select the XML file .



6:  Click Upload button and wait till it is uploaded completely .

It's all done. Check your blog template.

So why we use same template that many other bloggers are using.  If you know coding then it is advisable to make your own blog template. Be unique and have unique template for your blog just like your unique personality. Happy blogging!!!
Continue Reading

How To Add Floating Social Media Buttons

We all know that how much social media influences our daily life. Social media can be a good way in the promotion of any blog or website. Adding social media plugins or widgets can be a great helping tool in the success of any blog or website. Floating social media button is one of the widget that you can add in your blog. Floating social media button is a very popular widget that I guess you have notice in many blogs. It looks just like the screenshot given below. Floating Social Media Buttons is a great looking widget that you can also incorporate in your Blogger blogs.




It is not an hard task to add this widget in your blog. You have to just copy and paste some piece of codes in your blog. I am here to guide you in achieving this one without any mistake. All the steps for this task are given below. Just follow the steps carefully to get the floating social media button in your blog.

Steps To Add Floating Social Media Buttons

1) Log in to your blogger account.

2) Go to Blogger Admin >> Layout >> Click on Add a Gadget




3) Select HTML/Javascript in Add a Gadget window.



4) Copy and paste the given code below in the content box

<!-- floating page sharers Start --> <style> #pageshare {position:fixed; bottom:15%; margin-left:-71px; 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 http://bloglivead.blogspot.com/"> <div class='sbutton' id='fb'> <a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script> </div> <div class='sbutton' id='rt'> <script src="http://tweetmeme.com/i/scripts/button.js" type='text/javascript'></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="http://apis.google.com/js/plusone.js"></script> <g:plusone size="tall"></g:plusone> </a></div> <div style="clear: both;font-size: 9px;text-align:center;"><a href="http://bloglivead.blogspot.com/2012/06/how-to-add-floating-social-media-buttons.html">Get this</a></div> </div> <!-- floating page sharers End -->


Click Save button and you have done it.

You can adjust the position of the this widget where you want this widget to be appeared.
In addition to this you can also add some more buttons of social networking sites. This widget is not only useful one but also great and amazing in look-wise.
Don't hesitate to ask any query. If you are facing any kind problem ask me. It will be my pleasure to answer your quieres.
Enjoy the great experience of social media sharing of your blog posts!!!
Continue Reading

How To Add Facebook Like Button To Blogger Blog Posts

Today's generation is all about Social Networking. People use social networking sites more than any other sites in the Internet. If you own any blog then you can even promote your blog using these social networking sites. Social media plays a large significant role in promoting a blog. Facebook is among the most popular social media site. It would not be wrong to say that Facebook is the king of the social network. A large traffic can be achieved into your blog via facebook. To make sharing of your blog posts easier adding a facebook like or share button in your blog will be always very intelligent.

You can add facebook like button in your Blogger blog posts. Adding this facebook like will definitely increase your blog's popularity to a great extent. I am going to give you step by step instructions to add facebook like button in your every blog posts just below your blog posts title. Save your template before doing it so that in case of any error you can recover your template easily. Carefully follow the steps given below.


Steps To Add Facebook Like Button To Blogger Blog Posts

1) Log in to your blogger account.

2) Go to Blogger Admin-->Template-->Click on Edit HTML



3) Click on Proceed



3) Check Expand Widget Templates.




4) Press CTRL+F and find following code

<div class="post-header-line-1">


5) After that paste the following code before the above given code.

<b:if cond='data:blog.pageType == "item"'> <iframe allowTransparency='true' expr:src='"http://www.facebook.com/plugins/like.php?href=" + data:post.url + "&layout=standard&show_faces=false&width=100&action=like&font=arial&colorscheme=light"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:450px; height:40px;'/> </b:if>


6) Click on Save Template.

Now you can see facebook like button below blog posts title on your every blog posts. You can also add this button anywhere you like. Alongside this facebook like button you can also add other social button.
If you are facing any problem in adding this code in your blog then asked me, I would definitely help you.

Dont forget to like my post before leaving this page. Thanks.

Continue Reading

How To Remove Blogger Navbar

In my last post, I had explained how you can create your blog in blogger. To read the post, click the link How To Create A Blog In Blogger. If you have created your blog in Blogger then by default a navbar comes with it that appears in the top position of your blog. Many of you don't like it and want to remove this navbar from your blog completely. It gives an awkward and irritating look to your blog.




Are you feeling very uneasy because of this navbar appearing in your blog? Are you searching for a solution to remove this navbar completely from your Blogger blog? Then you are in the right place my friend.

This tutorial will guide you to complete steps so that you can remove this navbar completely from your Blogger blog. Don't think that this is gonna be a very complicated process and you are gonna mess up with your blog while doing it. This is a very easy process. So you don't have to worry about it. You don't have to go to Edit HTML section for achieving it. You just have to paste a simple CSS code to achieve it.


Steps To Remove Blogger Navbar:-->

1) Log in to your blogger account.

2) Go to your Blogger admin page>Template>Click on Customize





3) Go to Advance>Add CSS


.
4) Paste the following code in the Add custom CSS field and click on Apply to blog

#navbar-iframe { display: none !important; }





Thats it, Blogger Navbar has been removed completely from your blog. Refresh your blog to check it. Now  I guess you are feeling quite happy with your blog's outlook.

For more Blogger tips and tricks, blog customizations, click on Blogger Tutorials  and for blogger widgets, click on Blogger Widgets . Keep visiting my blog for more tips and tricks .
Continue Reading