<?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>| Blogger Tips And Tricks|Latest Tips For Bloggers</title>
	<atom:link href="https://www.bloggertipandtrick.net/tutorials/gadget/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Tue, 16 Sep 2025 04:13:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Add a Calendar to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-calendar-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-calendar-to-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 26 Aug 2025 08:32:00 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/09/how-to-add-a-calender-to-bloggerblogspot.html</guid>

					<description><![CDATA[<p>This guide shows how to add a simple monthly calendar to your Blogger blog. It uses one HTML/JavaScript gadget and a small script. No external files are required. 1. Open your Blogger dashboard. 2. Go to Layout. 3. Click Add a Gadget in the area where you want the calendar. 4. Choose HTML/JavaScript. 5. Add [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-calendar-to-blogger/">How to Add a Calendar to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-a-Calendar-to-Blogger.jpg" alt="How to Add a Calendar to Blogger" width="1200" height="630" class="alignnone size-full wp-image-7464 singular-featured-image" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-a-Calendar-to-Blogger.jpg 1200w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-a-Calendar-to-Blogger-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>This guide shows how to add a simple monthly calendar to your Blogger blog. It uses one HTML/JavaScript gadget and a small script. No external files are required.</p>
<p>1. Open your <strong>Blogger</strong> dashboard.</p>
<p>2. Go to <strong>Layout</strong>.</p>
<p>3. Click <strong>Add a Gadget</strong> in the area where you want the calendar.</p>
<p>4. Choose <strong>HTML/JavaScript</strong>.</p>
<p>5. Add the code given below into the content box and click <strong>Save</strong>.</p>
<pre><code>&lt;div id=&quot;btt-basic-calendar&quot;&gt;&lt;/div&gt;
&lt;script type='text/javascript'&gt;
//&lt;![CDATA[

(function() {
  function generateCalendar(id) {
    var today = new Date();
    var month = today.getMonth();
    var year = today.getFullYear();
    var firstDay = new Date(year, month, 1).getDay();
    var daysInMonth = new Date(year, month + 1, 0).getDate();
    
    var monthNames = [
      &quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,
      &quot;July&quot;,&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;
    ];
    
    var calendar = &quot;&lt;table class='btt-basic-calendar'&gt;&quot;;
    calendar += &quot;&lt;thead&gt;&lt;tr&gt;&lt;th colspan='7'&gt;&quot; + monthNames[month] + &quot; &quot; + year + &quot;&lt;/th&gt;&lt;/tr&gt;&quot;;
    calendar += &quot;&lt;tr&gt;&lt;th&gt;Sun&lt;/th&gt;&lt;th&gt;Mon&lt;/th&gt;&lt;th&gt;Tue&lt;/th&gt;&lt;th&gt;Wed&lt;/th&gt;&lt;th&gt;Thu&lt;/th&gt;&lt;th&gt;Fri&lt;/th&gt;&lt;th&gt;Sat&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&quot;;
    
    // Empty cells before first day
    for (var i = 0; i &lt; firstDay; i++) {
      calendar += &quot;&lt;td&gt;&lt;/td&gt;&quot;;
    }
    
    // Fill days
    var day = 1;
    for (var i = firstDay; i &lt; 7; i++) {
      calendar += &quot;&lt;td&quot; + (day === today.getDate() ? &quot; class='today'&quot; : &quot;&quot;) + &quot;&gt;&quot; + day + &quot;&lt;/td&gt;&quot;;
      day++;
    }
    calendar += &quot;&lt;/tr&gt;&quot;;
    
    // Remaining weeks
    while (day &lt;= daysInMonth) {
      calendar += &quot;&lt;tr&gt;&quot;;
      for (var i = 0; i &lt; 7 &amp;&amp; day &lt;= daysInMonth; i++) {
        calendar += &quot;&lt;td&quot; + (day === today.getDate() ? &quot; class='today'&quot; : &quot;&quot;) + &quot;&gt;&quot; + day + &quot;&lt;/td&gt;&quot;;
        day++;
      }
      calendar += &quot;&lt;/tr&gt;&quot;;
    }
    
    calendar += &quot;&lt;/tbody&gt;&lt;/table&gt;&quot;;
    document.getElementById(id).innerHTML = calendar;
  }

  // Run on load if a container with id=&quot;btt-basic-calendar&quot; exists
  window.onload = function() {
    var container = document.getElementById(&quot;btt-basic-calendar&quot;);
    if (container) {
      generateCalendar(&quot;btt-basic-calendar&quot;);
    }
  };
})();

//]]&gt;
&lt;/script&gt;
&lt;style&gt;
.btt-basic-calendar {border-collapse:collapse;width:100%;text-align:center;font-family:Arial,sans-serif;font-size:14px;}
.btt-basic-calendar th {background:#f5f5f5;padding:5px;}
.btt-basic-calendar td {border:1px solid #ddd;padding:5px;}
.btt-basic-calendar .today {background:#ffeb3b;font-weight:bold;}
&lt;/style&gt;</code></pre>
<p><strong>Tip:</strong> You can add a title for the gadget, such as Calendar, to show a header above the widget.</p>
<p>6. Save your layout and refresh your blog. The current month will appear, and today's date will be highlighted.</p>
<p><strong>Note:</strong> This calendar code is not limited to Blogger. You can also use it on any other website by pasting the same snippet into your HTML where you want the calendar to appear.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-calendar-to-blogger/">How to Add a Calendar to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-calendar-to-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Related Posts to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-related-posts-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-related-posts-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 29 Jul 2024 04:12:00 +0000</pubDate>
				<category><![CDATA[background]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/05/how-to-add-related-post-widget-to-blogger.html</guid>

					<description><![CDATA[<p>Are you looking to enhance your Blogger site by keeping visitors engaged and encouraging them to explore more of your content? Adding related posts is a great way to achieve this. By displaying a list of related articles at the end of each post, you can help readers discover more content that interests them, thereby [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-related-posts-to-blogger/">How To Add Related Posts to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Are you looking to enhance your Blogger site by keeping visitors engaged and encouraging them to explore more of your content? Adding related posts is a great way to achieve this. By displaying a list of related articles at the end of each post, you can help readers discover more content that interests them, thereby increasing page views and reducing bounce rates. In this quick guide, we'll walk you through the steps to add related posts to your Blogger site.</p>
<p>1. Go to the "Edit HTML" page of your Blogger blog.</p>
<p>2. Scroll down to where you see this line:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;data:post.body/&gt;</pre>
<p>3. After the above line, copy and paste the code below to a suitable location:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;!--Related post code start from here--&gt;
&lt;b:if cond='data:blog.pageType == &amp;quot;item&amp;quot;'&gt;
&lt;style type='text/css'&gt;
.btt-rposts{margin:15px 0;}
#btt-rposts-data &gt; div{margin:0 0 15px 0;}
#btt-rposts-data &gt; div:last-child{margin:0;}
#btt-rposts-data &gt; div strong{display:block;margin:0 0 8px 0;}
#btt-rposts-data ul{list-style:none;margin:0;padding:0;}
#btt-rposts-data ul li{margin:0;padding:0 0 6px 0;}
&lt;/style&gt;
&lt;div class='btt-rposts'&gt;
&lt;div class='btt-rposts-content'&gt;
&lt;h3 class='btt-rposts-header'&gt;Related Posts :&lt;/h3&gt;
&lt;div id='btt-rposts-data'&gt;&lt;/div&gt;
&lt;script type='text/javascript'&gt;
var homeUrl = &amp;quot;&lt;data:blog.homepageUrl/&gt;&amp;quot;;
var maxNumberOfPostsPerLabel = 4;
var maxNumberOfLabels = 3;

function bttListEntries(json) {
    var ul = document.createElement('ul');
    var maxPosts = Math.min(json.feed.entry.length, maxNumberOfPostsPerLabel);

    for (var i = 0; i &amp;lt; maxPosts; i++) {
        var entry = json.feed.entry[i];
        var alturl;

        for (var k = 0; k &amp;lt; entry.link.length; k++) {
            if (entry.link[k].rel === 'alternate') {
                alturl = entry.link[k].href;
                break;
            }
        }

        if (alturl !== location.href) {
            var li = document.createElement('li');
            var a = document.createElement('a');
            a.href = alturl;
            a.appendChild(document.createTextNode(entry.title.$t));
            li.appendChild(a);
            ul.appendChild(li);
        }
    }

    for (var l = 0; l &amp;lt; json.feed.link.length; l++) {
        if (json.feed.link[l].rel === 'alternate') {
            var raw = json.feed.link[l].href;
            var label = raw.substring(homeUrl.length + 13).replace(/%20/g, ' ');
            var h = document.createElement('strong');
            h.appendChild(document.createTextNode(label));
            var div1 = document.createElement('div');
            div1.appendChild(h);
            div1.appendChild(ul);
            document.getElementById('btt-rposts-data').appendChild(div1);
        }
    }
}

function bttSearch(query, label) {
    var script = document.createElement('script');
    script.setAttribute('src', query + 'feeds/posts/default/-/' + label + '?alt=json-in-script&amp;amp;callback=bttListEntries');
    script.setAttribute('type', 'text/javascript');
    document.documentElement.firstChild.appendChild(script);
}

var labelArray = [];
var numLabel = 0;

&lt;b:loop values='data:posts' var='post'&gt;
    &lt;b:loop values='data:post.labels' var='label'&gt;
        var textLabel = &amp;quot;&lt;data:label.name/&gt;&amp;quot;;
        if (labelArray.indexOf(textLabel) === -1) {
            labelArray.push(textLabel);
            if (numLabel &amp;lt; maxNumberOfLabels) {
                bttSearch(homeUrl, textLabel);
                numLabel++;
            }
        }
    &lt;/b:loop&gt;
&lt;/b:loop&gt;
&lt;/script&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/b:if&gt;
&lt;!--Related post code end here--&gt;</pre>
<p>4. Click on the save button and refresh your site.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-related-posts-to-blogger/">How To Add Related Posts to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-related-posts-to-blogger/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Five Ways to Better Protect Your Smartphone</title>
		<link>https://www.bloggertipandtrick.net/five-ways-to-better-protect-your-smartphone/</link>
					<comments>https://www.bloggertipandtrick.net/five-ways-to-better-protect-your-smartphone/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 02 May 2018 12:33:44 +0000</pubDate>
				<category><![CDATA[gadget]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6795</guid>

					<description><![CDATA[<p>Mobile phones are now used for more than just making phone calls. People use today's smartphones to track their finances, check emails, and keep up with their social media accounts. Since smartphones can be quite expensive, it’s important to take the time to do everything that you can to protect your mobile device. The following [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/five-ways-to-better-protect-your-smartphone/">Five Ways to Better Protect Your Smartphone</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Mobile phones are now used for more than just making phone calls. People use today's smartphones to <a href="http://www.emergingedtech.com/2017/04/best-financial-literacy-phone-apps-for-students/" target="_blank" rel="noopener">track their finances</a>, check emails, and keep up with their social media accounts. Since smartphones can be quite expensive, it’s important to take the time to do everything that you can to protect your mobile device. The following guide walks you through a few ways you can keep your smartphone as safe as possible at all times.</p>
<p><strong>Buy a Warranty for the Phone</strong></p>
<p>When you buy a mobile phone, you are often provided with the opportunity to purchase a warranty package with it. This allows the phone to be repaired if it’s damaged within certain parameters of the agreement. This can be a great way for you to ensure that you can have your smartphone repaired if you break it without having to spend a ton of money.</p>
<p><strong>Put Your Phone in a Protective Case</strong></p>
<p>There are <a href="https://www.bodyguardz.com/apple/iphone-x" target="_blank" rel="noopener">iPhone X cases with screen protectors</a> available that you can put on your Apple device. If you drop your very expensive new iPhone, the case and screen protector will keep it from being badly damaged. The same goes for Android devices. There are even some cases available that are waterproof so that if you drop your phone in water, it doesn’t become waterlogged and ruined. Each of the cases is designed for a specific model of iPhone or Android device, so be sure to read the case for the protector you’re considering carefully to ensure that you invest in the right one for your phone. Cases are available in a variety of styles, so you can show off your unique personality with the case you choose for your phone.</p>
<p><strong>Put a Password on Your Phone</strong></p>
<p>It’s important to protect the information that you have saved inside of the phone, as well. Put a <a href="http://www.knowyourmobile.com/mobile-phones/apple-iphone-5s/2586/how-lock-your-iphone-any-password" target="_blank" rel="noopener">password on the phone</a> so that no one can go into it without your permission. There are some phones that now use fingerprint scanners to limit who can get into the phone and some even use facial recognition. It’s important to make sure the code that you choose for the password on your phone isn’t easy for someone to figure out.</p>
<p><strong>Add the Location Tracker App</strong></p>
<p>There are apps available for smartphones that allow the position of the <a href="https://earthweb.com/phone-tracker-apps/" rel="noopener" target="_blank">phone to be tracked</a> at all times. This is a great app to have because if your phone is lost or stolen, you can track the exact place where it’s located so that you can get it back. If the phone was stolen, it’s best to contact the police and let them handle retrieving it so that you don’t put yourself in a dangerous situation by trying to retrieve it on your own.</p>
<p><strong>Have a Battery Booster</strong></p>
<p>A battery booster is a device that you can plug your phone into so that it can get a little more battery life until you can plug it in and charge it. The device will need to be charged in advance in order for it to be as useful as it can be when you need to use it.</p>
<p>Taking the time to protect your phone is important because you never know when it may be dropped or stolen. Most of the items listed above are not overly expensive and well worth the investment if you consider the fact that you won't have to constantly invest money in a new phone every time that you drop yours.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/five-ways-to-better-protect-your-smartphone/">Five Ways to Better Protect Your Smartphone</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/five-ways-to-better-protect-your-smartphone/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Twitter Followers Counters For Blogger/Websites</title>
		<link>https://www.bloggertipandtrick.net/twitter-followers-counters/</link>
					<comments>https://www.bloggertipandtrick.net/twitter-followers-counters/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 04 Jan 2010 09:23:00 +0000</pubDate>
				<category><![CDATA[button]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/01/twitter-followers-counters-for-bloggerwebsites.html</guid>

					<description><![CDATA[<p>To show your site visitors to how many people follow you on twitter use the one of below code: 1.Login to your blogger dashboard--&#62;Layout &#62; Page Elements 2.Click on 'Add a Gadget'. 3.Select 'HTML/Javascript' and add the one of code given below and click save. 1.Big Twitter followers counter button: &#60;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=YOUR-TWITTER-USERNAME&#38;style=bird"&#62;&#60;/script&#62; 2.White [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/twitter-followers-counters/">Twitter Followers Counters For Blogger/Websites</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>To show your site visitors to how many people follow you on twitter use the one of below code:</p>
<p>1.Login to your blogger dashboard--&gt;Layout &gt; Page Elements</p>
<p>2.Click on 'Add a Gadget'.</p>
<p>3.Select 'HTML/Javascript' and add the one of code given below and click save.</p>
<p>1.Big Twitter followers counter button:</p>
<p><a title="twitter follower counters for blogs-websites" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/S0GxnVz3EmI/AAAAAAAABZE/IhLemW5ANzY/s1600-h/twitter+follower+counters+for+blogs-websites.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422810715758465634" style="cursor: pointer; width: 164px; height: 111px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/S0GxnVz3EmI/AAAAAAAABZE/IhLemW5ANzY/twitter+follower+counters+for+blogs-websites.png" alt="twitter follower counters for blogs-websites" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=<span style="color: #ff0000;"><strong>YOUR-TWITTER-USERNAME</strong></span>&amp;style=bird"&gt;&lt;/script&gt;</pre>
<p>2.White Twitter followers counter button:</p>
<p><a title="twitter follower counters white button" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/S0Gx4I2lCnI/AAAAAAAABZM/TC5cB50EVuU/s1600-h/twitter+follower+counters+white+button.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422811004337982066" style="cursor: pointer; width: 105px; height: 45px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/S0Gx4I2lCnI/AAAAAAAABZM/TC5cB50EVuU/twitter+follower+counters+white+button.png" alt="twitter follower counters white button" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=<span style="font-weight: bold; color: #ff0000; font-size: 130%;">YOUR-TWITTER-USERNAME</span>"&gt;&lt;/script&gt;</pre>
<p>3.Black Twitter followers counter button:</p>
<p><a title="twitter followers counter black button" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/S0GyJinYhEI/AAAAAAAABZU/fa9F6QI_Crs/s1600-h/twitter+followers+counter+black+button.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422811303311344706" style="cursor: pointer; width: 105px; height: 42px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/S0GyJinYhEI/AAAAAAAABZU/fa9F6QI_Crs/twitter+followers+counter+black+button.png" alt="twitter followers counter black button" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/embed/?username=<span style="font-weight: bold; color: #ff0000; font-size: 130%;">YOUR-TWITTER-USERNAME</span>&amp;style=black"&gt;&lt;/script&gt;</pre>
<p>4.Show your Twitter followers in <span style="font-weight: bold; color: #cc33cc;">Text</span>:</p>
<p><a title="twitter followers counter text" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/S0GyVdPei_I/AAAAAAAABZc/7-1s3TqMWh4/s1600-h/twitter+followers+counter+text.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5422811508027329522" style="cursor: pointer; width: 47px; height: 49px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/S0GyVdPei_I/AAAAAAAABZc/7-1s3TqMWh4/twitter+followers+counter+text.png" alt="twitter followers counter text" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 50px; width: 90%;">&lt;script type="text/javascript" language="javascript" src="http://twittercounter.com/widget/index.php?username=<span style="font-weight: bold; color: #ff0000; font-size: 130%;">YOUR-TWITTER-USERNAME</span>"&gt;&lt;/script&gt;</pre>
<p>The post <a href="https://www.bloggertipandtrick.net/twitter-followers-counters/">Twitter Followers Counters For Blogger/Websites</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/twitter-followers-counters/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How To Show Date,Month,Year on Blogger</title>
		<link>https://www.bloggertipandtrick.net/how-to-show-datemonthyear-on-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-show-datemonthyear-on-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 20 Dec 2009 07:02:00 +0000</pubDate>
				<category><![CDATA[gadget]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-show-datemonthyear-on-blogger.html</guid>

					<description><![CDATA[<p>1.Log in to your dashboard--&#62; layout- -&#62;Page Elements 2.Click on 'Add a Gadget'. 3.Select 'HTML/Javascript' and add the code given below and click save. &#60;script type='text/javascript'&#62; var mydate=new Date() var year=mydate.getYear() if (year &#60; 1000) year+=1900 var day=mydate.getDay() var month=mydate.getMonth() var daym=mydate.getDate() if (daym&#60;10) daym="0"+daym var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday") var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December") document.write("&#60;p&#62;"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"&#60;/p&#62;") [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-show-datemonthyear-on-blogger/">How To Show Date,Month,Year on Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>1.Log in to your dashboard--&gt; layout- -&gt;Page Elements</p>
<p>2.Click on 'Add a Gadget'.</p>
<p>3.Select 'HTML/Javascript' and add the code given below and click save.</p>
<p><a title="Select HTML/JavaScript" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/Sys4_naYxII/AAAAAAAABTc/P0K5uttZcgs/s1600-h/Select+HTML-JavaScript.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5416485642405725314" style="cursor: pointer; width: 435px; height: 370px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/Sys4_naYxII/AAAAAAAABTc/P0K5uttZcgs/Select+HTML-JavaScript.png" alt="Select HTML/JavaScript" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 250px; width: 90%;">&lt;script type='text/javascript'&gt;

var mydate=new Date()
var year=mydate.getYear()
if (year &lt; 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym&lt;10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("&lt;p&gt;"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"&lt;/p&gt;")

&lt;/script&gt;</pre>
<p>You are done.Now you can see it as picture below.</p>
<p><a title="Show Date,Month,Year on Blogger" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/Sy3F3paYbsI/AAAAAAAABT0/UuSMrblG3bw/s1600-h/Show+Date,Month,Year+on+Blogger.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5417203486596558530" style="cursor: pointer; width: 405px; height: 60px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/Sy3F3paYbsI/AAAAAAAABT0/UuSMrblG3bw/Show+Date,Month,Year+on+Blogger.png" alt="Show Date,Month,Year on Blogger" border="0" /></a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-show-datemonthyear-on-blogger/">How To Show Date,Month,Year on Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-show-datemonthyear-on-blogger/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Advanced Top Commentators Widget to Blogger</title>
		<link>https://www.bloggertipandtrick.net/advanced-top-commentators-widget/</link>
					<comments>https://www.bloggertipandtrick.net/advanced-top-commentators-widget/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 18 Dec 2009 08:18:00 +0000</pubDate>
				<category><![CDATA[comments]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/advanced-top-commentators-widget-to-blogger.html</guid>

					<description><![CDATA[<p>This widget will decide the top commentators from the latest 5000 comments to your blog.But your blog hasn't such as more comments you can add that Top Commentators Widget instead of this one.It will decide the top commentators from the latest 500 comments. However your blog have more than 500 comments add this widget: 1.Log [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/advanced-top-commentators-widget/">Advanced Top Commentators Widget to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This widget will decide the top commentators from the <span style="font-weight: bold; color: #3333ff;">latest 5000 comments</span> to your blog.But your blog hasn't such as more comments you can add <a style="font-weight: bold;" href="https://www.bloggertipandtrick.net/2009/05/how-to-add-top-commentators-widget-for.html">that</a> Top Commentators Widget instead of this one.It will decide the top commentators from the <span style="font-weight: bold; color: #3333ff;">latest 500 comments</span>.</p>
<p>However your blog have more than 500 comments add this widget:</p>
<p>1.Log in to your dashboard--&gt; layout- -&gt;Page Elements</p>
<p>2.Click on 'Add a Gadget' on the sidebar.</p>
<p>3.Select 'HTML/Javascript' and add the code given below and click save.</p>
<p><a title="Select HTML/JavaScript" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://4.bp.blogspot.com/_-j7_-ccACuU/Sys4_naYxII/AAAAAAAABTc/P0K5uttZcgs/s1600-h/Select+HTML-JavaScript.png"><img decoding="async" id="BLOGGER_PHOTO_ID_5416485642405725314" style="cursor: pointer; width: 435px; height: 370px;" src="https://4.bp.blogspot.com/_-j7_-ccACuU/Sys4_naYxII/AAAAAAAABTc/P0K5uttZcgs/Select+HTML-JavaScript.png" alt="Select HTML/JavaScript" border="0" /></a></p>
<pre style="border: 1px solid black; overflow: auto; height: 250px; width: 90%;">&lt;script type="text/javascript"&gt;
function pipeCallback(obj) {
document.write('&lt;ol&gt;');
var i;
for (i = 0; i &lt; obj.count ; i++)
{
var href = "'" + obj.value.items[i].link + "'";
if(obj.value.items[i].link == "")
var item ="&lt;li&gt;" + obj.value.items[i].title + "&lt;/li&gt;";
else
var item = "&lt;li&gt;" + "&lt;a href=" + href + "&gt;" + obj.value.items[i].title + "&lt;/a&gt; &lt;/li&gt;";
document.write(item);
}
document.write('&lt;/ol&gt;');
}
&lt;/script&gt;
&lt;script src="http://pipes.yahoo.com/pipes/pipe.run?_render=json&amp;_callback=pipeCallback&amp;_id=26191599715c07fbeaa491a5729e478b&amp;url=http%3A%2F%2F<span style="font-weight: bold; color: #ff0000; font-size: 130%;">yourblog</span>.blogspot.com&amp;num=10&amp;filter=" type="text/javascript"&gt;&lt;/script&gt;</pre>
<p><strong>Note :</strong> Remember to replace <strong><span style="color: #ff0000;">yourblog</span></strong> with your blog name.<span style="color: #3333ff;">Do not include</span> <span style="color: #ff0000;">http://</span></p>
<p>You are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/advanced-top-commentators-widget/">Advanced Top Commentators Widget to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/advanced-top-commentators-widget/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Free PHP Contact Form to Blogger</title>
		<link>https://www.bloggertipandtrick.net/free-php-contact-form-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/free-php-contact-form-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 12 Dec 2009 11:19:00 +0000</pubDate>
				<category><![CDATA[gadget]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-add-free-php-contact-form-to-blogger.html</guid>

					<description><![CDATA[<p>If you add this easy free contact form to your website or blog,your visitors can Submit this contact form without Page Rrefresh.To add this contact form no need to register.So you can add it in few seconds.And also this contact form integrated anti-spam protection.You can create it in 4 easy steps: 1.Select your contact form [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/free-php-contact-form-to-blogger/">How To Add Free PHP Contact Form to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you add this easy free contact form to your website or blog,your visitors can Submit this contact form <span style="font-weight: bold; color: rgb(255, 0, 0);">without Page Rrefresh</span>.To add this contact form no need to register.So you can add it in few seconds.And also this contact form integrated anti-spam protection.You can create it in 4 easy steps:</p>
<p>1.Select your contact form fields and decide they are mandatory or not.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/SyN9rOe7ejI/AAAAAAAABSA/xb8Je2eFe4A/s1600-h/PHP+Contact+Form+fields+select.png" title="PHP Contact Form fields select"><img decoding="async" style="cursor: pointer; width: 407px; height: 269px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/SyN9rOe7ejI/AAAAAAAABSA/xb8Je2eFe4A/PHP+Contact+Form+fields+select.png" alt="PHP Contact Form fields select" id="BLOGGER_PHOTO_ID_5414309358605138482" border="0" /></a></p>
<p>2.Select colors,fonts,... for your contact form.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/SyN-D7sQieI/AAAAAAAABSI/pRglBM8hQ7o/s1600-h/PHP+Contact+Form+fonts+colors.png" title="PHP Contact Form fonts colors"><img decoding="async" style="cursor: pointer; width: 405px; height: 190px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/SyN-D7sQieI/AAAAAAAABSI/pRglBM8hQ7o/PHP+Contact+Form+fonts+colors.png" alt="PHP Contact Form fonts colors" id="BLOGGER_PHOTO_ID_5414309783057500642" border="0" /></a></p>
<p>3.Enter your email address.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/SyN-VmTbDNI/AAAAAAAABSQ/GQXb2xnEnF8/s1600-h/PHP+Contact+Form+email.png" title="PHP Contact Form email"><img decoding="async" style="cursor: pointer; width: 408px; height: 103px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/SyN-VmTbDNI/AAAAAAAABSQ/GQXb2xnEnF8/PHP+Contact+Form+email.png" alt="PHP Contact Form email" id="BLOGGER_PHOTO_ID_5414310086553832658" border="0" /></a></p>
<p>4.Now press on "<span style="font-weight: bold;">Create</span>" button.html code for your contact form will appear.<span style="font-weight: bold;">Copy and paste</span> this code to your website.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://2.bp.blogspot.com/_-j7_-ccACuU/SyN-qkhK6eI/AAAAAAAABSY/A0zSIQaKUA8/s1600-h/PHP+Contact+Form+code.png" title="PHP Contact Form code"><img decoding="async" style="cursor: pointer; width: 408px; height: 132px;" src="https://2.bp.blogspot.com/_-j7_-ccACuU/SyN-qkhK6eI/AAAAAAAABSY/A0zSIQaKUA8/PHP+Contact+Form+code.png" alt="PHP Contact Form code" id="BLOGGER_PHOTO_ID_5414310446851877346" border="0" /></a></p>
<p>Now are done.Your Contact form will look like this:</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://3.bp.blogspot.com/_-j7_-ccACuU/SyN_GdWgj5I/AAAAAAAABSg/REHSnUjbTK8/s1600-h/PHP+Contact+Form+For+Bloggers.png" title="PHP Contact Form For Bloggers"><img decoding="async" style="cursor: pointer; width: 385px; height: 485px;" src="https://3.bp.blogspot.com/_-j7_-ccACuU/SyN_GdWgj5I/AAAAAAAABSg/REHSnUjbTK8/PHP+Contact+Form+For+Bloggers.png" alt="PHP Contact Form For Bloggers" id="BLOGGER_PHOTO_ID_5414310925964447634" border="0" /></a></p>
<p>Importance of this contact form is it can submit <span style="font-weight: bold;">without Page Rrefresh</span>.And also after submit this contact form thank you message will appear.</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://1.bp.blogspot.com/_-j7_-ccACuU/SyN_qiQRgmI/AAAAAAAABSo/tMMFTvlwH10/s1600-h/PHP+Contact+Form+Thank+you+messag.png" title="PHP Contact Form Thank you messag"><img decoding="async" style="cursor: pointer; width: 385px; height: 207px;" src="https://1.bp.blogspot.com/_-j7_-ccACuU/SyN_qiQRgmI/AAAAAAAABSo/tMMFTvlwH10/PHP+Contact+Form+Thank+you+messag.png" alt="PHP Contact Form Thank you messag" id="BLOGGER_PHOTO_ID_5414311545755763298" border="0" /></a></p>
<p>If you like to add this contact form you can get it from <u><span style="color: rgb(51, 51, 255);">http://www.foxyform.com/</span><u>.</u></u></p>
<p>The post <a href="https://www.bloggertipandtrick.net/free-php-contact-form-to-blogger/">How To Add Free PHP Contact Form to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/free-php-contact-form-to-blogger/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Status Bar Text with Nice Effect</title>
		<link>https://www.bloggertipandtrick.net/add-status-bar-text-with-dancing-effect/</link>
					<comments>https://www.bloggertipandtrick.net/add-status-bar-text-with-dancing-effect/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 14 Sep 2009 11:25:00 +0000</pubDate>
				<category><![CDATA[gadget]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/09/how-to-add-status-bar-text-with-nice-effect.html</guid>

					<description><![CDATA[<p>1.Login to your blogger dashboard and go to Layout --&#62; Page Elements. 2.Click on 'Add a Gadget' on the sidebar. 3.Select 'HTML/Javascript' and add the one of code given below and click save. &#60;script language=javascript&#62;var as = 1;var bs = 3;function statusbar(){var msg = "TYPE-YOUR-TEXT-HERE";var msg1 = "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\";var msg2 = "&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;&#124;";var msg3 = "//////////////////";var msg4 [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-status-bar-text-with-dancing-effect/">How To Add Status Bar Text with Nice Effect</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>1.Login to your blogger dashboard and go to Layout --&gt; Page Elements.</p>
<p>2.Click on 'Add a Gadget' on the sidebar.</p>
<p>3.Select 'HTML/Javascript' and add the one of code given below and click save.</p>
<pre style="border: 1px solid black; overflow: auto; height: 250px; width: 90%;">&lt;script language=javascript&gt;<br />var as = 1;<br />var bs = 3;<br />function statusbar()<br />{<br />var msg  = "<span style="font-weight: bold; color: rgb(255, 0, 0);">TYPE-YOUR-TEXT-HERE</span>";<br /><br />var msg1  = "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\";<br />var msg2  = "||||||||||||||||||";<br />var msg3  = "//////////////////";<br />var msg4  = "------------------";<br />if(as &gt; 4)<br />as = 1;<br />if(bs &lt; 1)<br />bs = 4;<br />timer = window.setTimeout("statusbar()",100);<br />var sds = eval("msg"+as);<br />var sds2 = eval("msg"+bs);<br />var ss =sds+"  "+msg+"  "+sds2;<br />window.status = ss;<br />as = as+1;<br />bs = bs-1;<br />}<br />statusbar(100);<br />&lt;/script&gt;<br /></pre>
<p>Now you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-status-bar-text-with-dancing-effect/">How To Add Status Bar Text with Nice Effect</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-status-bar-text-with-dancing-effect/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Status Bar Text with Blink Effect</title>
		<link>https://www.bloggertipandtrick.net/add-status-bar-text-with-blink-effect/</link>
					<comments>https://www.bloggertipandtrick.net/add-status-bar-text-with-blink-effect/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 14 Sep 2009 10:53:00 +0000</pubDate>
				<category><![CDATA[gadget]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/09/how-to-add-status-bar-text-with-blink-effect.html</guid>

					<description><![CDATA[<p>1.Login to your blogger dashboard and go to Layout --&#62; Page Elements. 2.Click on 'Add a Gadget' on the sidebar. 3.Select 'HTML/Javascript' and add the one of code given below and click save. &#60;script language=javascript&#62;var as = 1;function statusbar(){var msg = "TYPE-YOUR-TEXT-HERE";var msg1 = "* * * * * * * * * * * [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-status-bar-text-with-blink-effect/">How To Add Status Bar Text with Blink Effect</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>1.Login to your blogger dashboard and go to Layout --&gt; Page Elements.</p>
<p>2.Click on 'Add a Gadget' on the sidebar.</p>
<p>3.Select 'HTML/Javascript' and add the one of code given below and click save.</p>
<pre style="border: 1px solid black; overflow: auto; height: 250px; width: 90%;">&lt;script language=javascript&gt;<br />var as = 1;<br />function statusbar()<br />{<br />var msg  = "<span style="font-weight: bold; color: rgb(255, 0, 0);">TYPE-YOUR-TEXT-HERE</span>";<br />var msg1  = "* * * * * * * * * * * * ";<br />var msg2  = "                                    ";<br />if(as == 2 )<br /> as = 1;<br />else<br /> as = 2;<br />timer = window.setTimeout("statusbar()",100);<br />var sds = eval("msg"+as);<br />var ss = "    "+sds+"  "+msg+"  "+sds;<br />window.status = ss;<br />}<br />statusbar(100);<br />&lt;/script&gt;<br /></pre>
<p>Now you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-status-bar-text-with-blink-effect/">How To Add Status Bar Text with Blink Effect</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-status-bar-text-with-blink-effect/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Scrolling Text to Status Bar</title>
		<link>https://www.bloggertipandtrick.net/add-scrolling-message-to-status-bar/</link>
					<comments>https://www.bloggertipandtrick.net/add-scrolling-message-to-status-bar/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 14 Sep 2009 09:47:00 +0000</pubDate>
				<category><![CDATA[gadget]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/09/how-to-add-scrolling-text-to-status-bar.html</guid>

					<description><![CDATA[<p>1.Login to your blogger dashboard and go to Layout --&#62; Page Elements. 2.Click on 'Add a Gadget' on the sidebar. 3.Select 'HTML/Javascript' and add the one of code given below and click save. &#60;script language=javascript&#62;function statusbar(val){var msg = "TYPE-YOUR-MESSAGE-HERE";var res = " ";var speed = 100;var pos = val;if (pos &#62; 0) {for (var position=0 [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-scrolling-message-to-status-bar/">How To Add Scrolling Text to Status Bar</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>1.Login to your blogger dashboard and go to Layout --&gt; Page Elements.</p>
<p>2.Click on 'Add a Gadget' on the sidebar.</p>
<p>3.Select 'HTML/Javascript' and add the one of code given below and click save.</p>
<pre style="border: 1px solid black; overflow: auto; height: 250px; width: 90%;">&lt;script language=javascript&gt;<br />function statusbar(val)<br />{<br />var msg  = "<span style="font-weight: bold; color: rgb(255, 0, 0);">TYPE-YOUR-MESSAGE-HERE</span>";<br />var res = " ";<br />var speed = 100;<br />var pos = val;<br /><br />if (pos &gt; 0) {<br />for (var position=0 ; position&lt; pos; position++) {<br /> res += " ";<br />}<br />res+=msg;<br />pos--;<br />window.status = res;<br />timer = window.setTimeout("statusbar("+pos+")",speed);<br />}<br />else{<br />if( -pos &lt; msg.length) {<br /> res += msg.substring(-pos,msg.length);<br /> pos--;<br /> window.status=res;<br /> timer = window.setTimeout("statusbar("+pos+")",speed);<br />}<br />else<br />{<br /> window.status= " ";<br /> timer = window.setTimeout("statusbar(100)",speed);<br />}<br />}<br />}<br />statusbar(100);<br />&lt;/script&gt;</pre>
<p>Now you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-scrolling-message-to-status-bar/">How To Add Scrolling Text to Status Bar</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-scrolling-message-to-status-bar/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
