<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6682659236309068895</id><updated>2026-02-28T13:36:39.902+05:30</updated><category term="Customize blog"/><category term="navbar"/><category term="HTML code"/><category term="Advertise and notify"/><category term="Links"/><category term="favicon"/><title type='text'>Blogger Tips and Tricks</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-6862009980401576278</id><published>2009-11-27T23:14:00.002+05:30</published><updated>2009-11-27T23:20:57.195+05:30</updated><title type='text'>How to style borders?</title><content type='html'>&lt;table class=&quot;fp-main-img&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;br /&gt;
&lt;img alt=&quot;How to style bordes?&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoMzLqyW_DRM222RgDI41rwbmRkSEXvOm1Q_iFuxrf9FLGiFqdBsfbu_pUw0G-hJJ5LJ6AE2DUsYbXdE27TP0bhy-gV09XZmAxczxNRLkHU-07xeTEBdLsOZdezDrk6eEitgzcCNnbotc/s1600/borders+in+blogger+post.jpg&quot; title=&quot;Learn how to style borders.&quot; /&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;Often while editing you template you must have come across something like &lt;span style=&quot;color:blue;&quot;&gt;border: 1px solid #333333&lt;/span&gt;. What this means is &quot;make a border 1 pixel wide, with solid line, and color of line is #333333. In this tutorial we will tell what styles you can apply to the borders and how to increase the line width. Finally we will also tell about outlines.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;Increase the border width&lt;/b&gt;&lt;br /&gt;
To increase the border width just increment the pixel value. For e.g. to make a border 2 pixel wide &lt;br /&gt;
&lt;div class=&#39;codes&#39;&gt;border: 2px solid #333333;&lt;/div&gt;The higher the pixel value the wider the border. &lt;span style=&quot;border:5px solid #333;&quot;&gt;border: 5px solid #333333&lt;/span&gt; will have five times wider border than &lt;span style=&quot;border: 1px solid #333333;&quot;&gt;border: 1px solid #333333&lt;/span&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Change the border style&lt;/b&gt;&lt;br /&gt;
Following are the styles available for border.&lt;br /&gt;
&lt;br /&gt;
&lt;ol  style=&quot;line-height:3;&quot;&gt;&lt;li&gt;&lt;div style=&#39;border:3px solid #b90000&#39;&gt;border:3px solid #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px double #b90000&#39;&gt;border:3px double #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px inset #b90000&#39;&gt;border:3px inset #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px dotted #b90000&#39;&gt;border:3px dotted #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px groove #b90000&#39;&gt;border:3px groove #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px outset #b90000&#39;&gt;border:3px outset #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px dashed #b90000&#39;&gt;border:3px dashed #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;&lt;div style=&#39;border:3px ridge #b90000&#39;&gt;border:3px ridge #b90000;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;b&gt;Outlines&lt;/b&gt;&lt;br /&gt;
In addition to borders you can also have outlines. Here is an e.g. of outline.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&#39;outline:#b90000 dotted 3px;&#39;&gt;outline:#b90000 dotted 3px;&lt;/div&gt;&lt;br /&gt;
Confused, do they look same. Here is another e.g. to show the difference.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&#39;border:3px solid #333; outline:#b90000 dotted 3px;&#39;&gt;border:3px solid #333; outline:#b90000 dotted 3px;&lt;/div&gt;&lt;br /&gt;
The inner gray line designates border, while the outer red line is the outline.</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/6862009980401576278/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-style-borders.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6862009980401576278'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6862009980401576278'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-style-borders.html' title='How to style borders?'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoMzLqyW_DRM222RgDI41rwbmRkSEXvOm1Q_iFuxrf9FLGiFqdBsfbu_pUw0G-hJJ5LJ6AE2DUsYbXdE27TP0bhy-gV09XZmAxczxNRLkHU-07xeTEBdLsOZdezDrk6eEitgzcCNnbotc/s72-c/borders+in+blogger+post.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-7006524209358732161</id><published>2009-11-17T18:31:00.000+05:30</published><updated>2009-11-17T18:31:39.096+05:30</updated><title type='text'>Video tutorials on their way.</title><content type='html'>&lt;img alt=&quot;Video tutorial.&quot; class=&quot;fp-main-img&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjg4h1MnU-_2WyIcs6t2M3XepdGhzU5SQMJJwjlM0IddvV3pRv8FMu89Y5kDexTDAfkTT1_lfVtz6MkHqHz8scmMkXfRxttVsJ_5OYqNmnYuwlz1ARR_nmIvMgiu_z_AdeMsvzUUV3Ywhc/s320/Video+tutorials.jpg&quot; title=&quot;Video tutorials are coming.&quot; /&gt;&lt;br /&gt;
Yesterday a friend of mine was watching me blog. He is particularly new to blogger. He had tried the &#39;&lt;a href=&#39;http://bloggerfunda.blogspot.com/2009/10/remove-blogger-navbar-bar.html&#39;&gt;Remove the blogger navbar&#39;&lt;/a&gt; hack and was not able to do it. I was surprised. It&#39;s such an easy hack, just copy paste the code and you are done. I asked him where he faced the problem. The reply: &quot;Don&#39;t know. I didn&#39;t even understand what a template is.&quot; So I decided to add a video tutorial section. For the next coming days I will be busy making video tutorials for the older posts. This also means less number of posts per week and more work for me. Well I will try my best to keep up my work.</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/7006524209358732161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/video-tutorials-on-their-way.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/7006524209358732161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/7006524209358732161'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/video-tutorials-on-their-way.html' title='Video tutorials on their way.'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjg4h1MnU-_2WyIcs6t2M3XepdGhzU5SQMJJwjlM0IddvV3pRv8FMu89Y5kDexTDAfkTT1_lfVtz6MkHqHz8scmMkXfRxttVsJ_5OYqNmnYuwlz1ARR_nmIvMgiu_z_AdeMsvzUUV3Ywhc/s72-c/Video+tutorials.jpg" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-1325191555321513992</id><published>2009-11-16T23:01:00.019+05:30</published><updated>2009-11-17T18:05:45.751+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Customize blog"/><category scheme="http://www.blogger.com/atom/ns#" term="Links"/><title type='text'>How to open all links in a new window?</title><content type='html'>&lt;table class=&quot;fp-main-img&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;All links in new window.&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhowkaeyb5ASEmDXIepoqEYTrf6_lMQ0p4y37psrHf0qKM8peDzlfm0YgU4llInebG1dxqMkcdocxBd0zcZhC6gOKHHdCHCCHZJo60O344EnI2Dw-WNvBNHEFB2ZYJspWPLxF4CqXDdnGc/s320/Links.jpg&quot; title=&quot;All links in new window.&quot; /&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=qNPyuclTCzI&quot; target=&quot;_blank&quot; title=&quot;Watch how to open all links in a new window?&quot;&gt;Watch the video tutorial.&lt;/a&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;If you want to open all your links in a new window here is how to do it. But I don&#39;t recommend this hack. All your links - older post, newer post, home and all in-post links will open in a new window. This can be really annoying at times. As a thumb rule you should open external links in a new window and internal links in the same window. Anyways if anyone of you find this thing useful do tell me.   &lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Goto your template. Dashboard &amp;gt; layout &amp;gt; Edit HTML&lt;/li&gt;
&lt;li&gt;Look for this line&lt;/li&gt;
&lt;div class=&quot;codes&quot;&gt;&amp;lt;head&amp;gt;  &lt;/div&gt;&lt;li&gt;Now immediately below this paste this line&lt;/li&gt;
&lt;div class=&quot;codes&quot;&gt;&amp;lt;base target=&#39;_blank&#39;/&amp;gt;  &lt;/div&gt;&lt;li&gt;Save your template and you are done.&lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
I will still recommend that you do not use this hack. Whenever you want to open your links in other window do it like this.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;codes&quot;&gt;&amp;lt;a href=&#39;&#39; title=&#39;&#39; target=&#39;_blank&#39;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/1325191555321513992/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-open-all-links-in-new-wimdow.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/1325191555321513992'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/1325191555321513992'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-open-all-links-in-new-wimdow.html' title='How to open all links in a new window?'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhowkaeyb5ASEmDXIepoqEYTrf6_lMQ0p4y37psrHf0qKM8peDzlfm0YgU4llInebG1dxqMkcdocxBd0zcZhC6gOKHHdCHCCHZJo60O344EnI2Dw-WNvBNHEFB2ZYJspWPLxF4CqXDdnGc/s72-c/Links.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-3193035324561237558</id><published>2009-11-11T23:59:00.013+05:30</published><updated>2009-11-17T23:29:48.221+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Customize blog"/><category scheme="http://www.blogger.com/atom/ns#" term="favicon"/><title type='text'>How to add favicon to blogger blog?</title><content type='html'>&lt;table class=&quot;fp-main-img&quot; &gt;&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;favicon blogger&quot; border=&quot;1&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguqY08ly8dqNSvikWM8WW9UBc_AvodkeB4IWu0yiZaTBH9Jd82huc1krEvxXWMufMKE2ewtT6mOCi7Zkn8bmryfO9SgJpmdwASbJxfMkrvt2DI6lowYo3vCPLPggSNz9R02KdmYPZEzME/s320/add+favicon+to+blogger.jpg&quot; title=&quot;Google favicon.&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&#39;http://www.youtube.com/watch?v=am2FssyYLYc&#39; title=&#39;Watch how to add favicon to blogger blog?&#39;&gt;Watch the video tutorial.&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;Favicon is the small image beside the url (as you can see in the image). Any image .jpg, .bmp, and even animated .gif images can be used as favicon. Here is the easiest way to add it to your blog. &lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;ol style=&quot;line-height: 2.5;&quot;&gt;&lt;li&gt;Goto your template. &lt;i&gt;Dashboard &amp;gt; layout &amp;gt; Edit HTML&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Replace the text in red with the url of your image in the code below and then copy it.&lt;/li&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;link href=&quot;&lt;span style=&quot;color: red;&quot;&gt;url_of_your_image_here&lt;/span&gt;&quot; rel=&quot;shortcut icon&quot;&amp;gt;&amp;lt;/link&amp;gt;   &lt;/div&gt;&lt;li&gt;Find the line&lt;/li&gt;
&lt;div class=&quot;codes&quot;&gt;&amp;lt;/head&amp;gt;  &lt;/div&gt;&lt;li&gt;and immediately above it paste the code modified in step 2.&lt;/li&gt;
&lt;li&gt;Save your template.&lt;/li&gt;
&lt;/ol&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/3193035324561237558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-add-favicon-to-blogger-blog.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/3193035324561237558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/3193035324561237558'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-add-favicon-to-blogger-blog.html' title='How to add favicon to blogger blog?'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguqY08ly8dqNSvikWM8WW9UBc_AvodkeB4IWu0yiZaTBH9Jd82huc1krEvxXWMufMKE2ewtT6mOCi7Zkn8bmryfO9SgJpmdwASbJxfMkrvt2DI6lowYo3vCPLPggSNz9R02KdmYPZEzME/s72-c/add+favicon+to+blogger.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-8081291626292227127</id><published>2009-11-11T11:04:00.008+05:30</published><updated>2009-11-12T19:54:38.960+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML code"/><title type='text'>How to properly write code in blogger blog post? (Part 2/2)</title><content type='html'>&lt;div class=&quot;fp-note&quot;&gt;&lt;div&gt;Writing code in post part 2/2.&lt;br /&gt;
&lt;/div&gt;In first part we told you &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-write-htmljavascript-code-in.html&quot;&gt;how to write html/javascript code in blogger blog post&lt;/a&gt;. In this part we will show you how to properly write the code in post i.e. how  to make your code standout the regular text.&lt;br /&gt;
&lt;/div&gt;&lt;img alt=&quot;write html/javascript code in blogger blog post&quot; class=&quot;fp-main-img&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2k15HNQa0Mw-Of8cs6TTctwrSM0zCs45pSsH5zdOXaGUdR1UEfJIfdbbgHK-4YP3lAUXbS9RsDVjBwm4JOLp5mBMrIm9cG2JiWJ2sNBZPJb_DOQ3S6RohWLE8ZX5E6j_ZdDdKvdFoD24/s320/Document+Code+HTML.jpg&quot; /&gt;After you have placed your code in the post, highlight it so that users can easily spot it. Often while reading others post I have face this peculiar problem. The authors do not highlight their code. This is specially problematic when they are referring to a single line of code. You can apply a lot of styles make it bold, increase or decrease font, change the font altogether... Pretty old stuff...isn&#39;t it. This is how we like it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Consider this (&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#s1&quot;&gt;Style 1&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;//your code here&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Or this (&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#s2&quot;&gt;Style 2&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;codes&quot;&gt;//your code here&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Or even this... (&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#s3&quot;&gt;Style 3&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;code&quot;&gt;Title here&lt;br /&gt;
&lt;div&gt;&lt;code&gt;&lt;br /&gt;
//your code here&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
Neat code presented elegantly. &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html&quot;&gt;Read on&lt;/a&gt; to know how to apply these styles.&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#s1&quot; name=&quot;s1&quot;&gt;Code container style 1&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;ol style=&quot;line-height: 2.5;&quot;&gt;&lt;li&gt;Copy the code&lt;/li&gt;

&lt;div class=&quot;codecp&quot;&gt;/* Code container by http://bloggerfunda.blogspot.com */ .codecp{   border: rgb(79,129,189) 1px dotted;   background-color:#efefef;   padding: 3px;   min-width: 98%; } 
&lt;/div&gt;
&lt;li&gt;Goto your template. &lt;i&gt;Dashboard &amp;gt; layout &amp;gt; Edit HTML&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Search the line (just ctrl+f it).&lt;/li&gt;

&lt;div class=&quot;codes&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;  
&lt;/div&gt;
&lt;li&gt;and immediately above it paste the code copied in step 1.&lt;/li&gt;
&lt;li&gt;Save your template.&lt;/li&gt;
&lt;/ol&gt;Now whenever you have to use this container in your post, write it as follows&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;div class=&#39;codecp&#39;&amp;gt;&lt;br /&gt;
//your code goes here&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/div&gt;For e.g. if you are writing &lt;span style=&quot;color: blue;&quot;&gt;&amp;lt;html&amp;gt;&amp;lt;/html&amp;gt;&lt;/span&gt;, you need to write it as&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;div class=&#39;codecp&#39;&amp;gt;&lt;br /&gt;
&amp;amp;lt;html&amp;amp;gt;&amp;amp;lt;/html&amp;amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#s2&quot; name=&quot;s2&quot;&gt;Code container style 2&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;ol style=&quot;line-height: 2.5;&quot;&gt;&lt;li&gt;Grab the &lt;a href=&quot;http://www.ziddu.com/download/7315402/blogger-post-code.png.html&quot; title=&quot;download code image&quot;&gt;image from here&lt;/a&gt; and upload it to your &lt;a href=&quot;http://mydatanest.com/&quot; rel=&quot;external nofollow&quot;&gt;mydatanest&lt;/a&gt; account. Make sure you keep the image access public. Copy the hotlink url.&lt;/li&gt;
&lt;li&gt;Replace &lt;span style=&quot;color: blue;&quot;&gt;url of image here&lt;/span&gt; text in the code below with url of image uploaded in step 1.&lt;/li&gt;

&lt;div class=&quot;codecp&quot;&gt;&lt;textarea style=&quot;height: 250px; width: 98%;&quot;&gt;
/* Code container by http://bloggerfunda.blogspot.com */
 .codes{
    border: rgb(79,129,189) 1px dotted;
    background-color:#efefef;
    padding: 3px;   min-width: 98%;
    background-image:url(url of image here);
    background-repeat:no-repeat;
    background-position:bottom right;
    padding-bottom:32px;
 } &lt;/textarea&gt; 
&lt;/div&gt;
&lt;li&gt;Copy the above modified code.&lt;/li&gt;
&lt;li&gt;Goto your template. &lt;i&gt;Dashboard &amp;gt; layout &amp;gt; Edit HTML&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Search the line (just ctrl+f it).&lt;/li&gt;

&lt;div class=&quot;codes&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;  
&lt;/div&gt;
&lt;li&gt;and immediately above it paste the code copied in step 3.&lt;/li&gt;
&lt;li&gt;Save your template.&lt;/li&gt;
&lt;/ol&gt;Now whenever you have to use this container in your post, write it as follows&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;div class=&#39;codes&#39;&amp;gt;&lt;br /&gt;
//your code goes here&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/div&gt;For e.g. if you are writing &lt;span style=&quot;color: blue;&quot;&gt;&amp;lt;html&amp;gt;&amp;lt;/html&amp;gt;&lt;/span&gt;, you need to write it as&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;div class=&#39;codes&#39;&amp;gt;&lt;br /&gt;
&amp;amp;lt;html&amp;amp;gt;&amp;amp;lt;/html&amp;amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#s3&quot; name=&quot;s3&quot;&gt;Code container style 3&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;ol style=&quot;line-height: 2.5;&quot;&gt;&lt;li&gt;Grab the &lt;a href=&quot;http://www.ziddu.com/download/7315402/blogger-post-code.png.html&quot; title=&quot;download code image&quot;&gt;image from here&lt;/a&gt; and upload it to your &lt;a href=&quot;http://mydatanest.com/&quot; rel=&quot;external nofollow&quot;&gt;mydatanest&lt;/a&gt; account. Make sure you keep the image access public. Copy the hotlink url.&lt;/li&gt;
&lt;li&gt;Replace &lt;span style=&quot;color: blue;&quot;&gt;url of image here&lt;/span&gt; text in the code below with url of image uploaded in step 1.&lt;/li&gt;

&lt;div class=&quot;codecp&quot;&gt;&lt;textarea style=&quot;height: 400px; width: 98%;&quot;&gt;
 /* Code container by http://bloggerfunda.blogspot.com */
  .code{
    border: rgb(79,129,189) 1px solid;
    background-color:#efefef;
    padding: 3px;
    min-width: 98%;
    background-image:url(url of image here);
    background-repeat:no-repeat;
    background-position:bottom right;
    padding-bottom:32px;
  }

  .code div{
    border: rgb(79,129,189) 1px dotted;
    background-color:#fff;
    overflow: auto;
    padding: 3px;
  }

  .code p{
    color:rgb(79,129,189);
    font-weight:bold;
  } &lt;/textarea&gt; 
&lt;/div&gt;
&lt;li&gt;Copy the above modified code.&lt;/li&gt;
&lt;li&gt;Goto your template. &lt;i&gt;Dashboard &amp;gt; layout &amp;gt; Edit HTML&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Search the line (just ctrl+f it).&lt;/li&gt;

&lt;div class=&quot;codes&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;  
&lt;/div&gt;
&lt;li&gt;and immediately above it paste the code copied in step 3.&lt;/li&gt;
&lt;li&gt;Save your template.&lt;/li&gt;
&lt;/ol&gt;Now whenever you have to use this container in your post, write it as follows&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;div class=&#39;code&#39;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Title here&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
//your code here&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/div&gt;For e.g. if you are writing &lt;span style=&quot;color: blue;&quot;&gt;&amp;lt;html&amp;gt;&amp;lt;/html&amp;gt;&lt;/span&gt;, you need to write it as&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;&amp;lt;div class=&#39;code&#39;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;HTML example&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
&amp;amp;lt;html&amp;amp;gt;&amp;amp;lt;/html&amp;amp;gt;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/8081291626292227127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/8081291626292227127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/8081291626292227127'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html' title='How to properly write code in blogger blog post? (Part 2/2)'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2k15HNQa0Mw-Of8cs6TTctwrSM0zCs45pSsH5zdOXaGUdR1UEfJIfdbbgHK-4YP3lAUXbS9RsDVjBwm4JOLp5mBMrIm9cG2JiWJ2sNBZPJb_DOQ3S6RohWLE8ZX5E6j_ZdDdKvdFoD24/s72-c/Document+Code+HTML.jpg" height="72" width="72"/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-6803852770289750098</id><published>2009-11-11T00:09:00.013+05:30</published><updated>2009-11-12T19:41:30.555+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Customize blog"/><category scheme="http://www.blogger.com/atom/ns#" term="navbar"/><title type='text'>Control opacity of blogger-navbar</title><content type='html'>&lt;img alt=&quot;Control opacity of navbar animated.&quot; class=&quot;fp-main-img&quot; src=&quot;http://www.mydatanest.com/files/download/bloggerfunda/24083_x1fkd/navbar_opacity_animation.gif&quot; title=&quot;Navbar opacity demo&quot; /&gt;Recently Blogger released &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/new-transparent-navbar-styles-from.html&quot;&gt;new transparent navbar styles&lt;/a&gt;. It is a nice move on blogger&#39;s part to encourage its users put back the navbar again. Users used to &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/10/remove-blogger-navbar-bar.html&quot;&gt;hide the blogger navbar&lt;/a&gt; as it did not match their template. The transparent navbars mix with the template colors and hence give a better look.&lt;br /&gt;
There is one thing though that I still think is missing. The level of transparency can not be controlled. Here is a work around to achieve this.&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First you need to modify the code below to select the desired level of transparency.&lt;br /&gt;
&lt;br /&gt;
The line &lt;span style=&quot;color:blue;&quot;&gt;opacity:0.5;&lt;/span&gt; is to control opacity in firefox.&lt;br /&gt;
The value of opacity ranges from &lt;i&gt;0.0&lt;/i&gt; to &lt;i&gt;1.0&lt;/i&gt;&lt;br /&gt;
0.0 means more transparency and 1.0 means more opacity.&lt;br /&gt;
Replace 0.5 in code below with any no within specified range.&lt;br /&gt;
&lt;br /&gt;
Similarly line &lt;span style=&quot;color:blue;&quot;&gt;filter:alpha(opacity=50);&lt;/span&gt; is to control opacity in IE.&lt;br /&gt;
The value of opacity ranges from &lt;i&gt;0&lt;/i&gt; to &lt;i&gt;100&lt;/i&gt;&lt;br /&gt;
0 means more transparency and 100 means more opacity.&lt;br /&gt;
Replace 50 in code below with any no within specified range.&lt;br /&gt;
&lt;ol style=&quot;line-height:2.5;&quot;&gt;&lt;li&gt;Modify the code below as per your need and copy it&lt;/li&gt;
&lt;div class=&quot;codecp&quot;&gt;&lt;textarea style=&quot;width: 98%; height:80px;&quot;&gt;
#navbar-iframe {
    opacity:0.5;
    filter:alpha(opacity=50);
}&lt;/textarea&gt;&lt;/div&gt;&lt;li&gt;Goto your template. &lt;i&gt;Dashboard &amp;gt; layout &amp;gt; Edit HTML&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;Search the line (just ctrl+f it).&lt;/li&gt;
&lt;div class=&quot;codes&quot;&gt;]]&amp;gt;&amp;lt;/b:skin&amp;gt;  &lt;/div&gt;&lt;li&gt;and immediately above it paste the code copied in step 1.&lt;/li&gt;
&lt;li&gt;Save your template and your are done.&lt;/li&gt;
&lt;/ol&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/6803852770289750098/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/control-opacity-of-blogger-navbar.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6803852770289750098'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6803852770289750098'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/control-opacity-of-blogger-navbar.html' title='Control opacity of blogger-navbar'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-4034503135060620118</id><published>2009-11-10T17:34:00.093+05:30</published><updated>2009-11-12T19:51:28.525+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML code"/><title type='text'>How to write html/javascript code in blogger blog post?</title><content type='html'>&lt;img alt=&quot;write html/javascript code in blogger blog post&quot; class=&quot;fp-main-img&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2k15HNQa0Mw-Of8cs6TTctwrSM0zCs45pSsH5zdOXaGUdR1UEfJIfdbbgHK-4YP3lAUXbS9RsDVjBwm4JOLp5mBMrIm9cG2JiWJ2sNBZPJb_DOQ3S6RohWLE8ZX5E6j_ZdDdKvdFoD24/s320/Document+Code+HTML.jpg&quot; /&gt;If you have ever tried writing  HTML/Javascript code in your blogger blog post then you might have found that it does not appear as code in the post. Instead the code is interpreted and displayed.&lt;br /&gt;
The above problem can be simply fixed by replacing &lt;span style=&quot;color: blue;&quot;&gt;&amp;lt;&lt;/span&gt; with  &lt;span style=&quot;color: blue;&quot;&gt;&amp;amp;lt;&lt;/span&gt; and  &lt;span style=&quot;color: blue;&quot;&gt;&amp;gt;&lt;/span&gt; by  &lt;span style=&quot;color: blue;&quot;&gt;&amp;amp;lt;&lt;/span&gt; . Here we are providing a few elegant ways to do this. &lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;We will start with the toughest one first. If you like easy things just &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-write-htmljavascript-code-in.html#method4&quot;&gt;skip&lt;/a&gt; to the last step. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Method 1&lt;/b&gt;&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Open &lt;i&gt;notepad&lt;/i&gt; and paste your code in it.&lt;/li&gt;
&lt;li&gt;Hit &lt;i&gt;ctrl+h&lt;/i&gt; or choose &lt;i&gt;Edit &amp;gt; Replace&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;In &lt;i&gt;Find what:&lt;/i&gt; box type &lt;span style=&quot;color: blue;&quot;&gt;&amp;lt;&lt;/span&gt; and in &lt;i&gt;Replace with: box&lt;/i&gt; type &lt;span style=&quot;color: blue;&quot;&gt;&amp;amp;lt; &lt;br /&gt;
&lt;/span&gt; and hit &lt;i&gt;Replace all&lt;/i&gt; button&lt;/li&gt;

&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2AAffpyspViYDMyLRgty6AqQhMNPtam2x_tT9QQejJpCpJkiqluk5gjsuLCOVS5L6y-VGySPHojdkz8SkhOonPCCOmdy7GymOjok9hfLuk-v737kkxiIU1fLTvoDzDE087qtOn864U-c/s320/Blogger+-+notepad+search+-+replace.jpg&quot; /&gt;                 
&lt;/div&gt;
&lt;li&gt;Similarly for &amp;gt; type &lt;span style=&quot;color: blue;&quot;&gt;&amp;gt;&lt;/span&gt; in &lt;i&gt;Find what:&lt;/i&gt; box and &lt;span style=&quot;color: blue;&quot;&gt;&amp;amp;gt;&lt;/span&gt; in &lt;i&gt;Replace with:&lt;/i&gt; box.&lt;/li&gt;
&lt;li&gt;Your are done, the code is ready to be used in your post.&lt;/li&gt;
&lt;/ol&gt;&lt;br /&gt;
&lt;b&gt;Method 2&lt;/b&gt;&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Paste your code in the text box below and hit &lt;i&gt;Convert&lt;/i&gt; button.&lt;/li&gt;
&lt;textarea id=&quot;inp&quot; style=&quot;height: 350px; width: 98%;&quot;&gt;&lt;/textarea&gt;                 
&lt;div style=&quot;padding-top: 5px; text-align: right;&quot;&gt;&lt;input id=&quot;convertButton&quot; onclick=&quot;convert();&quot; type=&quot;button&quot; value=&quot;Convert&quot; /&gt;                
&lt;/div&gt;
&lt;li&gt;Done! Your code is ready to be pasted in your blogger blog post.&lt;/li&gt;
&lt;/ol&gt;For easy access we suggest that you bookmark (ctrl+d) this page.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Method 3&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The above method requires you to visit this page whenever you want to convert your code. This is waste of time and will also require your to have an active internet connection.&lt;br /&gt;
Let&#39;s make things a bit easier download html converter now.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.ziddu.com/download/7305752/Converter.zip.html&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidRcviFt1kHvOE5b3CcGr_ZIIl8ilQ-jt-HxT6lo1XSt9Ma_KiZ-4k16-1lb7_bT__Eojm_vG5sumTG3mbagdoG5UltFMszVNVHikl9zzYXOBTjlzZ4yeQDd-vpLcvrr6ac2ZbPnKsv48/s320/download.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;&lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-write-htmljavascript-code-in.html&quot; name=&quot;method4&quot;&gt;Method 4&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
The next method is the official solution from blogger. If you need to write html code in your post just select &lt;i&gt;post options&lt;/i&gt; and in &lt;i&gt;compose settings&lt;/i&gt; choose &lt;i&gt;Show HTML literally&lt;/i&gt;. Any code now written will not be interpreted as HTML.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img border=&quot;0&quot; height=&quot;217px&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQKxoljFMkLnbLRGXRmvi1eaJaA_dHcgSKILPX9nYL_P-_TSZUOTWy_6mJBy1CVt_-oMWTGTUXJlPjS0KvlC0cOrNmygQPq-9RyTwnKH6BbDTXmuPwakRD4Zhtl0A5rOlrL0fuaqMe42M/s640/Post+options+in+blogger.jpg&quot; width=&quot;500px&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;script src=&quot;http://sites.google.com/site/bloggerfunda/scripts-1/Writehtmlcodeinpost-converter.js&quot; type=&quot;text/javascript&quot;&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;div class=&quot;fp-note&quot;&gt;&lt;div&gt;End of part 1/2 of how to write code series.&lt;br /&gt;
&lt;/div&gt;In the next part we will tell a few &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/11/how-to-properly-write-code-in-blogger_11.html&quot;&gt;ways to highlight your code&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/4034503135060620118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-write-htmljavascript-code-in.html#comment-form' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/4034503135060620118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/4034503135060620118'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/how-to-write-htmljavascript-code-in.html' title='How to write html/javascript code in blogger blog post?'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh2k15HNQa0Mw-Of8cs6TTctwrSM0zCs45pSsH5zdOXaGUdR1UEfJIfdbbgHK-4YP3lAUXbS9RsDVjBwm4JOLp5mBMrIm9cG2JiWJ2sNBZPJb_DOQ3S6RohWLE8ZX5E6j_ZdDdKvdFoD24/s72-c/Document+Code+HTML.jpg" height="72" width="72"/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-1010040898528646897</id><published>2009-11-01T13:55:00.005+05:30</published><updated>2009-11-13T14:12:56.579+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Customize blog"/><category scheme="http://www.blogger.com/atom/ns#" term="navbar"/><title type='text'>New Transparent Navbar Styles From Blogger</title><content type='html'>Blogger has introduced two new navbar styles - Transparent Dark and Transparent Light. Previously only a few styles were available - Blue, Black, Tan, and Silver. These styles couldn&#39;t readily mix with many of the blog designs. So blogger introduced the transparent styles.&lt;br /&gt;
&lt;br /&gt;
Here is what the have to say about it&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;codecp&quot;&gt;we have added two new color schemes — &quot;Transparent Light&quot; and &quot;Transparent Dark.&quot; These new color schemes take advantage of the ability of modern browsers to render transparency (a technique known to web designers as &quot;alpha blending&quot;). This allows the navbar background to blend together with your blog&#39;s background color and pattern. The &quot;Transparent Light&quot; color scheme has a semi-transparent white background, producing subtle pastel colors, while the background of &quot;Transparent Dark&quot; is a semi-transparent black that produces a shaded look.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img alt=&quot;blogger navbar light&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBhmMjptQ02RxWd_3Hi5XfqbHfBK5f_4z7lp-CsbVhOPu5El-jPEr69mVioP0_qLOFhzVzsZTMq8mcAlkJLadJtAI9urCRY2o8ogFz9bAnIAuh7m4msXTa4eYdrZrAHO1DevcQHa29N7c/s640/blogger+navbar.jpg&quot; title=&quot;Blogger Navbar Light.&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img alt=&quot;blogger navbar dark&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgitFMmdb4_wFyJAU1PCmGVrbykKgK-bM7HWlOWkx4z2OhNzz-14UPdD7V0uMsSg1Ccg0AoStqyMvX8pIqzNpmLx6grEpyF1S8z5ipSVADquvswEQSrVox1-RxrskuElHjcZHtsLqc34jk/s640/blogger+navbar+dark.jpg&quot; title=&quot;Blogger Navbar Dark.&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
In addition, we&#39;ve simplified and slimmed down the look of all the navbars, so that they will be more likely to harmonize with the aesthetics of your blog.&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Most bloggers prefer to &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/10/remove-blogger-navbar-bar.html&quot; target=&quot;_blank&quot; tilte=&quot;See here how to hide the blogger navbar.&quot;&gt;hide the blogger navbar&lt;/a&gt; but now blogger has given a reason to put it back again.</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/1010040898528646897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/new-transparent-navbar-styles-from.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/1010040898528646897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/1010040898528646897'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/new-transparent-navbar-styles-from.html' title='New Transparent Navbar Styles From Blogger'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhBhmMjptQ02RxWd_3Hi5XfqbHfBK5f_4z7lp-CsbVhOPu5El-jPEr69mVioP0_qLOFhzVzsZTMq8mcAlkJLadJtAI9urCRY2o8ogFz9bAnIAuh7m4msXTa4eYdrZrAHO1DevcQHa29N7c/s72-c/blogger+navbar.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-6374652015550161337</id><published>2009-10-09T19:53:00.003+05:30</published><updated>2009-11-12T19:37:51.115+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Customize blog"/><category scheme="http://www.blogger.com/atom/ns#" term="navbar"/><title type='text'>Remove the blogger navigation bar.</title><content type='html'>At the top of your page you may see a bar this is called &#39;Blogger Navbar&#39;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img alt=&quot;Blogger with navbar.&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQzoYQGzZ90gx1Fef893rNirwzD799-UvEg1fbtTA4VHLHwx0zMA3ha7gT8sPzheexxT8UQP0DIVlk69eFTwJCJyh3_mTgIdleFyxm7b0z52AxffjXA2R3vJWJcq2QdT37vlEthhXFCk/s400/navbar+present.jpg&quot; title=&quot;Blogger with navbar.&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
If you don&#39;t like you can remove it just by adding a few lines of CSS (Cascading Style Sheet) code.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img alt=&quot;Blogger after removing navbar.&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhVFAi4opniYoaQwWKO7b7_kTsVemXazCZUuEfJVuhGXJDMeiC4b9_YjDXkrKyA-K2kdD7eM1jxoX8naZCFdrA7-nrNqBXkAHiEk65VCB3fsaVeTDeqSm0rZNHewPvZbsMIlvwJ3MktXW0/s400/navbar+absent.jpg&quot; title=&quot;Blogger after removing navbar.&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
To remove the navbar&lt;br /&gt;
&lt;br /&gt;
1. Goto your blogger dashboard.&lt;br /&gt;
2. Goto Layout &amp;gt; Edit HTML.&lt;br /&gt;
3. Look out for the following lines of code&lt;br /&gt;
&lt;div class=&quot;code&quot;&gt;&lt;code&gt;&lt;br /&gt;
&amp;lt;b:skin&amp;gt;&amp;lt;![CDATA[/*&lt;br /&gt;
-----------------------------------------------&lt;br /&gt;
Blogger Template Style&lt;br /&gt;
Name: Stretch Denim&lt;br /&gt;
Designer: Darren Delaye&lt;br /&gt;
URL: www.DarrenDelaye.com&lt;br /&gt;
Date: 11 Jul 2006&lt;br /&gt;
-----------------------------------------------&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Variable definitions&lt;br /&gt;
====================&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Now simply add the CSS code as shown in blue here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;code&quot;&gt;&lt;p&gt;Look for the code.&lt;/p&gt;&lt;div&gt;&lt;code&gt;&lt;br /&gt;
&amp;lt;b:skin&amp;gt;&amp;lt;![CDATA[/*&lt;br /&gt;
-----------------------------------------------&lt;br /&gt;
Blogger Template Style&lt;br /&gt;
Name:     Stretch Denim&lt;br /&gt;
Designer: Darren Delaye&lt;br /&gt;
URL:      www.DarrenDelaye.com&lt;br /&gt;
Date:     11 Jul 2006&lt;br /&gt;
-----------------------------------------------&lt;br /&gt;
*/&lt;br /&gt;
&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;
#navbar-iframe {&lt;br /&gt;
display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
/* Variable definitions&lt;br /&gt;
====================&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
4. Now save your template and you are done.</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/6374652015550161337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/10/remove-blogger-navbar-bar.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6374652015550161337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6374652015550161337'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/10/remove-blogger-navbar-bar.html' title='Remove the blogger navigation bar.'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjtQzoYQGzZ90gx1Fef893rNirwzD799-UvEg1fbtTA4VHLHwx0zMA3ha7gT8sPzheexxT8UQP0DIVlk69eFTwJCJyh3_mTgIdleFyxm7b0z52AxffjXA2R3vJWJcq2QdT37vlEthhXFCk/s72-c/navbar+present.jpg" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-3873472002582566086</id><published>2009-09-25T21:25:00.002+05:30</published><updated>2009-11-11T10:52:39.601+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Customize blog"/><title type='text'>Replace &#39;Older post&#39;, &#39;Newer post&#39; and &#39;Home&#39; links text with anything of your choice</title><content type='html'>At the end of each page your can see &#39;Older post&#39;, &#39;Newer post&#39; and &#39;Home&#39; links. What we are talking about is this.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img alt=&quot;Default older, newer and home links.&quot; border=&quot;1&quot; iq=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNqXnp3gPMpq23HL277DQGOJDDK1JhTzcctgAD9IzE4YLt6FWA-VGkf2cvqZv0usFP2Tm2bN8ZPaLfw9ffQIaRQqP7oY6d9lBm_a9_JBrdzLunOjXo54WhpGmu2-n2V72Wy1_Pl2Es50c/s400/noh+default+-+blogger.JPG&quot; title=&quot;Default older, newer and home links.&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
This can be changed to anything of your liking. For e.g.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img alt=&quot;Modified older, newer and home links.&quot; border=&quot;1&quot; iq=&quot;true&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgd4Z81MbvlSpzYMmoQERHxXaT3O0UIJXHFVfUuU8AocBsJOlnHdqEHmLtGMQadA7efxx_szRkqcEmRBrW5pH5tYktjot3Jtoc2zFkyT_M498RNbMAuAFqun4UePmKVaSD7do-ivgj5qjM/s400/noh+modified+-+blogger.JPG&quot; title=&quot;Modified older, newer and home links.&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;Goto &lt;b&gt;Layout &amp;gt; Edit HTML&lt;/b&gt;.&lt;br /&gt;
Check the &#39;&lt;b&gt;Expand Widget Templates&lt;/b&gt;&#39; checkbox.&lt;br /&gt;
&lt;br /&gt;
Look for the following html code in your template.&lt;br /&gt;
&lt;div class=&#39;code&#39;&gt;&lt;code title=&quot;Use scroll bar to see more code&quot;&gt;&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:newerPageUrl&#39;&amp;gt;&lt;br /&gt;
&amp;lt;span id=&#39;blog-pager-newer-link&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;blog-pager-newer-link&#39; expr:href=&#39;data:newerPageUrl&#39; expr:id=&#39;data:widget.instanceId   &amp;amp;quot;_blog-pager-newer-link&amp;amp;quot;&#39; expr:title=&#39;data:newerPageTitle&#39;&amp;gt;&lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:newerPageTitle/&amp;gt;&lt;/span&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:olderPageUrl&#39;&amp;gt;&lt;br /&gt;
&amp;lt;span id=&#39;blog-pager-older-link&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;blog-pager-older-link&#39; expr:href=&#39;data:olderPageUrl&#39; expr:id=&#39;data:widget.instanceId   &amp;amp;quot;_blog-pager-older-link&amp;amp;quot;&#39; expr:title=&#39;data:olderPageTitle&#39;&amp;gt;&lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:olderPageTitle/&amp;gt;&lt;/span&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:blog.homepageUrl != data:blog.url&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;home-link&#39; expr:href=&#39;data:blog.homepageUrl&#39;&amp;gt;&lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:homeMsg/&amp;gt;&lt;/span&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;b:else/&amp;gt;&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:newerPageUrl&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;home-link&#39; expr:href=&#39;data:blog.homepageUrl&#39;&amp;gt;&amp;lt;data:homeMsg/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Now all we need to do is to replace the code in red with our content.&lt;br /&gt;
&lt;br /&gt;
We will modify &lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:newerPageTitle/&amp;gt;&lt;/span&gt; to change &quot;Newer Post&quot;, &lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:olderPageTitle/&amp;gt;&lt;/span&gt; to change &quot;Older Post&quot; and &lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:homeMsg/&amp;gt;&lt;/span&gt; to change &quot;Home&quot; links.&lt;br /&gt;
These can be replaced with text of our choice or an image.&lt;br /&gt;
&lt;br /&gt;
For e.g. to use images instead of &quot;Home&quot; link. We will replace the code&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:homeMsg/&amp;gt;&lt;/span&gt;&lt;br /&gt;
with&lt;br /&gt;
&lt;div style=&quot;color: blue;&quot;&gt;&amp;lt;img src=&quot;/path-to-image/&quot; width=&#39;50px&#39; height=&#39;50px&#39;&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Where &quot;path-to-image&quot; is the path of image  to be displayed.&lt;br /&gt;
The modified code will look like this&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&#39;code&#39;&gt;&lt;code title=&quot;Use scroll bar to see more code&quot;&gt;&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:newerPageUrl&#39;&amp;gt;&lt;br /&gt;
&amp;lt;span id=&#39;blog-pager-newer-link&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;blog-pager-newer-link&#39; expr:href=&#39;data:newerPageUrl&#39; expr:id=&#39;data:widget.instanceId   &amp;amp;quot;_blog-pager-newer-link&amp;amp;quot;&#39; expr:title=&#39;data:newerPageTitle&#39;&amp;gt; &amp;lt;data:newerPageTitle/&amp;gt; &amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:olderPageUrl&#39;&amp;gt;&lt;br /&gt;
&amp;lt;span id=&#39;blog-pager-older-link&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;blog-pager-older-link&#39; expr:href=&#39;data:olderPageUrl&#39; expr:id=&#39;data:widget.instanceId   &amp;amp;quot;_blog-pager-older-link&amp;amp;quot;&#39; expr:title=&#39;data:olderPageTitle&#39;&amp;gt;&amp;lt;data:olderPageTitle/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:blog.homepageUrl != data:blog.url&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;home-link&#39; expr:href=&#39;data:blog.homepageUrl&#39;&amp;gt;&lt;span style=&quot;color: red;&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&amp;lt;img src=&quot;/path-to-image/&quot; width=&#39;50px&#39; height=&#39;50px&#39;&amp;gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;b:else/&amp;gt;&lt;br /&gt;
&amp;lt;b:if cond=&#39;data:newerPageUrl&#39;&amp;gt;&lt;br /&gt;
&amp;lt;a class=&#39;home-link&#39; expr:href=&#39;data:blog.homepageUrl&#39;&amp;gt;&amp;lt;data:homeMsg/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Similarly change &lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:newerpagetitle&amp;gt;&lt;/span&gt; to modify &quot;Newer Post&quot; and &lt;span style=&quot;color: red;&quot;&gt;&amp;lt;data:olderpagetitle&amp;gt;&lt;/span&gt; to modify &quot;Older Post&quot; links.&lt;br /&gt;
&lt;br /&gt;
An example can be seen at the end of this blog.</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/3873472002582566086/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/09/changing-home-older-posts-newer-posts.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/3873472002582566086'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/3873472002582566086'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/09/changing-home-older-posts-newer-posts.html' title='Replace &#39;Older post&#39;, &#39;Newer post&#39; and &#39;Home&#39; links text with anything of your choice'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhNqXnp3gPMpq23HL277DQGOJDDK1JhTzcctgAD9IzE4YLt6FWA-VGkf2cvqZv0usFP2Tm2bN8ZPaLfw9ffQIaRQqP7oY6d9lBm_a9_JBrdzLunOjXo54WhpGmu2-n2V72Wy1_Pl2Es50c/s72-c/noh+default+-+blogger.JPG" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-3702372520297769479</id><published>2009-09-23T20:13:00.000+05:30</published><updated>2009-11-10T20:16:43.608+05:30</updated><title type='text'></title><content type='html'>&lt;iframe frameborder=&quot;0&quot; height=&quot;850&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://spreadsheets.google.com/embeddedform?key=0AhqiA90IvoXgdEJ4MVBueEFwY1RuTThSNEIxUTJybkE&quot; width=&quot;500&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/3702372520297769479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/09/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/3702372520297769479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/3702372520297769479'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/09/blog-post.html' title=''/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-6893247416353480087</id><published>2009-09-23T19:01:00.001+05:30</published><updated>2009-11-13T02:42:55.823+05:30</updated><title type='text'></title><content type='html'>&lt;iframe src=&quot;http://spreadsheets.google.com/embeddedform?key=0AhqiA90IvoXgdHB0b2pzUU1iSTJlSzJOLUUtdEJkbkE&quot; width=&quot;700&quot; height=&quot;650&quot; frameborder=&quot;0&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot;&gt;Loading...&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/6893247416353480087/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/request-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6893247416353480087'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/6893247416353480087'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/11/request-post.html' title=''/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6682659236309068895.post-7463239005681105618</id><published>2009-09-23T18:51:00.016+05:30</published><updated>2011-01-29T00:07:33.519+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Advertise and notify"/><title type='text'>Link to us</title><content type='html'>Were we able to help you? Did you find this blog useful? or You just liked it. Please link back to us.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;468X60 link units&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks @ bloggerFunda&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.4.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt; &lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.4.gif&quot; alt=&quot;Blogger Tips and Tricks @ bloggerFunda&quot; style=&quot;border:0&quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks @ bloggerFunda&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.5.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt; &lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.5.gif&quot; alt=&quot;Blogger Tips and Tricks @ bloggerFunda&quot; style=&quot;border:0&quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;b&gt;234X60 link units&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.6.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.6.gif&quot; alt=&quot;Blogger Tips and Tricks&quot; style=&quot;border:0&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.7.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.7.gif&quot; alt=&quot;Blogger Tips and Tricks&quot; style=&quot;border:0&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;b&gt;180x100 link units&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.8.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt; &lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.8.gif&quot; alt=&quot;Blogger Tips and Tricks&quot; style=&quot;border:0&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.9.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt; &lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.9.gif&quot; alt=&quot;Blogger Tips and Tricks&quot; style=&quot;border:0&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;b&gt;Seasonal (Dyanamic) link units&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table style=&quot;border: 1px solid rgb(187, 187, 187); padding: 5px;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;Blogger Tips and Tricks&quot; src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.10.gif&quot; style=&quot;border: 0pt none;&quot; /&gt;&lt;br /&gt;
&lt;/td&gt; &lt;td&gt;&lt;div class=&quot;codes&quot;&gt;&amp;lt;a target=&quot;_blank&quot; href=&quot;http://bloggerfunda.blogspot.com&quot;&amp;gt;&amp;lt;img src=&quot;http://feeds.feedburner.com/blogspot/bloggerfunda.10.gif&quot; alt=&quot;Blogger Tips and Tricks&quot; style=&quot;border:0&quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
Can&#39;t find anything suitable for your blog? Please let us know. Just visit our &lt;a href=&quot;http://bloggerfunda.blogspot.com/2009/09/blog-post.html&quot; title=&quot;Let us know if you can not find anything useful here.&quot;&gt;Contact us&lt;/a&gt; page or drop a comment here. We will try our best.&lt;br /&gt;
&lt;br /&gt;
Thank you for providing us a link back.</content><link rel='replies' type='application/atom+xml' href='http://bloggerfunda.blogspot.com/feeds/7463239005681105618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://bloggerfunda.blogspot.com/2009/09/link-to-us.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/7463239005681105618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6682659236309068895/posts/default/7463239005681105618'/><link rel='alternate' type='text/html' href='http://bloggerfunda.blogspot.com/2009/09/link-to-us.html' title='Link to us'/><author><name>CouponsForIndia</name><uri>http://www.blogger.com/profile/08814403379828790421</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>