<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Techie Blogger &#187; blogger tutorials</title>
	<atom:link href="http://www.techieblogger.com/category/blogger/blogger-tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techieblogger.com</link>
	<description>The Ultimate Design Resource Portal</description>
	<lastBuildDate>Thu, 09 Feb 2012 08:56:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Make your site compatible for Higher screen resolution</title>
		<link>http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html</link>
		<comments>http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html#comments</comments>
		<pubDate>Mon, 10 Aug 2009 17:04:27 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[blogger tutorial]]></category>
		<category><![CDATA[css hack]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[screen resolution]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress hack]]></category>

		<guid isPermaLink="false">http://www.techieblogger.com/?p=894</guid>
		<description><![CDATA[Most of us might have noticed that our sites may look different in different screen resolutions. Though I have already posted one article on making website layout cross browser compatible , but its also necessary to make your site compatible for different screen resolutions. The visitors of your site will not have same screen resolution [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/01/create-compatible-css-for-firefox-ie6-opera-ie7-etc.html' rel='bookmark' title='Create Compatible CSS for Firefox , IE6 , Opera , IE7 , etc'>Create Compatible CSS for Firefox , IE6 , Opera , IE7 , etc</a></li>
<li><a href='http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html' rel='bookmark' title='Image re-sizer CSS Hack for blogger and wordpress users'>Image re-sizer CSS Hack for blogger and wordpress users</a></li>
<li><a href='http://www.techieblogger.com/2008/07/page-navigation-menu-widget-for-blogger.html' rel='bookmark' title='Page Navigation Menu Widget for Blogger'>Page Navigation Menu Widget for Blogger</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Most of us might have noticed that our sites may look different in different screen resolutions. Though I have already posted one article on making website layout <a href="http://www.techieblogger.com/2009/01/create-compatible-css-for-firefox-ie6.html" target="_blank">cross browser compatible</a> , but its also necessary to make your site compatible for different screen resolutions. The visitors of your site will not have same screen resolution your are using. So it&#8217;s mandatory to make your site compatible for different screen resolutions.  For example, In lower screen resolutions like 800&#215;600 px the website layout will be perfect. But when you look at your site at a higher screen resolution like 1024&#215;768 px or even higher , the website header or sidebar may be aligned to either right or left. It&#8217;s all because the designer might have designed the site for a particular screen resolution. In the screen resolution he was working , the site may look perfect. But when it comes to higher screen resolution , the theme may be misaligned.</p>
<h3></h3>
<h1>what is the best screen resolution settings?</h1>
<p>    One can&#8217;t design a website for a particular screen resolution, because visitors will have different screen resolutions. According to me , the best screen resolution on which the designer should be concentrating on should be higher than 1024px. For example if you take techieblogger&#8217;s last month stats , most of my visitors are using higher screen resolution.</p>
<p><a href="http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html/screen-resolution-compatible-2" rel="attachment wp-att-896" target="_blank"><img src="http://techieblogger.com/wp-content/uploads/2009/08/screen-resolution-compatible1.jpg" alt="screen resolution compatibility" title="screen resolution compatibility" width="553" height="258" class="aligncenter size-full wp-image-896" /></a></p>
<p>Some of the web designers use JavaScript to control the screen resolution compatibility. But it will reduce the site loading time.Instead of using JavaScript , I will explain how to make your site higher screen resolution compatible by making changes in CSS codes.</p>
<h3></h3>
<h1>CSS controlling the alignment of the layout</h1>
<p>Before explaining the original hack, first let me describe about the css code which controls the layout alignment.</p>
<div class="codeview">margin: auto;</div>
<p>The simple margin tag in CSS controls the alignment of the site layout in different screen resolutions. I have selected auto to change the layout alignment in accordance with the visitors screen resolution.</p>
<h1>Screen resolution compatible CSS &#8211; Blogger users</h1>
<p>In order to make changes to your CSS code in blogger blogs , follow the below steps.</p>
<p>step 1 : First go to Layout section of your blog.<br />
step2 :  Then navigate to EDIT HTML page</p>
<p>Now add the margin: auto; tag in the css codes of the following sections.</p>
<ul>
<li>Header</li>
<li>Outer wrapper</li>
<li>content wrapper</li>
<li>wrapper</li>
<li>Footer</li>
</ul>
<p>If one more sections are missing in your style sheet , then insert that code in the respective div sections used in your blogger template.</p>
<h3></h3>
<h1>Screen resolution compatible CSS &#8211; WordPress Users</h1>
<p>To edit the css code in your wordpress blogs, follow the below steps.</p>
<p>first go to appearance option in your wordpress dashboard. Then go to EDITOR page. In that page , add the css code margin: auto; in the following css sections.</p>
<ul>
<li>Header</li>
<li>Outer wrapper</li>
<li>content wrapper</li>
<li>wrapper</li>
<li>single entry
<li>
<li>Footer</li>
</ul>
<h3></h3>
<h1>how to change screen resolution</h1>
<p>For checking your site compatibility with different screen resolutions do any one of the below steps.</p>
<h1>how to get a higher screen resolution on windows vista/XP</h1>
<p>To change the screen resolution of your PC , do the following steps.Right click on your desktop , then click the option &#8220;Properties&#8221; there.A new window will open. Now navigate to &#8220;settings &#8221; tab. There  you can see a slider to change the screen resolution. With that slider you can either increase or decrease. After you chose a particular screen resolution , click apply. It will give you a warning message click &#8220;ok&#8221;.</p>
<p><a href="http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html/properties-window" rel="attachment wp-att-909"><img src="http://techieblogger.com/wp-content/uploads/2009/08/properties-window.jpg" alt="properties window" title="properties window" width="404" height="202" class="aligncenter size-full wp-image-909" /></a></p>
<p>Now open the browser and visit your site for compatibility.</p>
<h3></h3>
<h1>how to set screen resolution using keyboard hotkey</h1>
<p>You can also check the compatibility of your site with different screen resolutions with simple keyboard short keys.<br />
First go to your blog and do the following :<br />
To reduce the screen resolution , press &#8220;ctrl&#8221; and scroll down the mouse roller.<br />
Or<br />
press &#8221; ctrl &#8221; button and press &#8220;-&#8221; button.</p>
<p>To increase the screen resolution, click &#8220;ctrl&#8221; and &#8220;+&#8221; button or else press &#8221; ctrl &#8221; and scroll up the mouse roller.</p>
<p>With the above keyboards hotkeys , you can check the screen resolution compatibility of your site.</p>
<h3></h3>
<p>Hope this article will be useful for all web designers who want to create wordpress themes or blogger templates which are higher screen resolution compatible. If you have any problem with your website layout alignment, then please email me about the issue.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/01/create-compatible-css-for-firefox-ie6-opera-ie7-etc.html' rel='bookmark' title='Create Compatible CSS for Firefox , IE6 , Opera , IE7 , etc'>Create Compatible CSS for Firefox , IE6 , Opera , IE7 , etc</a></li>
<li><a href='http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html' rel='bookmark' title='Image re-sizer CSS Hack for blogger and wordpress users'>Image re-sizer CSS Hack for blogger and wordpress users</a></li>
<li><a href='http://www.techieblogger.com/2008/07/page-navigation-menu-widget-for-blogger.html' rel='bookmark' title='Page Navigation Menu Widget for Blogger'>Page Navigation Menu Widget for Blogger</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Image re-sizer CSS Hack for blogger and wordpress users</title>
		<link>http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html</link>
		<comments>http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html#comments</comments>
		<pubDate>Wed, 05 Aug 2009 18:03:03 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogger hacks]]></category>
		<category><![CDATA[Blogger Template]]></category>
		<category><![CDATA[blogspot]]></category>
		<category><![CDATA[css hacks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hacks]]></category>

		<guid isPermaLink="false">http://www.techieblogger.com/?p=744</guid>
		<description><![CDATA[Are the images in your main container is wider than the width of the main container. If it&#8217;s so then you will find your blog layout clumsy or misaligned.I have seen few using image resizer tool to resize images, but it&#8217;s time consuming. You can even use JavaScript for resizing images, but using JavaScript will [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/colorful-link-hover-hack-for-blogger.html' rel='bookmark' title='Colorful Link Hover Hack for Blogger and WordPress'>Colorful Link Hover Hack for Blogger and WordPress</a></li>
<li><a href='http://www.techieblogger.com/2009/07/subscription-box-form-with-custom-css.html' rel='bookmark' title='Subscription Box widget for Blogger Users'>Subscription Box widget for Blogger Users</a></li>
<li><a href='http://www.techieblogger.com/2008/08/redirect-users-to-new-blog-domain.html' rel='bookmark' title='Redirect Users From Old Domain To New Domain &#8211; Blogger Hack'>Redirect Users From Old Domain To New Domain &#8211; Blogger Hack</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Are the images in your main container is wider than the width of the main container. If it&#8217;s so then you will find your blog layout clumsy or misaligned.I have seen few using image resizer tool to resize images, but it&#8217;s time consuming. You can even use JavaScript for resizing images, but using JavaScript will increase blog loading time. In order to avoid using JavaScript or image resizing tool, in this post I have explained how to resize images in your blog main container with simple CSS codes.</p>
<p>You can implement image resizing hack in PHP based wordpress or in blogger blogs too. In this tutorial i will explain how to add this hack to both blogger as well as wordpress.</p>
<h1>Image resize hack for Blogger</h1>
<p>Before explaining the original hack , I would like to tell what most of the blogger might be doing to re-size their images while writing posts. Mostly they will use style tags to mention the width and height of the image.</p>
<div class="codeview">&lt;img src=&#8221;http://techieblogger.com/wp-content/uploads/2009/07/just-host-thumbnail.png&#8221; <span style="color: #993300;">style=&#8221;height:260px;width:560px;</span>&#8220;/&gt;</div>
<p>or</p>
<div class="codeview">&lt;img src=&#8221;http://www.techieblogger.com/wp-content/uploads/2009/08/digital-abstract-art-820&#215;1024.jpg&#8221; <span style="color: #993300;">width=&#8221;560&#8243; height=&#8221;260&#8243;</span>/&gt;</div>
<p>But when you are having a number of images in your posts , then it becomes difficult to mention the image size and width in each and every image. And also if you change the template which contains different width , then you need to edit the size and width in all images.</p>
<p>In order to get rid off those head-aches , just follow these simple steps to resize images in your blog. Even if you have declared different image size and width in that image code , this code will overwrite those tags and will change the width and size you mentioned in the style sheet.</p>
<p>First go to layout section of your blogger blog. Then navigate to EDIT HTML section. Now search for this tag there.</p>
<div class="codeview">]]&gt;&lt;/b:skin&gt;</div>
<p>Now add the following code above that code line.</p>
<div class="codeview">.post img {<br />
float:center;<br />
<span style="color: #993300;">min-width:560px;<br />
max-width:560px;<br />
max-height:260px;<br />
min-height:260px;</span><br />
padding : 10px;<br />
line-height : 2em;<br />
margin: 0 auto 10px auto;<br />
clear: both;<br />
}</div>
<p>In that above code , edit the max-height and min-width tags to suit your main container width and height.</p>
<h3></h3>
<h1>Image resizer for wordpress users</h1>
<p>In order to implement image resizer hack in your wordpress blog , just follow these steps.<br />
First go to the dashboard of your wordpress blog. Then navigate to the Appearance tab in the left sidebar. Now go to the Editor page.</p>
<p>In the style sheet, check for the div element used in the main content container. In most of the wordpress blogs , the div element used will be &#8220;single-entry&#8221; .  Now in that style sheet page , paste the following code anywhere.</p>
<div class="codeview">.<span style="color: #008000;">single-entry</span> img {<br />
float:center;<br />
<span style="color: #993300;">min-width:560px;<br />
max-width:560px;<br />
max-height:260px;<br />
min-height:260px;</span><br />
padding : 10px;<br />
line-height : 2em;<br />
margin: 0 auto 10px auto;<br />
clear: both;<br />
}</div>
<p>remember to change the text in green to the div element id of your main container.</p>
<p>Hope This hack will be more useful when you will be having more number of images in your posts. You need not use separate style codes for each and every image. Rather by this method everything is made automatic and even you can save your blog loading time too.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/colorful-link-hover-hack-for-blogger.html' rel='bookmark' title='Colorful Link Hover Hack for Blogger and WordPress'>Colorful Link Hover Hack for Blogger and WordPress</a></li>
<li><a href='http://www.techieblogger.com/2009/07/subscription-box-form-with-custom-css.html' rel='bookmark' title='Subscription Box widget for Blogger Users'>Subscription Box widget for Blogger Users</a></li>
<li><a href='http://www.techieblogger.com/2008/08/redirect-users-to-new-blog-domain.html' rel='bookmark' title='Redirect Users From Old Domain To New Domain &#8211; Blogger Hack'>Redirect Users From Old Domain To New Domain &#8211; Blogger Hack</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>GET 50% offer in JUSTHOST without any coupon code</title>
		<link>http://www.techieblogger.com/2009/07/just-host-coupon-codes.html</link>
		<comments>http://www.techieblogger.com/2009/07/just-host-coupon-codes.html#comments</comments>
		<pubDate>Sat, 01 Aug 2009 02:23:40 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[Web hosting]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog hosting]]></category>
		<category><![CDATA[coupon code]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.techieblogger.com/?p=665</guid>
		<description><![CDATA[Today I have got a great news to share with you all. Hope you all know that I have hosted my site in dreamhost, since three months. Though I haven&#8217;t had any problems so far with dreamhost. While surfing for best blog hosts, I came across Justhost.com . While surfing their page I came across [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/10/how-to-choose-best-web-hosting-service.html' rel='bookmark' title='How to Choose best web Hosting service ?'>How to Choose best web Hosting service ?</a></li>
<li><a href='http://www.techieblogger.com/2009/09/free-image-hosting-and-photo-sharing-sites.html' rel='bookmark' title='Top 10 free Image hosting and Photo sharing websites'>Top 10 free Image hosting and Photo sharing websites</a></li>
<li><a href='http://www.techieblogger.com/2009/09/choose-web-hosting-wisely-with-web-hosting-rating.html' rel='bookmark' title='Choose web hosting wisely with web hosting Rating'>Choose web hosting wisely with web hosting Rating</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I have got a great news to share with you all. Hope you all know that I have hosted my site in dreamhost, since three months. Though I haven&#8217;t had any problems so far with dreamhost. While surfing for best blog hosts, I came across Justhost.com . While surfing their page I came across a great offer which most of the users won&#8217;t know. Instead of searching for justhost.com coupon codes , for 20% offer , you can use this trick to avail 50% offer without any coupon code. I also included a special JUSTHOST coupon code to get half price offer.</p>
<p>Let me first make clear that , I am not affiliated to JustHost in any way. I just wanted to share this trick with you all , so that you can transfer your blogger blog to wordpress for a cheap price with a massive 50% offer.</p>
<h3></h3>
<p><img src="http://techieblogger.com/wp-content/uploads/2009/07/just-host-thumbnail.png" alt="coupon codes to get 50% offer" title="blog hosting trick" class="aligncenter size-full wp-image-674" /></p>
<h3>About JustHost.com</h3>
<p>Just host is a new blog hosting company which has been started in the year 2008. They have good reputation for their uptime and cheap cost. They have got many awards and have been considered as one of the best blog hosting site since 2008.</p>
<h3></h3>
<h3>Key Features of JustHost</h3>
<ul>
<li>Free Setup</li>
<li>99.9% UpTime Guarantee</li>
<li>FREE Domain Name FOR LIFE</li>
<li>UNLIMITED Disk Space</li>
<li>UNLIMITED Bandwidth</li>
<li>ANYTIME Money Back Guarantee</li>
<li>Host UNLIMITED Domains</li>
<li>UNLIMITED MySQL Databases</li>
<li>Host UNLIMITED Domains</li>
<li>UNLIMITED Sub Domains</li>
<li>FREE domain name FOR LIFE</li>
</ul>
<h3></h3>
<h3>Just Host reviews</h3>
<p>When i searched in Google for just host reviews to know whether Just Host is scam or not. I found no results or complaints about JustHost.com downtime or about Just Host scam. According to me , Just Host is a good web hosting company to host your blog.</p>
<h3></h3>
<h3>Steps to get 50% offer</h3>
<p>Let&#8217;s see how to get the half price offer in justhost.com . First go to <a href="http://www.justhost.com" target="_blank">just Host</a> website. Now under footer check for the secret link. Click that link , it will take you to a new page.<br />
<a href="http://techieblogger.com/wp-content/uploads/2009/07/secretlink.jpg" target="_blank"><img src="http://techieblogger.com/wp-content/uploads/2009/07/secretlink.jpg" alt="coupon codes to get 50% offer" title="blog hosting trick" width="516" height="238" class="aligncenter size-full wp-image-674" /></a></p>
<p>In that page , fill the details. Either register a new domain there or else transfer your existing domain. Since they offer lifetime free domain , i would suggest you to register a new domain.</p>
<p><a href="http://techieblogger.com/wp-content/uploads/2009/07/20off.jpg"><img src="http://techieblogger.com/wp-content/uploads/2009/07/20off.jpg" alt="20off" title="20off" width="530" height="384" class="aligncenter size-full wp-image-677" /></a></p>
<p>After filling the details click continue. In the new page, you will find only 20% offer notice. So now it&#8217;s the time to do my trick.</p>
<p>Without filling the details there , go to the browser address bar and type some web address and click enter. For example type &#8220;www.google.com&#8221; and click enter.</p>
<p><a href="http://techieblogger.com/wp-content/uploads/2009/07/detailschange1.jpg" target="_blank"><img src="http://www.techieblogger.com/wp-content/uploads/2009/07/detailschange1-1024x480.jpg" alt="blog hosting trick to get half price offer" title="blog hosting trick to get half price offer" width="530" height="480" class="aligncenter size-large wp-image-679" /></a></p>
<p>As soon as you do that , two pop-up windows will open saying that they have a last minute offer for you.</p>
<p><a href="http://techieblogger.com/wp-content/uploads/2009/07/popup.jpg" target="_blank"><img src="http://www.techieblogger.com/wp-content/uploads/2009/07/popup-1024x409.jpg" alt="just host web hosting" title="just host web hosting" width="1024" height="409" class="aligncenter size-large wp-image-678" /></a></p>
<p>Now in that pop-up box , click cancel to receive that offer. Within some time in that chat box , you will find a link to get 50 percent offer for web hosting. click that link.</p>
<p><a href="http://techieblogger.com/wp-content/uploads/2009/07/half-price-offer.jpg" target="_blank"><img src="http://techieblogger.com/wp-content/uploads/2009/07/half-price-offer.jpg" alt="half price offer" title="half price offer" width="487" height="306" class="aligncenter size-full wp-image-685" /></a></p>
<p>If you are using firefox browser while registering just close the tab , even at that time you will get those pop-ups.</p>
<p>In that new page , continue with your registration and now you have massive 50 percent offer in any web hosting plan in Just Host.</p>
<h3></h3>
<h3>USING COUPON CODE</h3>
<p>Instead of doing all these steps , You can also get the offer by using &#8221; 50OFF &#8221; (without quotes ) coupon code while registering. Isn&#8217;t it so simple ?.</p>
<p>I hope it will help all blogger users who are looking for a cheap web hosting. Now it&#8217;s time to transfer your blog from blogger to wordpress. Catch you soon with a new hack.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/10/how-to-choose-best-web-hosting-service.html' rel='bookmark' title='How to Choose best web Hosting service ?'>How to Choose best web Hosting service ?</a></li>
<li><a href='http://www.techieblogger.com/2009/09/free-image-hosting-and-photo-sharing-sites.html' rel='bookmark' title='Top 10 free Image hosting and Photo sharing websites'>Top 10 free Image hosting and Photo sharing websites</a></li>
<li><a href='http://www.techieblogger.com/2009/09/choose-web-hosting-wisely-with-web-hosting-rating.html' rel='bookmark' title='Choose web hosting wisely with web hosting Rating'>Choose web hosting wisely with web hosting Rating</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/07/just-host-coupon-codes.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Add paypal donation button to blogger and wordpress blogs</title>
		<link>http://www.techieblogger.com/2009/07/add-paypal-donation-button-script-to-blogger-and-wordpress-blogs.html</link>
		<comments>http://www.techieblogger.com/2009/07/add-paypal-donation-button-script-to-blogger-and-wordpress-blogs.html#comments</comments>
		<pubDate>Thu, 30 Jul 2009 18:54:39 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[Blogger widget]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogger hacks]]></category>
		<category><![CDATA[blogger widgets]]></category>
		<category><![CDATA[blogspot]]></category>
		<category><![CDATA[earn money]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[paypal donation button]]></category>

		<guid isPermaLink="false">http://www.techieblogger.com/?p=656</guid>
		<description><![CDATA[Rather than advertising revenue some websites depend on donations from users to run their sites. Although there are few online paypal button code generator websites available, I would like to explain how to generate paypal donation button script manually using your own paypal account. In order to create a donation button in paypal you need [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html' rel='bookmark' title='Image re-sizer CSS Hack for blogger and wordpress users'>Image re-sizer CSS Hack for blogger and wordpress users</a></li>
<li><a href='http://www.techieblogger.com/2009/12/build-your-own-online-store-in-blogger-blogs.html' rel='bookmark' title='Build Your Own Online Store In Blogger Blogs'>Build Your Own Online Store In Blogger Blogs</a></li>
<li><a href='http://www.techieblogger.com/2008/07/colorful-link-hover-hack-for-blogger.html' rel='bookmark' title='Colorful Link Hover Hack for Blogger and WordPress'>Colorful Link Hover Hack for Blogger and WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Rather than advertising revenue some websites depend on donations from users to run their sites. Although there are few online paypal button code generator websites available, I would like to explain how to generate paypal donation button script manually using your own paypal account. In order to create a donation button in paypal you need to have paypal account of any type (personal , business or merchant).</p>
<h3>Creating the code for Paypal donation button</h3>
<p>In order to create the paypal donation button script, just login to your paypal account.Then navigate to Merchant services sub page. There under &#8221; PayPal Website Payments Standard &#8221; , you can see a link to &#8221; Donations&#8221; page. Click that &#8220;donations&#8221; link.</p>
<p><a href="http://techieblogger.com/wp-content/uploads/2009/07/paypal.jpg"><img src="http://techieblogger.com/wp-content/uploads/2009/07/paypal.jpg" alt="paypal" title="paypal" width="500" height="200" class="aligncenter size-full wp-image-662" /></a><br />
Now in that page , edit the paypal button code to suit your template. You can also have your own paypal donations button image. You can use some online paypal button creation websites to create a paypal donation button , then upload those images to your blog. In that paypal donation button customization page , enter that image url.</p>
<p>Then you can also customize the paypal donations script over there itself. I have explained them in my video tutorial for this hack.<br />
So now we will have the paypal donation button script with us. Copy and paste the script somewhere in notepad.</p>
<h3></h3>
<h3>VIDEO TUTORIAL to create paypal donation button</h3>
<p><center><object width="480" height="295"><param name="movie" value="http://www.youtube-nocookie.com/v/XzP6fRaQeSc&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x006699&#038;color2=0x54abd6&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/XzP6fRaQeSc&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x006699&#038;color2=0x54abd6&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></center></p>
<h3></h3>
<h3>Online paypal donation button script generators</h3>
<p>You can also generate the paypal donation button script using the following online paypal code generators.</p>
<ul>
<li><a href="http://pp.flipmytext.com/" target="_blank">FlipMyText</a></li>
<li><a href="http://www.appealwebdesign.com/paypal/" target="_blank">PayPal Button Code Generator</a></li>
<li><a href="http://profitphp.com/tools/paypal-button.php" target="_blank">Paypal Button Generator script </a></li>
</ul>
<p>Enter your paypal account details there and finally you will have the code ready to add in your blog/wesbite.</p>
<p>The above sites are some of the paypal button creators which i have found so far. If you any other then please let me know using comments.</p>
<h3>ADDING PAYPAL DONATION BUTTON TO BLOGGER BLOGS</h3>
<p>To add the paypal donation button to your blogger blogs , Go to layout section of your blogger blog. Then add a HTML/JAVASCRIPT widget using &#8220;add a gadget&#8221; option in the layout page. Paste the paypal donation button code you generated either via the online paypal button creator or from the paypal website itself there. Then click save , Now you can see a cool paypal donation button on your website.</p>
<p>if you want to add the paypal donation button below post of your blogger blog, then navigate to the EDIT HTML subtab in the layout section.<br />
Then click &#8220;Expand Widget Templates&#8221; option in that page. Now search for this tag <span style="color: #99cc00;">&lt;p&gt;&lt;data:post.body/&gt;&lt;/p&gt;</span> and add the paypal donation button code immediately below that line.</p>
<p>Now you can see a beautiful paypal donation button in your blogger blog.</p>
<h3></h3>
<h3>ADDING PAYPAL DONATION BUTTON TO WORDPRESS</h3>
<p>In order to add the paypal donation button code to your wordpress blog , Go to Themes appearance/presentation tab. Then navigate to WIDGETS option available there.<br />
Add either a text widget or HTML widget and paste the paypal button code there.</p>
<p>If you want to add the paypal donation button below post in wordpress too , then navigate to EDITOR option in APPEARANCE. IN editor page search for single.php page. There place the paypal donation button code immediately below the &#8220;the_content&#8221; whole tag line.</p>
<h3>Conclusion : </h3>
<p>I hope that you guys will like this tutorial for adding paypal donation button. Placing a donation button in your blog can help you to earn some extra income.</p>
<p>P.S: This is my first video tutorial for blogger users. I have created a new <a href="http://www.youtube.com/user/mohamedrias" target="_blank">youtube channel </a>for uploading blogger tutorials over there. Hope you guys will support me for that.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html' rel='bookmark' title='Image re-sizer CSS Hack for blogger and wordpress users'>Image re-sizer CSS Hack for blogger and wordpress users</a></li>
<li><a href='http://www.techieblogger.com/2009/12/build-your-own-online-store-in-blogger-blogs.html' rel='bookmark' title='Build Your Own Online Store In Blogger Blogs'>Build Your Own Online Store In Blogger Blogs</a></li>
<li><a href='http://www.techieblogger.com/2008/07/colorful-link-hover-hack-for-blogger.html' rel='bookmark' title='Colorful Link Hover Hack for Blogger and WordPress'>Colorful Link Hover Hack for Blogger and WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/07/add-paypal-donation-button-script-to-blogger-and-wordpress-blogs.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Customizing Blogger post Navigation script</title>
		<link>http://www.techieblogger.com/2009/06/customize-blogger-navigation-scrip.html</link>
		<comments>http://www.techieblogger.com/2009/06/customize-blogger-navigation-scrip.html#comments</comments>
		<pubDate>Tue, 23 Jun 2009 12:53:59 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[blogger hacks]]></category>
		<category><![CDATA[blogspot hacks]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[newer posts]]></category>
		<category><![CDATA[older posts]]></category>
		<category><![CDATA[post navigation]]></category>

		<guid isPermaLink="false">http://www.techieblogger.com/?p=337</guid>
		<description><![CDATA[Blogger Blogs have default post navigation script which allows user to navigate between posts.It consists of &#8221; older posts&#8221; , &#8220;Newer posts&#8221; and &#8221; Home page&#8221; link. Since it&#8217;s default , no CSS codings are added for the navigation script. So in this post I will explain how to modify the script and to add [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/show-date-before-each-post-in-blogger.html' rel='bookmark' title='Show Date before each Post in Blogger'>Show Date before each Post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/07/embed-comment-form-below-post-in-blogger.html' rel='bookmark' title='Embed Comment Form below post in Blogger'>Embed Comment Form below post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/04/hide-blogger-navigation-bar-navbar.html' rel='bookmark' title='Hide Blogger Navigation Bar / navbar'>Hide Blogger Navigation Bar / navbar</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Blogger Blogs have default post navigation script which allows user to navigate between posts.It consists of &#8221; older posts&#8221; , &#8220;Newer posts&#8221; and &#8221; Home page&#8221; link. Since it&#8217;s default , no CSS codings are added for the navigation script. So in this post I will explain how to modify the script and to add background images and then aligning the older posts and newer posts links properly.</p>
<h3></h3>
<h3>Know the script codes</h3>
<p>Before explaining how to customize the codes , I would like to explain the tags involved in the blogger templates which control the blogger post navigation script.</p>
<h3></h3>
<h3>CSS codes</h3>
<p>Firstly, let us see the default code included in minima or Rounders blogger template.</p>
<div class="codeview">#blog-pager-newer-link {<br />
float: $startSide;<br />
margin-$startSide: 13px;<br />
}</p>
<p>#blog-pager-older-link {<br />
float: $endSide;<br />
margin-$endSide: 13px;<br />
}</p>
<p>#blog-pager {<br />
text-align: center;<br />
}</div>
<p>instead of startside and endside we can have left and right respectively.<br />
#blog-pager-newer-link : this code contains the css necessary for newer posts link<br />
#blog-pager-older-link : this code contains the css necessary for older posts link<br />
and #blog-pager  controls the contains necessary for Home page links.</p>
<p>If you are using custom blogger template , then you will find something like this :<br />
#blog-pager-newer-link {<br />
padding-left : 20px;<br />
border : none;<br />
float : left;<br />
}<br />
#blog-pager-older-link {<br />
float : right;<br />
padding-right : 20px;<br />
border : none;<br />
}<br />
#blog-pager {<br />
padding : 0 15px 0;<br />
text-align : center;<br />
}<br />
.blog-pager a {<br />
color : #cc0000;<br />
}<br />
.blog-pager a:hover {<br />
color : #cc0000;<br />
}</p>
<h3></h3>
<h3>XML tags which shows the post navigation links</h3>
<p>Now let us see the default tags included in the blogger templates which shows post navigation links.To see this tag , you need to check &#8221; expand widget templates&#8221; option in EDIT HTML page of the blogger template.</p>
<p>There you can find the following tag</p>
<div class="codeview">&lt;b:includable id=&#8217;nextprev&#8217;&gt;<br />
&lt;div class=&#8217;blog-pager&#8217; id=&#8217;blog-pager&#8217;&gt;<br />
&lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt;<br />
&lt;span id=&#8217;blog-pager-newer-link&#8217;&gt;<br />
&lt;a class=&#8217;blog-pager-newer-link&#8217; expr:href=&#8217;data:newerPageUrl&#8217; expr:id=&#8217;data:widget.instanceId + &amp;quot;_blog-pager-newer-link&amp;quot;&#8217; expr:title=&#8217;data:newerPageTitle&#8217;&gt;&lt;data:newerPageTitle/&gt;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;/b:if&gt;</p>
<p>&lt;b:if cond=&#8217;data:olderPageUrl&#8217;&gt;<br />
&lt;span id=&#8217;blog-pager-older-link&#8217;&gt;<br />
&lt;a class=&#8217;blog-pager-older-link&#8217; expr:href=&#8217;data:olderPageUrl&#8217; expr:id=&#8217;data:widget.instanceId + &amp;quot;_blog-pager-older-link&amp;quot;&#8217; expr:title=&#8217;data:olderPageTitle&#8217;&gt;&lt;data:olderPageTitle/&gt;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;/b:if&gt;</p>
<p>&lt;b:if cond=&#8217;data:blog.homepageUrl != data:blog.url&#8217;&gt;<br />
&lt;a class=&#8217;home-link&#8217; expr:href=&#8217;data:blog.homepageUrl&#8217;&gt;&lt;data:homeMsg/&gt;&lt;/a&gt;<br />
&lt;b:else/&gt;<br />
&lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt;<br />
&lt;a class=&#8217;home-link&#8217; expr:href=&#8217;data:blog.homepageUrl&#8217;&gt;&lt;data:homeMsg/&gt;&lt;/a&gt;<br />
&lt;/b:if&gt;<br />
&lt;/b:if&gt;</p>
<p>&lt;/div&gt;<br />
&lt;div class=&#8217;clear&#8217;/&gt;<br />
&lt;/b:includable&gt;</div>
<p>As mentioned in the CSS codes itself,</p>
<ul>
<li>&lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt; contains the code to show newer post links.</li>
<li>&lt;b:if cond=&#8217;data:olderPageUrl&#8217;&gt; contains the code necessary to show older posts link.</li>
<li> &lt;b:if cond=&#8217;data:blog.homepageUrl != data:blog.url&#8217;&gt; will contain the code necessary to show Home Page Link.</li>
</ul>
<p>Hope now you know about the code which controls the Older post and Newer post links for post navigation. Now let us see how to customize this script to suit our blogger template.</p>
<h3></h3>
<h3>Adding background image along with text</h3>
<p>Let us see how to add Background image to the text Older Posts and Newer Posts.<br />
Go to EDIT HTML SUBTAB and then search this following code or similar.</p>
<div class="codeview">#blog-pager-newer-link {<br />
float: $startSide;<br />
margin-$startSide: 13px;<br />
}</p>
<p>#blog-pager-older-link {<br />
float: $endSide;<br />
margin-$endSide: 13px;<br />
}</p>
<p>#blog-pager {<br />
text-align: center;<br />
}</div>
<p>Now replace the whole code with</p>
<div class="codeview">
#blog-pager-newer-link {<br />
background : url(http://i43.tinypic.com/11bro1s.jpg) no-repeat left 0%;<br />
padding-left : 20px;<br />
border : none;<br />
float : left;<br />
}<br />
#blog-pager-older-link {<br />
float : right;<br />
background : url(http://i44.tinypic.com/2n6dirp.jpg) no-repeat right 0%;<br />
padding-right : 20px;<br />
border : none;<br />
}<br />
#blog-pager {<br />
padding : 0 15px 0;<br />
text-align : center;<br />
}<br />
.blog-pager a {<br />
color : #cc0000;<br />
}<br />
.blog-pager a:hover {<br />
color : #cc0000;<br />
}</div>
<p>In that you can change the background images and then customize the color of the text. That&#8217;s it now save your template , you can find something like this :<br />
<a href="http://techieblogger.com/wp-content/uploads/2009/06/post-navigation-image.png"><img src="http://techieblogger.com/wp-content/uploads/2009/06/post-navigation-image.png" alt="post navigation image" title="post navigation image" width="500" height="41" class="aligncenter size-full wp-image-344" /></a></p>
<h3></h3>
<h3>Replace Image with Background images</h3>
<p>To replace the &#8220;older posts&#8221; , &#8221; Newer Posts&#8221; and &#8220;Home&#8221; text with background images , follow these simple steps.</p>
<p>replace the css code for blog post navigation widget with this code</p>
<div class="codeview">
#blog-pager-newer-link {<br />
padding-left : 20px;<br />
border : none;<br />
float : left;<br />
}<br />
#blog-pager-older-link {<br />
float : right;<br />
padding-right : 20px;<br />
border : none;<br />
}<br />
#blog-pager{<br />
padding:50px 10px 10px 10px;<br />
text-align:center;<br />
}<br />
.blog-pager a{<br />
color:#A10000<br />
}</p>
<p>.blog-pager a:hover{<br />
color:#15FFED<br />
}</div>
<p>and then save your template. Now check &#8221; Expand Widget Templates&#8221; option and now replace the </p>
<div class="codeview">&lt;b:includable id=&#8217;nextprev&#8217;&gt;<br />
&lt;div class=&#8217;blog-pager&#8217; id=&#8217;blog-pager&#8217;&gt;<br />
&lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt;<br />
&lt;span id=&#8217;blog-pager-newer-link&#8217;&gt;<br />
&lt;a class=&#8217;blog-pager-newer-link&#8217; expr:href=&#8217;data:newerPageUrl&#8217; expr:id=&#8217;data:widget.instanceId + &amp;quot;_blog-pager-newer-link&amp;quot;&#8217; expr:title=&#8217;data:newerPageTitle&#8217;&gt;&lt;data:newerPageTitle/&gt;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;/b:if&gt;</p>
<p>&lt;b:if cond=&#8217;data:olderPageUrl&#8217;&gt;<br />
&lt;span id=&#8217;blog-pager-older-link&#8217;&gt;<br />
&lt;a class=&#8217;blog-pager-older-link&#8217; expr:href=&#8217;data:olderPageUrl&#8217; expr:id=&#8217;data:widget.instanceId + &amp;quot;_blog-pager-older-link&amp;quot;&#8217; expr:title=&#8217;data:olderPageTitle&#8217;&gt;&lt;data:olderPageTitle/&gt;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;/b:if&gt;</p>
<p>&lt;b:if cond=&#8217;data:blog.homepageUrl != data:blog.url&#8217;&gt;<br />
&lt;a class=&#8217;home-link&#8217; expr:href=&#8217;data:blog.homepageUrl&#8217;&gt;&lt;data:homeMsg/&gt;&lt;/a&gt;<br />
&lt;b:else/&gt;<br />
&lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt;<br />
&lt;a class=&#8217;home-link&#8217; expr:href=&#8217;data:blog.homepageUrl&#8217;&gt;&lt;data:homeMsg/&gt;&lt;/a&gt;<br />
&lt;/b:if&gt;<br />
&lt;/b:if&gt;</p>
<p>&lt;/div&gt;<br />
&lt;div class=&#8217;clear&#8217;/&gt;<br />
&lt;/b:includable&gt;</div>
<p>with this code</p>
<div class="codeview">&lt;b:includable id=&#8217;nextprev&#8217;&gt;<br />
  &lt;div class=&#8217;blog-pager&#8217; id=&#8217;blog-pager&#8217;&gt;<br />
    &lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt;<br />
      &lt;span id=&#8217;blog-pager-newer-link&#8217;&gt;<br />
      &lt;a class=&#8217;blog-pager-newer-link&#8217; expr:href=&#8217;data:newerPageUrl&#8217; expr:id=&#8217;data:widget.instanceId + &amp;quot;_blog-pager-newer-link&amp;quot;&#8217; expr:title=&#8217;data:newerPageTitle&#8217;&gt;&lt;img alt=&#8217;techieblogger.com&#8217; src=&#8217;http://i69.photobucket.com/albums/i42/queenofdreamsz/NextIcon.gif&#8217; title=&#8217;Newer Post&#8217;/&gt;&lt;/a&gt;<br />
      &lt;/span&gt;<br />
    &lt;/b:if&gt;</p>
<p>    &lt;b:if cond=&#8217;data:olderPageUrl&#8217;&gt;<br />
      &lt;span id=&#8217;blog-pager-older-link&#8217;&gt;<br />
      &lt;a class=&#8217;blog-pager-older-link&#8217; expr:href=&#8217;data:olderPageUrl&#8217; expr:id=&#8217;data:widget.instanceId + &amp;quot;_blog-pager-older-link&amp;quot;&#8217; expr:title=&#8217;data:olderPageTitle&#8217;&gt;&lt;img alt=&#8217;Techie Blogger&#8217; src=&#8217;http://i69.photobucket.com/albums/i42/queenofdreamsz/BackIcon.gif&#8217; title=&#8217;Older Post&#8217;/&gt;&lt;/a&gt;<br />
      &lt;/span&gt;<br />
    &lt;/b:if&gt;</p>
<p>    &lt;b:if cond=&#8217;data:blog.homepageUrl != data:blog.url&#8217;&gt;<br />
      &lt;a class=&#8217;home-link&#8217; expr:href=&#8217;data:blog.homepageUrl&#8217;&gt;&lt;img alt=&#8217;Techie Blogger&#8217; src=&#8217;http://i85.photobucket.com/albums/k47/bongmalove/icon/home.gif&#8217; title=&#8217;Home Page&#8217;/&gt;&lt;/a&gt;<br />
      &lt;b:else/&gt;<br />
      &lt;b:if cond=&#8217;data:newerPageUrl&#8217;&gt;<br />
        &lt;a class=&#8217;home-link&#8217; expr:href=&#8217;data:blog.homepageUrl&#8217;&gt;&lt;img alt=&#8217;Techie Blogger&#8217; src=&#8217;http://i85.photobucket.com/albums/k47/bongmalove/icon/home.gif&#8217; title=&#8217;Home Page&#8217;/&gt;&lt;/a&gt;<br />
      &lt;/b:if&gt;<br />
    &lt;/b:if&gt;</p>
<p>  &lt;/div&gt;<br />
  &lt;div class=&#8217;clear&#8217;/&gt;<br />
&lt;/b:includable&gt;</div>
<p>You can change the images included with your own blog navigation images. After that save your template and check your blog. You can find a blog navigation links something like this :<br />
<center><br />
<a href="http://techieblogger.com/wp-content/uploads/2009/06/post-navigation.png"><img src="http://techieblogger.com/wp-content/uploads/2009/06/post-navigation.png" alt="post navigation" title="post navigation" width="458" height="114" class="aligncenter size-full wp-image-345" /></a></center></p>
<h3></h3>
<h3>Show blog post navigation above posts title</h3>
<p>You can also show the blog post navigation script above post title too. In order to implement this hack , go to EDIT HTML page of your blog and check &#8221; EXPAND WIDGET TEMPLATES&#8221; option. Now search this tag in your template.</p>
<ul>
<li>&lt;b:includable id=&#8217;main&#8217; var=&#8217;top&#8217;&gt;</li>
</ul>
<p>Now paste the following code immediately below it</p>
<ul>
<li>
&lt;b:include name=&#8217;nextprev&#8217;/&gt;</li>
</ul>
<h3></h3>
<h3>Troubleshooting problems with blog post navigation script</h3>
<p>Few might have noticed that the Blog post navigation links will be misaligned sometimes. Newer post , Older post and Home page links will get together. So it means that the CSS codes are missing for the file. To overcome this problem , just copy and paste the corresponding CSS code you need above ]]&gt;&lt;/b:skin&gt; .</p>
<h3>Blog post navigation missing</h3>
<p>Sometimes the blog post navigation may be missing in your blog. It&#8217;s because the blog post navigation code may be missing in your template. To overcome this problem , search this tag in your template with &#8221; expand widget templates&#8221; option enabled.</p>
<p>&lt;b:include name=&#8217;nextprev&#8217;/&gt;</p>
<p>if the tag is missing , then add the above tag in your template below &lt;b:includable id=&#8217;main&#8217; var=&#8217;top&#8217;&gt; as shown in the image.</p>
<p><a href="http://techieblogger.com/wp-content/uploads/2009/06/troubleshooting.png"><img src="http://techieblogger.com/wp-content/uploads/2009/06/troubleshooting.png" alt="troubleshooting" title="troubleshooting" width="317" height="279" class="aligncenter size-full wp-image-348" /></a></p>
<p>Hope this post will be helpful for all blogger newbies. If you need any other customization then feel free to ask in comment form below.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/show-date-before-each-post-in-blogger.html' rel='bookmark' title='Show Date before each Post in Blogger'>Show Date before each Post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/07/embed-comment-form-below-post-in-blogger.html' rel='bookmark' title='Embed Comment Form below post in Blogger'>Embed Comment Form below post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/04/hide-blogger-navigation-bar-navbar.html' rel='bookmark' title='Hide Blogger Navigation Bar / navbar'>Hide Blogger Navigation Bar / navbar</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/06/customize-blogger-navigation-scrip.html/feed</wfw:commentRss>
		<slash:comments>47</slash:comments>
		</item>
		<item>
		<title>Show Adsense ads below post title</title>
		<link>http://www.techieblogger.com/2009/05/show-adsense-ads-below-post-title.html</link>
		<comments>http://www.techieblogger.com/2009/05/show-adsense-ads-below-post-title.html#comments</comments>
		<pubDate>Sat, 16 May 2009 13:07:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[Ads in post title]]></category>
		<category><![CDATA[adsense ads]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Blogger adsense]]></category>
		<category><![CDATA[blogger hacks]]></category>
		<category><![CDATA[Google adsense]]></category>

		<guid isPermaLink="false">http://www.test.smashingtips.com/techieblogger/?p=67</guid>
		<description><![CDATA[In this tutorial I will explain how to place Adsense ads below post title in Blogger Blogs with lots of customization tips. You might have noticed that most of the bloggers show Google adsense ads below title to increase their Click through rate and earnings. According to Google adsense help pages &#8221; Where to place [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/show-date-before-each-post-in-blogger.html' rel='bookmark' title='Show Date before each Post in Blogger'>Show Date before each Post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2009/12/techie-blogger-revenue-sharing-program-adsense-id-configuration.html' rel='bookmark' title='Techie Blogger revenue sharing program : Adsense ID configuration'>Techie Blogger revenue sharing program : Adsense ID configuration</a></li>
<li><a href='http://www.techieblogger.com/2008/08/adsense-video-units-ads-is-available.html' rel='bookmark' title='Adsense Video Units Ads is available for All Now &#8211; Adsense Player'>Adsense Video Units Ads is available for All Now &#8211; Adsense Player</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I will explain how to place Adsense ads below post title in Blogger Blogs with lots of customization tips. You might have noticed that most of the bloggers show Google adsense ads below title to increase their Click through rate and earnings.</p>
<p>According to Google adsense help pages &#8221; <a href="https://www.google.com/adsense/support/bin/answer.py?answer=17954">Where to place adsense ads ?</a>&#8220;. Placing adsense ads below title and above article content can bring high ctr and performance.</p>
<div style="text-align: center;"><img style="width: 472px; height: 402px;" src="http://www.google.com/images/adsense/en_us/support/general_en.jpg" alt="Adsense ads Below post title" /></div>
<p>This &#8220;heat map&#8221; illustrates the ideal placing on a sample page layout. The colors fade from dark orange (strongest performance) to light yellow (weakest performance). So it&#8217;s clear from the heat map that the adsense ads below post title can bring high ctr.</p>
<h3>How to add Adsense ads below post title ?</h3>
<p>It&#8217;s really very easy to add adsense ads below post title in blogger. Inorder to add adsense ads below post title ,just follow the below steps.</p>
<p>Before adding the adsense ads to blogger templates , we need to encode our adsense ads code.If you add the adsense code without encoding then you can&#8217;t see any adsense ads below post title.</p>
<h3>Encoding Adsense Ad Code ?</h3>
<p>To encode adsense ads, first create an adsense ad and then visit <a style="color: #ff0000;" href="http://centricle.com/tools/html-entities/" target="_blank">centricle</a> website to encode. In centricle web page , you need to paste your adsense code in the text area and then click &#8221; <span style="color: #ff0000;">Encode</span> &#8220;. Copy the encoded code. Now your adsense code is ready to be added to blogger template.</p>
<h3>Adding adsense ad code to blogger template</h3>
<p>step 1 : Go to layout section of your blogger template and then navigate to EDIT HTML sub tab. There check the &#8220;Expand Widget Templates &#8220;.</p>
<p>step2 : Look up the following tag : <span style="color: #cc0000;">&lt;p&gt;&lt;data:post.body/&gt;&lt;/p&gt;</span> and paste the encoded adsense ad code above that tag.</p>
<p>Then click save. That&#8217;s it Now we have added the adsense ad code below the post title in blogger blog successfully.</p>
<h3>Customizing Adsense ads</h3>
<p>Here are the few customization tips , which you can apply to increase your CTR.You might have seen that most of the bloggers will show more than Three posts in home page / labels page / archives page. But as per adsense TOS we can show only  Three ads per page. So due to this we will see some blank spaces between post title and content , when the three adsense ads are already loaded.In order to avoid this error , we can show adsense ads only in Post pages i.e pages containing articles.</p>
<h3>Showing adsense Ad only in Post pages</h3>
<p>In order to implement this hack in your blogger template. you need to change the encoded adsense ad code to this.</p>
<blockquote><p>&lt;b:if cond=&#8217;data:blog.pageType == &amp;quot;item&amp;quot;&#8217;&gt;<br />
Encoded Adsense code here<br />
&lt;/b:if&gt;</p>
</blockquote>
<p>Now paste this code above <span style="color: #cc0000;">&lt;p&gt;&lt;data:post.body/&gt;&lt;/p&gt;</span></p>
<h3>Making adsense ads to Float</h3>
<p>After adding the adsense ad code to your templates , you can see that by default the adsense ad code will not allow any text to be shown nearby it.</p>
<p><a href="http://3.bp.blogspot.com/_aVtbdMo1J34/Sg7TDYYZQQI/AAAAAAAABb8/R7usxLBVq5s/s1600-h/adsense+ads.jpg" ><img id="BLOGGER_PHOTO_ID_5336434663518454018" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 256px;" src="http://3.bp.blogspot.com/_aVtbdMo1J34/Sg7TDYYZQQI/AAAAAAAABb8/R7usxLBVq5s/s400/adsense+ads.jpg" border="0" alt="" /></a><br />
So in order to overcome this error , we need to add some CSS codes to make adsense ad code to float either left or right.</p>
<p>For this we just need to modify the encoded adsense code to be added in step 2.</p>
<p>replace that encoded code with this one :</p>
<blockquote><p>&lt;div style=&#8221;float:<span style="color: #ff0000;">left</span>;padding:<span style="color: #cc0000;">5px</span>;&#8221;&gt;</p>
<p>encoded adsense ad code here</p>
<p>&lt;/div&gt;</p>
</blockquote>
<p>Change the text in red to make adsense ad to float either to left or right.</p>
<h3>My suggestion</h3>
<p>According to me , instead of showing adsense ads in all pages ( home page , archives page and labels page ) ,  we can show adsense ads only in post pages to increase our ctr. If you are using the &#8221; <a href="http://www.techieblogger.com/2009/05/read-more-hack-for-blogger-with.html">Read More hack for Blogger with automatic Thumbnail creator script</a> &#8221; then it&#8217;s advisable to show adsense ads only in post pages.</p>
<p>Hope you guys will like this hack. If you need any more customization , then give me your suggestions via comments.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/show-date-before-each-post-in-blogger.html' rel='bookmark' title='Show Date before each Post in Blogger'>Show Date before each Post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2009/12/techie-blogger-revenue-sharing-program-adsense-id-configuration.html' rel='bookmark' title='Techie Blogger revenue sharing program : Adsense ID configuration'>Techie Blogger revenue sharing program : Adsense ID configuration</a></li>
<li><a href='http://www.techieblogger.com/2008/08/adsense-video-units-ads-is-available.html' rel='bookmark' title='Adsense Video Units Ads is available for All Now &#8211; Adsense Player'>Adsense Video Units Ads is available for All Now &#8211; Adsense Player</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/05/show-adsense-ads-below-post-title.html/feed</wfw:commentRss>
		<slash:comments>51</slash:comments>
		</item>
		<item>
		<title>backup Blogger Blog Widgets &#8211; an easy video tutorial</title>
		<link>http://www.techieblogger.com/2009/05/backup-blogger-blog-widgets-an-easy-video-tutorial.html</link>
		<comments>http://www.techieblogger.com/2009/05/backup-blogger-blog-widgets-an-easy-video-tutorial.html#comments</comments>
		<pubDate>Fri, 15 May 2009 18:41:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[backup blogger blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogger hacks]]></category>
		<category><![CDATA[blogger video tutorials]]></category>
		<category><![CDATA[blogspot]]></category>

		<guid isPermaLink="false">http://www.test.smashingtips.com/techieblogger/?p=66</guid>
		<description><![CDATA[One of the Major Problem Blogger users have is whenever they try to change their templates , They will loss their widgets even if they have taken backup of their blogger blog template. After changing their Blogger template , they need to add blogger widgets again manually. It&#8217;s really annoying and time consuming process. So [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/how-to-change-blogger-template-without-deleting-widgets.html' rel='bookmark' title='How to change Blogger Template without deleting widgets ?'>How to change Blogger Template without deleting widgets ?</a></li>
<li><a href='http://www.techieblogger.com/2009/07/add-paypal-donation-button-script-to-blogger-and-wordpress-blogs.html' rel='bookmark' title='Add paypal donation button to blogger and wordpress blogs'>Add paypal donation button to blogger and wordpress blogs</a></li>
<li><a href='http://www.techieblogger.com/2009/06/magic-house-blogger-template.html' rel='bookmark' title='Magic House Blogger Template'>Magic House Blogger Template</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of the Major Problem Blogger users have is whenever they try to change their templates , They will loss their widgets even if they have taken backup of their blogger blog template. After changing their Blogger template , they need to add blogger widgets again manually. It&#8217;s really annoying and time consuming process. So here I have created a video which will give you step by step instructions to backup blogger templates without loosing any of your widgets.</p>
<div style="text-align: center;"><img src="http://i227.photobucket.com/albums/dd102/marialexan/backup.jpg" alt="Backup Blogger Widgets " /></div>
<p>I have written a tutorial on Backup Blogger blog widgets &#8221; <a href="http://www.techieblogger.com/2008/07/how-to-change-blogger-template-without.html">How to change Blogger Template without deleting widgets ?</a> &#8221; .But most of the friends found that difficult to backup blogger widgets. So in order to help them , I have created a video tutorial for them to backup Blogger Template and blogger widgets while changing their blogger templates.</p>
<h3>BACKUP BLOGGER WIDGETS VIDEO TUTORIAL</h3>
<p><center><script src="http://flash.revver.com/player/1.0/player.js?mediaId:1108622;affiliateId:141847;backColor:#000000;frontColor:#ffffff;gradColor:#000000;width:480;height:392;" type="text/javascript"></script></center></p>
<p>This is my first video tutorial guys , so please give me your suggestions. Due to lesser RAM , the Voice is a bit choppy. If you still have any doubts or difficulty to backup the blogger blog widgets then please feel free to contact me.</p>
<p>Very soon I will write tutorials on</p>
<ul>
<li> How to backup Blogger Posts</li>
</ul>
<p>and will explain the functionality of numerous blogger posts backup software. If you don&#8217;t want to miss my future tutorials or hack then please suscribe to my blog.</p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/07/how-to-change-blogger-template-without-deleting-widgets.html' rel='bookmark' title='How to change Blogger Template without deleting widgets ?'>How to change Blogger Template without deleting widgets ?</a></li>
<li><a href='http://www.techieblogger.com/2009/07/add-paypal-donation-button-script-to-blogger-and-wordpress-blogs.html' rel='bookmark' title='Add paypal donation button to blogger and wordpress blogs'>Add paypal donation button to blogger and wordpress blogs</a></li>
<li><a href='http://www.techieblogger.com/2009/06/magic-house-blogger-template.html' rel='bookmark' title='Magic House Blogger Template'>Magic House Blogger Template</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/05/backup-blogger-blog-widgets-an-easy-video-tutorial.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Create Compatible CSS for Firefox , IE6 , Opera , IE7 , etc</title>
		<link>http://www.techieblogger.com/2009/01/create-compatible-css-for-firefox-ie6-opera-ie7-etc.html</link>
		<comments>http://www.techieblogger.com/2009/01/create-compatible-css-for-firefox-ie6-opera-ie7-etc.html#comments</comments>
		<pubDate>Sun, 01 Feb 2009 00:48:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.test.smashingtips.com/techieblogger/?p=53</guid>
		<description><![CDATA[Learn How to create Compatible CSS for Various Browsers like Internet Explorer 6 , IE7 , IE8 , Opera , Firefox , etc.. Web-designers create blogger template for Hours using one particular browser say Firefox , They don&#8217;t know that the CSS code they use is compatible only for the browser they are working at [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html' rel='bookmark' title='Make your site compatible for Higher screen resolution'>Make your site compatible for Higher screen resolution</a></li>
<li><a href='http://www.techieblogger.com/2008/08/add-yahoo-smileys-to-blogger-posts-firefox-hack.html' rel='bookmark' title='Add Yahoo Smileys to Blogger Posts &#8211; Firefox Hack'>Add Yahoo Smileys to Blogger Posts &#8211; Firefox Hack</a></li>
<li><a href='http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html' rel='bookmark' title='Image re-sizer CSS Hack for blogger and wordpress users'>Image re-sizer CSS Hack for blogger and wordpress users</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Learn How to create Compatible CSS for Various Browsers like Internet Explorer 6 , IE7 , IE8 , Opera , Firefox , etc..</p>
<p>Web-designers create blogger template for Hours using one particular browser say Firefox , They don&#8217;t know that the CSS code they use is compatible only for the browser they are working at present. Especially in IE6 , there are many Compatible issues.</p>
<p>for Example : the sidebar may appear below main content wrapper or there would be more gap between each widget , content wrapper and sidebar may overlap ,etc.</p>
<p>So in this Post I will tell you How to create CSS code which is compatible for almost all browsers. For this you need to have two browsers Internet Explorer 6 and Firefox .<br /><span class="fullpost"></p>
<p>I have chose IE6 because it is one of the most common browsers which windows have.</p>
<div style="TEXT-ALIGN: center"><img title="Create Compatible CSS for Firefox , IE6 , Opera , IE7 , etc" style="BORDER-RIGHT: rgb(206,207,208) 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: rgb(206,207,208) 1px solid; PADDING-LEFT: 10px; BACKGROUND: rgb(240,240,240); PADDING-BOTTOM: 10px; BORDER-LEFT: rgb(206,207,208) 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: rgb(206,207,208) 1px solid; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" alt="Incompatibility issues in IE6 and Firefox" src="http://i422.photobucket.com/albums/pp302/bloggeracs/csscode.gif" /></div>
<p>First let&#8217;s check is our current Blogger template is compatible with all browsers or not.</p>
<p>For this visit this website : <a href="http://www.browsershots.org/">Browser Screen shots</a><br />Enter your Blog URL and check the images there to know How your blog looks in various Browsers.</p>
<p>step 2 : If you find any incompatibility issues then you need to modify your CSS code to suit browsers.</p>
<p class="notes">Let&#8217;s us see an Example </p>
<p><!-- adsense --></p>
<p>Generally the css we use if of this form :</p>
<blockquote><p>#example {<br />float : left;<br />width : 170px;<br />margin-left : 5px;<br />}</p>
</blockquote>
<p>In this assume that this particular div is incompatible with Internet Explorer version x.</p>
<p>then we need to modify the above css code as</p>
<p>#example {<br />float : left;<br /><span style="COLOR: rgb(0,0,153)">width : 170px;</span><br /><span style="COLOR: rgb(0,0,153)">margin-left : 5px;</span><br />}<br />#example {<br />float : left;<br /><span style="COLOR: rgb(0,0,153)">width : 185px;</span><br /><span style="COLOR: rgb(0,0,153)">margin-left : 3px;</span><br />}</p>
<p>in this first css code is for all versions of Internet Explorer and the second css code is for other browsers like firefox , opera , dillo , sea monkey , etc</p>
<p>but it will be confusing for you to edit.. so now we are going to add different CSS rules to IE, we can use the child selector command which IE can&#8217;t understand. The child selector command involves two elements, one of which is the child of the other. So, html>body refers to the child, body, contained within the parent, html.</p>
<p>After introducing Child selector command , the css code must look like this</p>
<blockquote><p><span style="COLOR: rgb(0,102,0)">#example</span> {<br />float : left;<br /><span style="COLOR: rgb(0,0,153)">width : 170px;</span><br /><span style="COLOR: rgb(0,0,153)">margin-left : 5px;</span><br />}<br /><span style="COLOR: rgb(255,0,0)">html > body #example</span> {<br /><span style="COLOR: rgb(0,0,153)">width : 185px;</span><br /><span style="COLOR: rgb(0,0,153)">margin-left : 3px;</span><br />}</p>
</blockquote>
<p>in this the green colored code is for IE versions and the red Colored code is for other browsers.</p>
<p>So with simple child selector command we can make our css code compatible for all browsers. Every time when I create a New template , I use to check whether it is compatible with other browsers or not. And I use to change the CSS code to suit that browser.</p>
<p>If you are unable to modify the CSS code then please mail me your template and explain the problem , I will rectify those errors and mail you back.</span></p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/08/screen-resolution-javascript-css.html' rel='bookmark' title='Make your site compatible for Higher screen resolution'>Make your site compatible for Higher screen resolution</a></li>
<li><a href='http://www.techieblogger.com/2008/08/add-yahoo-smileys-to-blogger-posts-firefox-hack.html' rel='bookmark' title='Add Yahoo Smileys to Blogger Posts &#8211; Firefox Hack'>Add Yahoo Smileys to Blogger Posts &#8211; Firefox Hack</a></li>
<li><a href='http://www.techieblogger.com/2009/08/image-resizer-tool-php-css-script.html' rel='bookmark' title='Image re-sizer CSS Hack for blogger and wordpress users'>Image re-sizer CSS Hack for blogger and wordpress users</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2009/01/create-compatible-css-for-firefox-ie6-opera-ie7-etc.html/feed</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Add 125 x 125 ad section to Blogger</title>
		<link>http://www.techieblogger.com/2008/10/add-125-x-125-ad-section-to-blogger.html</link>
		<comments>http://www.techieblogger.com/2008/10/add-125-x-125-ad-section-to-blogger.html#comments</comments>
		<pubDate>Sun, 05 Oct 2008 05:28:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blogger Hack]]></category>
		<category><![CDATA[blogger tutorials]]></category>

		<guid isPermaLink="false">http://www.test.smashingtips.com/techieblogger/?p=51</guid>
		<description><![CDATA[Learn How to add an extra B:section in your Blog template and also learn to add 125&#215;125 ad banners ! I noticed that most of my readers are asking me How to add 125 x 125 ads section in Blogger templates. We know that to add a widget we need b:section with add page elements [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/10/random-posts-widget-for-blogger.html' rel='bookmark' title='Random Posts Widget for Blogger'>Random Posts Widget for Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/07/show-date-before-each-post-in-blogger.html' rel='bookmark' title='Show Date before each Post in Blogger'>Show Date before each Post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/05/add-yahoo-smileys-on-blogger-posts-blogger-hack.html' rel='bookmark' title='Add yahoo Smileys on Blogger Posts &#8211; Blogger hack'>Add yahoo Smileys on Blogger Posts &#8211; Blogger hack</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Learn How to add an extra B:section in your Blog template and also learn to add 125&#215;125 ad banners !</p>
<p>I noticed that most of my readers are asking me How to add 125 x 125 ads section in Blogger templates. We know that to add a widget we need b:section with add page elements function enabled. So in this post I will tell you how to add b:section in your Blogger template and how to add CSS code to suit that b:section.</p>
<p>So with this hack you can add any widget you want. And I will also make a note on Adding 125 x 125 Page Element.<br /><span class="fullpost"><br />Lets start :</p>
<p><span style="font-size:130%;"><span style="font-family:georgia;">Adding b:section to Blog sidebar :</p>
<p><span style="font-size:100%;">Step 1 : Sign in to Your Blogger account and got to Layout section of your Blog. Then Navigate to Edit HTML sub tab. </span></span></span></span><br /><span class="fullpost"><span style="font-size:130%;"><span style="font-family:georgia;"><span style="font-size:100%;"><!-- adsense --></p>
<p>Step 2 : If your template possess two Columns in Right sidebar and if you want to add an Subscription form or 125 x 125 ad section above those two columns then do this step.</p>
<p></span></span></span></span><span class="fullpost"><span style="font-size:130%;"><span style="font-family:georgia;"><span style="font-size:100%;"></span></span></span></p>
<div style="TEXT-ALIGN: center"><span style="font-size:130%;"><span style="font-family:georgia;"><span style="font-size:100%;"><img title="  This is how the template will look before" alt=" If you have a sidebar like this then add a b:section above the 2 columns to add more widgets" src="http://i263.photobucket.com/albums/ii150/mohamedrias/Before.jpg" /></span></span></span></p>
</div>
<p><span style="font-size:130%;"><span style="font-family:georgia;"><span style="font-size:100%;"><br />Search this tag or similar</p>
<p></span></span></span></p>
<div style="TEXT-ALIGN: center"><span style="COLOR: rgb(255,0,0);font-size:130%;" ><span style="font-family:georgia;"><span style="font-size:100%;">&lt;div id=&#8217;sidebar-right&#8217;&gt;</span></span></span> <span style="COLOR: rgb(255,0,0);font-size:130%;" ><span style="font-family:georgia;"><span style="font-size:100%;"></span></span></span><span style="COLOR: rgb(255,0,0);font-size:130%;" ><span style="font-family:georgia;"><span style="font-size:100%;">&lt;b:section class=&#8217;sidebar-right&#8217; id=&#8217;sidebar-right&#8217; preferred=&#8217;yes&#8217;&gt;</span></span></span></div>
<p><span style="font-size:130%;"><span style="font-family:georgia;"><br /></span></span>The id can be different , so please paste the following code just above the sidebar section of your Blog.</p>
<p></span></span></p>
<div class="codeview">&lt;div id=&#8217;sidebar2&#8242;&gt;<br />&lt;b:section class=&#8217;sidebar2&#8242; id=&#8217;sidebar2&#8242; preferred=&#8217;yes&#8217;&gt;<br />&lt;/b:section&gt;&lt;/div&gt;</div>
<p>So Now we have added the b:section code needed to add more widgets. Then we need to add css code for that b:section</p>
<p><div class="codeview">#sidebar2 {<br />float : right;<br />margin-left:4px; <span style="COLOR: rgb(0,102,0)">width : 415px;</span> <span style="COLOR: rgb(0,102,0)">background:#ffffff;</span><br />font : 11px Verdana;<br />}<br />#sidebar2 .widget {<br />list-style-type : none;<br />margin : 5px 0 5px 0;<br />padding : 0;<br />}</p>
<p>#sidebar2 .widget h2, #sidebar2 h2 {padding-left: 10px;<br />text-align:center;padding-left: 18px;<br />font: 12px/34px &#8220;Georgia&#8221;, Verdana;<br />text-transform: uppercase;<br />color: #ffffff;<br />background: url(&#8220;<span style="COLOR: rgb(0,102,0)">http://i263.photobucket.com/albums/ii150/mohamedrias/sidebar_title-2.gif</span>&#8220;) repeat;font-weight:bold;</p>
<p>}</p>
<p>#sidebar2 a {<br />color: #969696;<br />font-size : 12px;<br />text-decoration : none;<br />}<br />#sidebar2 a:hover {<br />color: #969696;<br />text-decoration : none;<br />}<br />#sidebar2 ul {<br />border : medium none;<br />margin : 7px;<br />padding : 0;<br />}<br />#sidebar2 ul li {<br />list-style-type : none;<br />border-bottom : 1px dotted #87581f;<br />margin : 0;<br />background-position : 0% 100%;<br />padding-left : 8px;<br />padding-right : 10px;<br />line-height : 15px;<br />padding-top : 5px;<br />padding-bottom : 5px;<br />}<br />#sidebar2 ul li a {<br />text-decoration: none; background: url(<span style="COLOR: rgb(0,102,0)">http://i263.photobucket.com/albums/ii150/mohamedrias/side_li_bullet.gif</span>) no-repeat; padding:0 0 0 12px;color: #87581f;<br />}</div>
<p>please edit the text in green to suit your Blogger template.</p>
<p>So we have successfully added the b:section and css codings required.</p>
<p>Now navigate to Layout section of your blog and there you will see a new &#8221; Add page Elements &#8221; link just above the sidebar.</p>
<p>If you are planning to add 125 x 125 ad section then click add page element link. there select add HTML/ JAVASCRIPT page widget and insert the below code over there.</p>
<p><div class="codeview">&lt;div class=&#8221;sidebar-ads&#8221;&gt;<br />&lt;div class=&#8221;sidebar-banner&#8221;&gt;&lt;a href=&#8221;<span style="COLOR: rgb(204,0,0)">#</span>&#8220;&gt;<br />&lt;img border=&#8221;0&#8243; src=&#8221;http://i263.photobucket.com/albums/ii150/mohamedrias/banner_125x125.jpg &#8220;/&gt;&lt;/a&gt;&lt;/div&gt;</p>
<p>&lt;div class=&#8221;sidebar-banner&#8221;&gt;&lt;a style=&#8221;text-decoration: none;&#8221; href=&#8221;<span style="COLOR: rgb(255,0,0)">#&#8221;</span>&gt;&lt;img border=&#8221;0&#8243; src=&#8221;http://i263.photobucket.com/albums/ii150/mohamedrias/banner_125x125.jpg&#8221; /&gt;&lt;/a&gt;&lt;/div&gt;</p>
<p>&lt;div class=&#8221;sidebar-banner&#8221;&gt;&lt;a style=&#8221;text-decoration: none;&#8221; href=&#8221;<span style="COLOR: rgb(255,0,0)">#</span>&#8220;&gt;&lt;img border=&#8221;0&#8243; src=&#8221;http://i263.photobucket.com/albums/ii150/mohamedrias/banner_125x125.jpg&#8221; /&gt;&lt;/a&gt;&lt;/div&gt;</p>
<p>&lt;div class=&#8221;clear&#8221;&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&#8221;mailto:your email id&#8221; title=&#8221;Advertise Here&#8221;&gt;Advertise Here&lt;/a&gt;&lt;/p&gt;<br />&lt;/div&gt;</div>
<p>After adding the code , click save widget. Then navigate to Edit HTML sub tab to add the necessary CSS code needed for this ad section</p>
<p><div class="codeview">/* Sidebar &#8211; Ads */</p>
<p>.sidebar-ads {<br />float: left;<br /><span style="COLOR: rgb(204,0,0)">width: 410px;margin-left:5px;</span><br />margin-bottom: 5px;<br />}</p>
<p>.sidebar-banner {<br /><span style="COLOR: rgb(204,0,0)">padding: 5px;</span><br />float: left;<br />}</p>
<p>#sidebar2 p { background:url(http://i263.photobucket.com/albums/ii150/mohamedrias/adsdotdot-1.gif) no-repeat center left; margin-top:5px;text-align:right;padding-right:10px;}</p></div>
<p>Edit the test in red to suit your template.</p>
<p><div style="TEXT-ALIGN: center"><img title=" After adding the code this is how it will look in the template" style="WIDTH: 431px; HEIGHT: 372px" alt=" After adding the CSS code this is how it will look" src="http://i263.photobucket.com/albums/ii150/mohamedrias/After.jpg" /></div>
<p>So we have successfully added the 125 x 125 ad section.<img class="emoticon" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/36.gif" /></p>
<p><p class="alert"><span style="font-family:georgia;font-size:130%;">Adding b:section below or above posts ( content)</span></p>
<p>Most wish to add two column b:section below main container ( posts ) . I will write about this hack soon. (Its a continuation of this hack )</p>
<p>If you guys need any help , please feel free to contact me mohamedrias1103@gmail.com . See you soon with new Blogger hacks.</span><br /></span></p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2009/10/random-posts-widget-for-blogger.html' rel='bookmark' title='Random Posts Widget for Blogger'>Random Posts Widget for Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/07/show-date-before-each-post-in-blogger.html' rel='bookmark' title='Show Date before each Post in Blogger'>Show Date before each Post in Blogger</a></li>
<li><a href='http://www.techieblogger.com/2008/05/add-yahoo-smileys-on-blogger-posts-blogger-hack.html' rel='bookmark' title='Add yahoo Smileys on Blogger Posts &#8211; Blogger hack'>Add yahoo Smileys on Blogger Posts &#8211; Blogger hack</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2008/10/add-125-x-125-ad-section-to-blogger.html/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Submit Blogger Blog Sitemap To Google Webmasters</title>
		<link>http://www.techieblogger.com/2008/09/submit-blogger-blog-sitemap-to-google-webmasters.html</link>
		<comments>http://www.techieblogger.com/2008/09/submit-blogger-blog-sitemap-to-google-webmasters.html#comments</comments>
		<pubDate>Mon, 15 Sep 2008 09:36:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[blogger tutorials]]></category>

		<guid isPermaLink="false">http://www.test.smashingtips.com/techieblogger/?p=48</guid>
		<description><![CDATA[Today I am going to tell how to add blogger blog to Google. Everyone ask Why we must submit our blog to Google , Since Google automatically indexes our Blog. But by submitting our blog sitemap to Google we can make Google to index our Blog frequently. One more question everyone ask is &#8220;Why should [...]
Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/09/google-translation-flags-widget-for-blogger-blog.html' rel='bookmark' title='Google translation Flags Widget for Blogger Blog'>Google translation Flags Widget for Blogger Blog</a></li>
<li><a href='http://www.techieblogger.com/2009/05/backup-blogger-blog-widgets-an-easy-video-tutorial.html' rel='bookmark' title='backup Blogger Blog Widgets &#8211; an easy video tutorial'>backup Blogger Blog Widgets &#8211; an easy video tutorial</a></li>
<li><a href='http://www.techieblogger.com/2009/12/write-for-techie-blogger-and-get-full-google-adsense-revenue.html' rel='bookmark' title='Write for Techie Blogger and get 100% Google Adsense revenue'>Write for Techie Blogger and get 100% Google Adsense revenue</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Today I am going to tell how to add blogger blog to Google. Everyone ask Why we must submit our blog to Google , Since Google automatically indexes our Blog. But by submitting our blog sitemap to Google we can make Google to index our Blog frequently. One more question everyone ask is</p>
<p>&#8220;Why should we submit our Blog sitemap to Search Engines ? &#8220;</p>
<p>Sitemaps allows a webmaster to inform search engines about URLs on a website that are available for crawling. A Sitemap is an XML file that lists the URLs for a site. It allows webmasters to include additional information about each URL: when it was last updated, how often it changes, and how important it is in relation to other URLs in the site. This allows search engines to crawl the site more intelligently.</p>
<p>So in this Post I am going to tell how to Submit our Blog url and Blog Sitemap to Google. Just follow these step by step instructions:<br /><span class="fullpost"></p>
<p></span><span class="fullpost"></p>
<p class="alert">Step 1 : Submitting Blog url to Google.</p>
<p><!-- adsense --><br />To submit our Blog Url to Google visit this page(http://www.google.com/addurl/?continue=/addurl). There you will find a form like this ,</p>
<p>
<div style="TEXT-ALIGN: center;width:500px;"><img title=" Submit Blogger / Blogspot Blogs to Google Sitemap" alt=" Submit Blogger/Blogspot blog to Google Sitemaps " src="http://i263.photobucket.com/albums/ii150/mohamedrias/Submitsitemap.png" /></div>
<p>Fill the form and click submit.</p>
<p>So we have successfully added our Blog to Google. but it&#8217;s just not enough. We need to submit our Blog Sitemap to Google.</p>
<p>Step 2 : Now we need to add our Blogger Blog sitemap to Google Webmasters.</p>
<p>Why we need to submit our Blog to Google Webmasters ?</p>
<p>Google Webmaster provide us some useful tools which helps us to know lots of things about our site. I will explain only top 2 tools :</p>
<p>* Google Crawling info</p>
<p>- when Google Indexed our Blog.</p>
<p>- Broken or Invalid Urls which Google unable to crawl</p>
<p>* Top search queries</p>
<p>
<div style="TEXT-ALIGN: center"><img title=" Other Important Features of Google Webmasters" alt=" Other Important Features of Google Webmasters" src="http://i263.photobucket.com/albums/ii150/mohamedrias/othergooglewebmastersfeatures.png" target="_blank" /></div>
<p>- with this tool we can find the top queries that drive traffic to your site and where your site is included in the top search results. This will let you learn how users are finding your site.</p>
<p>I hope with the small introduction you might have learned the importance of Google Webmaster. So let us see how to Add our Blog there.</p>
<p>We can do this in two methods. First I will tell how to do it manually</p>
<p>Login to <a title=" click sign in to Google Webmasters tool" href="http://www.google.com/webmasters/" target="_blank">Google Webmaster</a> with your Google Account .</p>
<p>It will take you to Dashboard page. There you can see a box saying &#8221; Click here to add your site&#8221; . In that box type your full blog url with <span style="COLOR: rgb(255,0,0)">http://</span> and click add site.</p>
<p>
<p class="alert">You know With <a style="COLOR: rgb(255,0,0)" href="http://draft.blogger.com/" target="_blank">Draft Blogge</a>r we can automatically submit our blog to Google Webmasters </p>
<p>
<div style="TEXT-ALIGN: center"><img title=" Submit Blogger Blog to Google webmasters through Darft Blogger" alt=" Submit Blogger Blog to Google webmasters through Darft Blogger" src="http://i263.photobucket.com/albums/ii150/mohamedrias/sitemapthroughdraftblogger.png" /></div>
<p>So draft blogger will automatically add our blog url to Google Webmasters.</p>
<p>step 3 :</p>
<p>After adding your site url , navigate to dashboard again. One the right side of your site , you will find two links ( ADD and Verify ).</p>
<p>Now click &#8221; Verify &#8221; , it will take you to new page saying</p>
<p>
<div style="TEXT-ALIGN: center"><img title=" Copy and Paste the given code in your Blogger template" style="WIDTH: 547px; HEIGHT: 266px" alt=" Copy and paste the meta tag in your blogger template" src="http://i263.photobucket.com/albums/ii150/mohamedrias/VerifyingyourBloggerBlog.png" /></div>
<p>In this select &#8221; Add Meta Tag &#8221; and copy and paste the code in your Blogger template. Then save your Blogger template and click verify.</p>
<p>step 4 : Adding Blog Sitemap to Google Webmasters</p>
<p>Now navigate to Dashboard again , there click add sitemap link . It will take you to a new page , There click &#8221; Add a sitemap&#8221; . Then select &#8221; Add General Web Sitemap&#8221; . and do as instructed.</p>
<p>
<div style="TEXT-ALIGN: center"><img alt="" src="http://i263.photobucket.com/albums/ii150/mohamedrias/submittingsitemap.png" /></p>
<p>that&#8217;s it. So we have successfully added our Blog sitemaps to Google.</p>
<p>Now we can see indexed stats of our Blog sitemap .</p>
<p>
<div style="TEXT-ALIGN: left">After submitting the sitemap , you will see indexed stats like these</p>
</div>
<div style="TEXT-ALIGN: center"><img title=" INdexed stats of sitemap" alt=" This is How the indexed stats of our sitemap will shown" src="http://i263.photobucket.com/albums/ii150/mohamedrias/sitemapstats.png" /></div>
<p>If you have any trouble let me know , I will try my best to help you guys.</p>
</div>
<p></span></p>
<p>Related posts:<ol>
<li><a href='http://www.techieblogger.com/2008/09/google-translation-flags-widget-for-blogger-blog.html' rel='bookmark' title='Google translation Flags Widget for Blogger Blog'>Google translation Flags Widget for Blogger Blog</a></li>
<li><a href='http://www.techieblogger.com/2009/05/backup-blogger-blog-widgets-an-easy-video-tutorial.html' rel='bookmark' title='backup Blogger Blog Widgets &#8211; an easy video tutorial'>backup Blogger Blog Widgets &#8211; an easy video tutorial</a></li>
<li><a href='http://www.techieblogger.com/2009/12/write-for-techie-blogger-and-get-full-google-adsense-revenue.html' rel='bookmark' title='Write for Techie Blogger and get 100% Google Adsense revenue'>Write for Techie Blogger and get 100% Google Adsense revenue</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.techieblogger.com/2008/09/submit-blogger-blog-sitemap-to-google-webmasters.html/feed</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
	</channel>
</rss>

