<?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/widget/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Mon, 28 Jul 2025 14:23:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Add a Random Post Button in Blogger</title>
		<link>https://www.bloggertipandtrick.net/random-post-button-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/random-post-button-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 21 Jul 2025 05:44:00 +0000</pubDate>
				<category><![CDATA[post]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/05/how-to-add-random-posts-widget-to-blogger.html</guid>

					<description><![CDATA[<p>Adding a Random Post button to your Blogger site is a fun and effective way to keep visitors engaged with your content. When clicked, this button sends users to a randomly selected blog post, encouraging them to discover articles they might have missed. In this tutorial, you'll learn how to easily add this feature to [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/random-post-button-blogger/">How to Add a Random Post Button in 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/07/How-to-Add-a-Random-Post-Button-in-Blogger.jpg" alt="How to Add a Random Post Button in Blogger" width="1200" height="630" class="singular-featured-image alignnone size-full wp-image-7288" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Add-a-Random-Post-Button-in-Blogger.jpg 1200w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Add-a-Random-Post-Button-in-Blogger-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>Adding a <strong>Random Post</strong> button to your Blogger site is a fun and effective way to keep visitors engaged with your content. When clicked, this button sends users to a randomly selected blog post, encouraging them to discover articles they might have missed. In this tutorial, you'll learn how to easily add this feature to your blog using a simple copy-and-paste code.</p>
<p>Go to the "<strong>Layout</strong>" page of your Blogger blog, add the following code into an "<strong>HTML/JavaScript</strong>" gadget, and click <strong>Save</strong>.</p>
<pre style="border:1px solid black;max-height:1000px;overflow:auto;">&lt;style&gt;
#myLuckyPost {
  margin-bottom: 10px;
}
#myLuckyPost a {
  display: block;
  background: #333;
  color: #fff;
  text-shadow: none !important;
  text-align: center;
  padding: 6px 10px;
  text-decoration: none;
  text-transform: uppercase;
}
&lt;/style&gt;

&lt;div id=&quot;myLuckyPost&quot;&gt;Loading random post...&lt;/div&gt;

&lt;script&gt;
(function () {
  const container = document.getElementById(&quot;myLuckyPost&quot;);
  const FEED_URL = &quot;/feeds/posts/summary&quot;;

  // === JSONP fallback logic ===
  window.showLucky = function (root) {
    const entry = (root.feed.entry || [])[0];
    if (!entry) {
      container.textContent = &quot;No post found.&quot;;
      return;
    }
    const link = entry.link.find(l =&gt; l.rel === &quot;alternate&quot;);
    if (link &amp;&amp; link.href) {
      window.location.href = link.href;
    } else {
      container.textContent = &quot;Post link not found.&quot;;
    }
  };

  window.feelingLucky = function (root) {
    const total = parseInt(root.feed.openSearch$totalResults.$t, 10);
    if (!total) {
      container.textContent = &quot;No posts available.&quot;;
      return;
    }

    const luckyIndex = Math.floor(Math.random() * total) + 1;
    const a = document.createElement(&quot;a&quot;);
    a.href = &quot;#&quot;;
    a.onclick = function () {
      const s = document.createElement(&quot;script&quot;);
      s.src = `${FEED_URL}?start-index=${luckyIndex}&amp;max-results=1&amp;alt=json-in-script&amp;callback=showLucky`;
      document.head.appendChild(s);
      return false;
    };
    a.textContent = &quot;Are you feeling lucky?&quot;;
    container.innerHTML = &quot;&quot;;
    container.appendChild(a);
  };

  // === Try modern fetch to get total post count ===
  (async function tryFetch() {
    try {
      const res = await fetch(`${FEED_URL}?alt=json&amp;max-results=0`);
      if (!res.ok) throw new Error(&quot;HTTP error &quot; + res.status);
      const data = await res.json();
      const total = parseInt(data.feed.openSearch$totalResults.$t, 10);

      if (!total) {
        container.textContent = &quot;No posts found.&quot;;
        return;
      }

      const luckyIndex = Math.floor(Math.random() * total) + 1;
      const postRes = await fetch(`${FEED_URL}?alt=json&amp;start-index=${luckyIndex}&amp;max-results=1`);
      if (!postRes.ok) throw new Error(&quot;Post fetch failed&quot;);

      const postData = await postRes.json();
      const entry = (postData.feed.entry || [])[0];
      if (!entry) {
        container.textContent = &quot;Random post not found.&quot;;
        return;
      }

      const link = entry.link.find(l =&gt; l.rel === &quot;alternate&quot;);
      if (!link || !link.href) {
        container.textContent = &quot;Post URL missing.&quot;;
        return;
      }

      const a = document.createElement(&quot;a&quot;);
      a.href = link.href;
      a.textContent = &quot;Are you feeling lucky?&quot;;
      container.innerHTML = &quot;&quot;;
      container.appendChild(a);

    } catch (err) {
      console.warn(&quot;Fetch failed, using JSONP fallback:&quot;, err);
      const s = document.createElement(&quot;script&quot;);
      s.src = `${FEED_URL}?max-results=0&amp;alt=json-in-script&amp;callback=feelingLucky`;
      document.head.appendChild(s);
    }
  })();
})();
&lt;/script&gt;</pre>
<p>Refresh your site and click the "<strong>Are you feeling lucky?</strong>" button to see it in action.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/random-post-button-blogger/">How to Add a Random Post Button in 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/random-post-button-blogger/feed/</wfw:commentRss>
			<slash:comments>2</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>How to Disable WordPress Block Widgets Screen</title>
		<link>https://www.bloggertipandtrick.net/disable-wordpress-block-widgets-screen/</link>
					<comments>https://www.bloggertipandtrick.net/disable-wordpress-block-widgets-screen/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 28 Aug 2021 05:19:55 +0000</pubDate>
				<category><![CDATA[widget]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6921</guid>

					<description><![CDATA[<p>With WordPress 5.8, old widgets screen was replaced by new block widgets screen. You can now add any block to your site's widget areas. Also all of your classic widgets still work flawlessly with this new block screen. But if you want to stick with the WordPress's old widgets screen, add the code given below [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-wordpress-block-widgets-screen/">How to Disable WordPress Block Widgets Screen</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 decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2021/08/WordPress-Block-Widgets-Screen.png" alt="WordPress Block Widgets Screen" width="728" height="601" class="alignnone size-full wp-image-6927" style="max-width:100%;"/></p>
<p>With WordPress 5.8, old widgets screen was replaced by new block widgets screen. You can now add any block to your site's widget areas. Also all of your classic widgets still work flawlessly with this new block screen. But if you want to stick with the WordPress's old widgets screen, add the code given below into your theme's "functions.php" file:</p>
<pre style="border:1px solid #000000;overflow:auto;">// Disables the block editor from managing widgets in the Gutenberg plugin.
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false', 100 );

// Disables the block editor from managing widgets.
add_filter( 'use_widgets_block_editor', '__return_false' );</pre>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-wordpress-block-widgets-screen/">How to Disable WordPress Block Widgets Screen</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/disable-wordpress-block-widgets-screen/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Become Blogger Blogroll Nofollow</title>
		<link>https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/</link>
					<comments>https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 02 Apr 2018 05:15:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-become-blogger-blogroll-nofollow.html</guid>

					<description><![CDATA[<p>This is useful if you consider about your site's SEO. Nofollow links do not pass Page Rank. So, using the nofollow attribute on your link means that link won't pass PageRank to another page. If you like to add "nofollow" attribute to the blogroll widget of your blogger blog, simply follow the steps given below: [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/">How To Become Blogger Blogroll Nofollow</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 is useful if you consider about your site's SEO. Nofollow links do not pass Page Rank. So, using the nofollow attribute on your link means that link won't pass PageRank to another page. If you like to add "nofollow" attribute to the blogroll widget of your blogger blog, simply follow the steps given below:</p>
<p>1.Go to the "Edit HTML" page of your blog.</p>
<p>2.Scroll down to till you see your <span style="color: #ff0000;">Blogroll widget code</span> (Note : You may also can find it by searching <span style="font-weight: bold; color: #009900;">&lt;b:widget id='BlogList</span> ) :</p>
<p>Your Blogroll widget code will look like this:</p>
<pre style="border: 1px solid black; overflow: auto; height: 300px;"><span style="font-weight: bold; color: #009900;">&lt;b:widget id='BlogList</span>1' locked='false' title='Blogroll' type='BlogList' version='1' visible='true'&gt;
&lt;b:includable id='main'&gt;
&lt;!-- only display title if it's non-empty --&gt;
&lt;b:if cond='data:title != &amp;quot;&amp;quot;'&gt;
  &lt;div id='blog-list-title'&gt;
    &lt;h2 class='title'&gt;&lt;data:title/&gt;&lt;/h2&gt;
  &lt;/div&gt;
&lt;/b:if&gt;

&lt;div class='widget-content'&gt;
  &lt;div class='blog-list-container' expr:id='data:widget.instanceId + &amp;quot;_container&amp;quot;'&gt;
    &lt;ul expr:id='data:widget.instanceId + &amp;quot;_blogs&amp;quot;'&gt;
      &lt;b:loop values='data:items' var='item'&gt;
        &lt;li expr:style='data:item.displayStyle'&gt;
          &lt;div class='blog-icon'&gt;
            &lt;b:if cond='data:showIcon == &amp;quot;true&amp;quot;'&gt;
              &lt;input expr:value='data:item.blogIconUrl' type='hidden'/&gt;
            &lt;/b:if&gt;
          &lt;/div&gt;
          &lt;div class='blog-content'&gt;
            &lt;div class='blog-title'&gt;
              &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                &lt;data:item.blogTitle/&gt;&lt;/a&gt;
            &lt;/div&gt;
            &lt;div class='item-content'&gt;
              &lt;b:if cond='data:showItemThumbnail == &amp;quot;true&amp;quot;'&gt;
                &lt;b:if cond='data:item.itemThumbnail'&gt;
                  &lt;div class='item-thumbnail'&gt;
                    &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                      &lt;img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/&gt;
                    &lt;/a&gt;
                  &lt;/div&gt;
                &lt;/b:if&gt;
              &lt;/b:if&gt;
              &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
                &lt;span class='item-title'&gt;
                  &lt;b:if cond='data:item.itemUrl != &amp;quot;&amp;quot;'&gt;
                    &lt;a expr:href='data:item.itemUrl' <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                      &lt;data:item.itemTitle/&gt;&lt;/a&gt;
                  &lt;b:else/&gt;
                    &lt;data:item.itemTitle/&gt;
                  &lt;/b:if&gt;
                &lt;/span&gt;
              &lt;/b:if&gt;
              &lt;b:if cond='data:showItemSnippet == &amp;quot;true&amp;quot;'&gt;
                &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
                  -
                &lt;/b:if&gt;
                &lt;span class='item-snippet'&gt;
                  &lt;data:item.itemSnippet/&gt;
                &lt;/span&gt;
              &lt;/b:if&gt;
              &lt;b:if cond='data:showTimePeriodSinceLastUpdate == &amp;quot;true&amp;quot;'&gt;
                &lt;div class='item-time'&gt;
                  &lt;data:item.timePeriodSinceLastUpdate/&gt;
                &lt;/div&gt;
              &lt;/b:if&gt;
            &lt;/div&gt;
          &lt;/div&gt;
          &lt;div style='clear: both;'/&gt;
        &lt;/li&gt;
      &lt;/b:loop&gt;
    &lt;/ul&gt;

    &lt;b:if cond='data:numItemsToShow != 0'&gt;
      &lt;b:if cond='data:totalItems &amp;gt; data:numItemsToShow'&gt;
        &lt;div class='show-option'&gt;
          &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-n&amp;quot;' style='display: none;'&gt;
            &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showNText/&gt;&lt;/a&gt;
          &lt;/span&gt;
          &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-all&amp;quot;' style='margin-left: 5px;'&gt;
            &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showAllText/&gt;&lt;/a&gt;
          &lt;/span&gt;
        &lt;/div&gt;
      &lt;/b:if&gt;
    &lt;/b:if&gt;

    &lt;b:include name='quickedit'/&gt;
  &lt;/div&gt;
&lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</pre>
<p>3.Now add <span style="font-weight: bold; color: #ff0000; font-size: 130%;">rel='nofollow'</span> to your blogroll widget code <span style="color: #cc33cc;">as the example below</span>:</p>
<pre style="border: 1px solid black; overflow: auto; height: 300px;">&lt;b:widget id='BlogList1' locked='false' title='Blogroll' type='BlogList' version='1' visible='true'&gt;
&lt;b:includable id='main'&gt;
&lt;!-- only display title if it's non-empty --&gt;
&lt;b:if cond='data:title != &amp;quot;&amp;quot;'&gt;
 &lt;div id='blog-list-title'&gt;
   &lt;h2 class='title'&gt;&lt;data:title/&gt;&lt;/h2&gt;
 &lt;/div&gt;
&lt;/b:if&gt;

&lt;div class='widget-content'&gt;
 &lt;div class='blog-list-container' expr:id='data:widget.instanceId + &amp;quot;_container&amp;quot;'&gt;
   &lt;ul expr:id='data:widget.instanceId + &amp;quot;_blogs&amp;quot;'&gt;
     &lt;b:loop values='data:items' var='item'&gt;
       &lt;li expr:style='data:item.displayStyle'&gt;
         &lt;div class='blog-icon'&gt;
           &lt;b:if cond='data:showIcon == &amp;quot;true&amp;quot;'&gt;
             &lt;input expr:value='data:item.blogIconUrl' type='hidden'/&gt;
           &lt;/b:if&gt;
         &lt;/div&gt;
         &lt;div class='blog-content'&gt;
           &lt;div class='blog-title'&gt;
             &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #ff0000; font-size: 130%;">rel='nofollow'</span> <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
               &lt;data:item.blogTitle/&gt;&lt;/a&gt;
           &lt;/div&gt;
           &lt;div class='item-content'&gt;
             &lt;b:if cond='data:showItemThumbnail == &amp;quot;true&amp;quot;'&gt;
               &lt;b:if cond='data:item.itemThumbnail'&gt;
                 &lt;div class='item-thumbnail'&gt;
                   &lt;a expr:href='data:item.blogUrl' <span style="font-weight: bold; color: #ff0000; font-size: 130%;">rel='nofollow'</span> <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                     &lt;img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/&gt;
                   &lt;/a&gt;
                 &lt;/div&gt;
               &lt;/b:if&gt;
             &lt;/b:if&gt;
             &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
               &lt;span class='item-title'&gt;
                 &lt;b:if cond='data:item.itemUrl != &amp;quot;&amp;quot;'&gt;
                   &lt;a expr:href='data:item.itemUrl' <span style="color: #ff0000; font-weight: bold; font-size: 130%;">rel='nofollow'</span> <span style="font-weight: bold; color: #3333ff; font-size: 130%;">target='_blank'</span>&gt;
                     &lt;data:item.itemTitle/&gt;&lt;/a&gt;
                 &lt;b:else/&gt;
                   &lt;data:item.itemTitle/&gt;
                 &lt;/b:if&gt;
               &lt;/span&gt;
             &lt;/b:if&gt;
             &lt;b:if cond='data:showItemSnippet == &amp;quot;true&amp;quot;'&gt;
               &lt;b:if cond='data:showItemTitle == &amp;quot;true&amp;quot;'&gt;
                 -
               &lt;/b:if&gt;
               &lt;span class='item-snippet'&gt;
                 &lt;data:item.itemSnippet/&gt;
               &lt;/span&gt;
             &lt;/b:if&gt;
             &lt;b:if cond='data:showTimePeriodSinceLastUpdate == &amp;quot;true&amp;quot;'&gt;
               &lt;div class='item-time'&gt;
                 &lt;data:item.timePeriodSinceLastUpdate/&gt;
               &lt;/div&gt;
             &lt;/b:if&gt;
           &lt;/div&gt;
         &lt;/div&gt;
         &lt;div style='clear: both;'/&gt;
       &lt;/li&gt;
     &lt;/b:loop&gt;
   &lt;/ul&gt;

   &lt;b:if cond='data:numItemsToShow != 0'&gt;
     &lt;b:if cond='data:totalItems &amp;gt; data:numItemsToShow'&gt;
       &lt;div class='show-option'&gt;
         &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-n&amp;quot;' style='display: none;'&gt;
           &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showNText/&gt;&lt;/a&gt;
         &lt;/span&gt;
         &lt;span expr:id='data:widget.instanceId + &amp;quot;_show-all&amp;quot;' style='margin-left: 5px;'&gt;
           &lt;a href='javascript:void(0)' onclick='return false;'&gt;&lt;data:showAllText/&gt;&lt;/a&gt;
         &lt;/span&gt;
       &lt;/div&gt;
     &lt;/b:if&gt;
   &lt;/b:if&gt;

   &lt;b:include name='quickedit'/&gt;
 &lt;/div&gt;
&lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</pre>
<p>4.Now save your template and you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/become-blogger-blogroll-nofollow/">How To Become Blogger Blogroll Nofollow</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/become-blogger-blogroll-nofollow/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Resize Popular Posts Widget Images in Blogger</title>
		<link>https://www.bloggertipandtrick.net/resize-popular-posts-widget-images-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/resize-popular-posts-widget-images-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 13 Mar 2018 07:37:36 +0000</pubDate>
				<category><![CDATA[image]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6158</guid>

					<description><![CDATA[<p>If you are using the official popular posts widget from Blogger, you can see thumbnails of popular posts are too small. Default size of popular posts thumbnails is 72px × 72px. We can change this size easily editing a single line of popular posts widget code. Follow the steps given below: Go to edit HTML [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/resize-popular-posts-widget-images-blogger/">Resize Popular Posts Widget Images in 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 are using the official popular posts widget from Blogger, you can see thumbnails of popular posts are too small. Default size of popular posts thumbnails is 72px × 72px. We can change this size easily editing a single line of popular posts widget code. Follow the steps given below:</p>
<p>Go to edit HTML of your blog and find this code:</p>
<pre>resizeImage(data:post.featuredImage, <span style="color: #ff0000;"><strong>72</strong></span>, &amp;quot;<span style="color: #008000;"><strong>1:1</strong></span>&amp;quot;)</pre>
<p>Change the value <strong>72</strong> to a different value like <strong>120</strong>. Now your code should look like this:</p>
<pre>resizeImage(data:post.featuredImage, <span style="color: #ff0000;"><strong>120</strong></span>, &amp;quot;<span style="color: #008000;"><strong>1:1</strong></span>&amp;quot;)</pre>
<p>Now you will get 120px square images as popular posts thumbnails.</p>
<p>If you don't like square images, you can change the <strong>1:1 ratio</strong> of width to height. For example if I change the ratio to 3:2 like below, I will get 120px width and 80px height images as popular post thumbnails.</p>
<pre>resizeImage(data:post.featuredImage, <span style="color: #ff0000;"><strong>120</strong></span>, &amp;quot;<span style="color: #008000;"><strong>3:2</strong></span>&amp;quot;)</pre>
<p>After that save your template and refresh your site to see changes.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/resize-popular-posts-widget-images-blogger/">Resize Popular Posts Widget Images in 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/resize-popular-posts-widget-images-blogger/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Create NoFollow Link List Widget in Blogger</title>
		<link>https://www.bloggertipandtrick.net/nofollow-link-list-widget-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/nofollow-link-list-widget-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 04 Apr 2017 11:15:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/07/how-to-make-a-blogger-link-list-widget-with-nofollow.html</guid>

					<description><![CDATA[<p>When you want to add an unordered link list to your Blogger blog and you don't know how to write HTML, easiest option is the "Link List" widget is provided by Blogger. But still there are no options in this widget to add a link as a nofollow link or open that link in a [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/nofollow-link-list-widget-blogger/">Create NoFollow Link List Widget in 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>When you want to add an unordered link list to your Blogger blog and you don't know how to write HTML, easiest option is the "Link List" widget is provided by Blogger. But still there are no options in this widget to add a link as a nofollow link or open that link in a new browser tab. When we adding external links such as affiliate links to our websites, we should make them nofollow. This tutorial explains how to add nofollow attribute to the links in a Link List widget and how to make them open in a new window/new tab when someone click on them.</p>
<p><img decoding="async" class="alignnone size-full wp-image-6438" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Add-Blogger-Link-List-Widget.jpg" alt="Add Blogger Link List Widget" width="539" height="95" /></p>
<p>1.Go to "Edit HTML" of your blog.</p>
<p>2.Find your Link List widget code. It usually starts with "<span style="color: #ff00ff;"><strong>&lt;b:widget id='LinkList</strong></span>". It will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6439" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Blogger-Link-List-Widget-Code.jpg" alt="Blogger Link List Widget Code" width="700" height="425" /></p>
<p>3.Find this line in that code:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;li&gt;&lt;a expr:href='data:link.target'&gt;&lt;data:link.name/&gt;&lt;/a&gt;&lt;/li&gt;</pre>
<p>4.Replace it with this code:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;li&gt;&lt;a expr:href='data:link.target' <span style="color: #ff0000;">target='_blank' rel='nofollow'</span>&gt;&lt;data:link.name/&gt;&lt;/a&gt;&lt;/li&gt;</pre>
<p>You can see I have added <span style="color: #339966;"><strong>target='_blank' rel='nofollow'</strong></span> to the original code.</p>
<p>Final code will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6440" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Modified-Blogger-Link-List-Widget-Code.jpg" alt="Blogger NoFollow Link List Widget Code" width="700" height="370" /></p>
<p>5.Save your template. That's it. Now links of the Link List widget have nofollow attribute and they will open in a new tab.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/nofollow-link-list-widget-blogger/">Create NoFollow Link List Widget in 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/nofollow-link-list-widget-blogger/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>How To Delete Blogger Navbar Widget</title>
		<link>https://www.bloggertipandtrick.net/delete-blogger-navbar-widget/</link>
					<comments>https://www.bloggertipandtrick.net/delete-blogger-navbar-widget/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 02 Apr 2017 03:02:19 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6426</guid>

					<description><![CDATA[<p>There are few ways to turn off or hide the Blogger Navbar. But if you want to delete/remove it completely from your template follow the steps given here. 1.Go to "Edit HTML" of your blog. 2.Find this line. It is the starting line of Blogger Navbar widget code: &#60;b:widget id='Navbar1' locked='true' title='Navbar' type='Navbar'&#62; 3.Select the [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/delete-blogger-navbar-widget/">How To Delete Blogger Navbar Widget</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>There are few ways to <a href="https://www.bloggertipandtrick.net/how-to-remove-blogger-navbar/" target="_blank">turn off or hide the Blogger Navbar</a>. But if you want to delete/remove it completely from your template follow the steps given here.</p>
<p>1.Go to "Edit HTML" of your blog.</p>
<p>2.Find this line. It is the starting line of Blogger Navbar widget code:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;b:widget id='Navbar1' locked='true' title='Navbar' type='Navbar'&gt;</pre>
<p>3.Select the entire code related to the Blogger Navbar Widget like this and delete it:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Blogger-Navbar-Widget-Code.jpg" alt="Blogger Navbar Widget Code" width="820" height="678" class="alignnone size-full wp-image-6427" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Blogger-Navbar-Widget-Code.jpg 820w, https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Blogger-Navbar-Widget-Code-768x635.jpg 768w" sizes="auto, (max-width: 820px) 100vw, 820px" /></p>
<p>4.Save your theme. That's it. Now Blogger Navbar is successfully removed from your Blogger blog.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/delete-blogger-navbar-widget/">How To Delete Blogger Navbar Widget</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/delete-blogger-navbar-widget/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create Drop-down Label Widget in Blogger</title>
		<link>https://www.bloggertipandtrick.net/drop-down-label-widget-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/drop-down-label-widget-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 27 Mar 2017 02:00:00 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[labels]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/05/how-to-make-drop-down-label-menu-in-blogger.html</guid>

					<description><![CDATA[<p>The Blogger Label widget only displays labels as an "Unordered List" or a "Cloud". Like in WordPress, there is no option to display labels/categories as a drop-down menu. When displaying Blogger Label widget as a Drop down menu indeed will use less space in your blog and it also makes your template look smart. If [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/drop-down-label-widget-blogger/">Create Drop-down Label Widget in 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>The Blogger Label widget only displays labels as an "Unordered List" or a "Cloud". Like in WordPress, there is no option to display labels/categories as a drop-down menu. When displaying Blogger Label widget as a Drop down menu indeed will use less space in your blog and it also makes your template look smart. If you are really interested to convert your existing Label widget into a drop-down menu, follow the steps given below.</p>
<p><strong>Note</strong>: First make sure that you have already added a label widget into your blog.</p>
<p>1.Go to "Edit HTML" page of your blog.</p>
<p>2.Find the code for your label widget. It will look like this:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/03/Blogger-Label-Widget-Code.jpg" alt="Blogger Label Widget Code" width="814" height="605" class="alignnone size-full wp-image-6342" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2017/03/Blogger-Label-Widget-Code.jpg 814w, https://www.bloggertipandtrick.net/wp-content/uploads/2017/03/Blogger-Label-Widget-Code-768x571.jpg 768w" sizes="auto, (max-width: 814px) 100vw, 814px" /></p>
<p>3.Now locate to this code:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;b:if cond='data:display == &amp;quot;list&amp;quot;'&gt;
&lt;ul&gt;
&lt;b:loop values='data:labels' var='label'&gt;
&lt;li&gt;
  &lt;b:if cond='data:blog.url == data:label.url'&gt;
	&lt;span expr:dir='data:blog.languageDirection'&gt;&lt;data:label.name/&gt;&lt;/span&gt;
  &lt;b:else/&gt;
	&lt;a expr:dir='data:blog.languageDirection' expr:href='data:label.url'&gt;&lt;data:label.name/&gt;&lt;/a&gt;
  &lt;/b:if&gt;
  &lt;b:if cond='data:showFreqNumbers'&gt;
	&lt;span dir='ltr'&gt;(&lt;data:label.count/&gt;)&lt;/span&gt;
  &lt;/b:if&gt;
&lt;/li&gt;
&lt;/b:loop&gt;
&lt;/ul&gt;
&lt;b:else/&gt;
&lt;b:loop values='data:labels' var='label'&gt;
&lt;span expr:class='&amp;quot;label-size label-size-&amp;quot; + data:label.cssSize'&gt;
  &lt;b:if cond='data:blog.url == data:label.url'&gt;
	&lt;span expr:dir='data:blog.languageDirection'&gt;&lt;data:label.name/&gt;&lt;/span&gt;
  &lt;b:else/&gt;
	&lt;a expr:dir='data:blog.languageDirection' expr:href='data:label.url'&gt;&lt;data:label.name/&gt;&lt;/a&gt;
  &lt;/b:if&gt;
  &lt;b:if cond='data:showFreqNumbers'&gt;
	&lt;span class='label-count' dir='ltr'&gt;(&lt;data:label.count/&gt;)&lt;/span&gt;
  &lt;/b:if&gt;
&lt;/span&gt;
&lt;/b:loop&gt;
&lt;/b:if&gt;</pre>
<p>4.Replace above code with below code:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;select onchange='location=this.options[this.selectedIndex].value;' style='width:100%'&gt;
&lt;option&gt;Browse By categories&lt;/option&gt;
&lt;b:loop values='data:labels' var='label'&gt;
&lt;option expr:value='data:label.url'&gt;&lt;data:label.name/&gt; (&lt;data:label.count/&gt;)&lt;/option&gt;
&lt;/b:loop&gt;
&lt;/select&gt;</pre>
<p><strong>Note</strong>: You can use any name instead of "Browse By categories".</p>
<p>5.Save your Template and refresh your site. Final result will look like this:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/03/Blogger-Drop-Down-Label-Widget.jpg" alt="Blogger Drop Down Label Widget" width="311" height="375" class="alignnone size-full wp-image-6341" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/drop-down-label-widget-blogger/">Create Drop-down Label Widget in 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/drop-down-label-widget-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add Featured Post Widget to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-featured-post-widget-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-featured-post-widget-to-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 15 Dec 2015 14:19:44 +0000</pubDate>
				<category><![CDATA[post]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5590</guid>

					<description><![CDATA[<p>Few days ago, Blogger released their latest official Blogger widget called "Featured Post". It makes it easier to showcase the posts you want your readers to see. With Featured Post widget, you can choose posts you've shared on your blog and highlight them wherever you'd like. To add "Featured Post" widget to your blog, just [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-featured-post-widget-to-blogger/">How to Add Featured Post 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>Few days ago, Blogger released their latest official Blogger widget called "<strong>Featured Post</strong>". It makes it easier to showcase the posts you want your readers to see. With Featured Post widget, you can choose posts you've shared on your blog and highlight them wherever you'd like.</p>
<p>To add "Featured Post" widget to your blog, just go to your "Layout" tab, click on "Add a Gadget", and select 'Featured Post'. </p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/12/Blogger-Featured-Post-Widget.png" alt="Blogger Featured Post Widget" width="567" height="356" class="alignnone size-full wp-image-5591" /></p>
<p>You’ll be able to place the gadget wherever you’d like on your blog and then choose the post you’d like to show. </p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/12/Blogger-Featured-Post-Widget-Options.png" alt="Blogger Featured Post Widget Options" width="699" height="843" class="alignnone size-full wp-image-5592" /></p>
<p>If you’d like to highlight something new, you can change the post you feature at any time.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-featured-post-widget-to-blogger/">How to Add Featured Post 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/add-featured-post-widget-to-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Add Beautiful Subscribe Widget to Blogger</title>
		<link>https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 30 Oct 2015 03:20:00 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/02/how-to-add-beautiful-subscribe-section-to-blogger.html</guid>

					<description><![CDATA[<p>Do you like to add a good looking social subscribe widget to your blog? Then simply follow the steps given below. 1.Login to your blogger account and go to "Edit HTML". 2.Scroll down to where you see &#60;/head&#62; tag . 3.Copy below code and paste it just before the &#60;/head&#62; tag. &#60;style type='text/css'&#62; @import url(https://fonts.googleapis.com/css?family=Lora:400,700); [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/">How To Add Beautiful Subscribe 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>Do you like to add a good looking social subscribe widget to your blog? Then simply follow the steps given below.</p>
<p>1.Login to your blogger account and go to "Edit HTML".</p>
<p>2.Scroll down to where you see <span style="font-weight: bold; color: #ff0000;">&lt;/head&gt;</span> tag .</p>
<p>3.Copy below code and paste it <span style="color: #3333ff;">just before</span> the <span style="color: #ff0000;">&lt;/head&gt;</span> tag.</p>
<pre style="border: 1px solid black; overflow: auto; width: 95%;">&lt;style type='text/css'&gt;
@import url(https://fonts.googleapis.com/css?family=Lora:400,700);

#subscribe-btt {
    margin: 0;
    padding: 10px;
    background: #eee;
    border: 3px solid #e8e8e8;
}

#subscribe-btt:hover {
    background: #e9e9e9;
    border: 3px solid #ddd;
}

#subscribe-btt h2.mysocialurl {
    border: 0;
    margin: 0 0 8px 0;
    padding: 0 0 0 56px;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    font-family: Lora;
}

#subscribe-btt h2.my-twitter {
    background: url(http://1.bp.blogspot.com/-YMZoxe6YeAU/VjLfx48cbzI/AAAAAAAANS4/-xMF6d-h6pI/s1600/twitter.png) no-repeat top left;
}

#subscribe-btt h2.my-facebook {
    background: url(http://3.bp.blogspot.com/-x3I2mVz4dz0/VjLfvv-E4lI/AAAAAAAANSU/mtI8MA00knA/s1600/facebook.png) no-repeat top left;
}

#subscribe-btt h2.my-googleplus {
    background: url(http://4.bp.blogspot.com/-ZgHjLWTv3hg/VjLfvhnsveI/AAAAAAAANSY/d-so__lf_MU/s1600/google_plus.png) no-repeat top left;
}

#subscribe-btt h2.my-pinterest {
    background: url(http://3.bp.blogspot.com/-QsPPcMl7rrw/VjLfxLofDUI/AAAAAAAANSs/1v1y-fB5pEQ/s1600/pinterest.png) no-repeat top left;
}

#subscribe-btt h2.my-instagram {
    background: url(http://2.bp.blogspot.com/-y1lyKz1gpew/VjLfviE7bHI/AAAAAAAANSk/bK4YGPwJfpI/s1600/instagram.png) no-repeat top left;
}

#subscribe-btt h2.my-linkedin {
    background: url(http://3.bp.blogspot.com/-g8Svw7M45HQ/VjLfwfBFNEI/AAAAAAAANSc/6kG75VOZyiM/s1600/linkedin.png) no-repeat top left;
}

#subscribe-btt h2.my-youtube {
    background: url(http://2.bp.blogspot.com/-B2Mt0Xr7s1Q/VjLfx4_kfqI/AAAAAAAANS8/5xcxmsRniRc/s1600/youtube.png) no-repeat top left;
}

#subscribe-btt h2.my-rss {
    background: url(http://2.bp.blogspot.com/-OTpOGowrvfg/VjLfxSHIbhI/AAAAAAAANS0/VnHf1jK_WLk/s1600/rss.png) no-repeat top left;
}

#subscribe-btt h2.my-email {
    background: url(http://1.bp.blogspot.com/-F3CIjKLAcrU/VjLfw_yOCdI/AAAAAAAANSo/vqPj9oNwe6c/s1600/mail.png) no-repeat top left;
}

#subscribe-btt .mysocialurl a {
    color: #252e28;
    text-decoration: none;
}

#subscribe-btt .mysocialurl a:hover {
    color: #000000;
    text-decoration: underline;
}
&lt;/style&gt;</pre>
<p>4.Now go to "Layout" and click on "Add a Gadget".</p>
<p>5.Select "HTML/JavaScript" and add the code given below and click "Save".</p>
<pre style="border: 1px solid black; overflow: auto; width: 95%;">&lt;div id="subscribe-btt"&gt;

&lt;h2 class="mysocialurl my-twitter"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-TWITTER-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON TWITTER</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-facebook"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-FACEBOOK-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON FACEBOOK</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-googleplus"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-GOOGLE-PLUS-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON GOOGLE PLUS</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-pinterest"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-PINTEREST-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON PINTEREST</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-instagram"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-INSTAGRAM-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON INSTAGRAM</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-linkedin"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-LINKEDIN-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON LINKEDIN</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-youtube"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-YOUTUBE-URL</strong></span>"&gt;<span style="color: #339966;"><strong>FOLLOW ME ON YOUTUBE</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-rss"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-RSS-FEED-URL</strong></span>"&gt;<span style="color: #339966;"><strong>SUBSCRIBE VIA RSS</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;h2 class="mysocialurl my-email"&gt;&lt;a href="<span style="color: #ff00ff;"><strong>YOUR-FEEDBURNER-EMAIL-SUBSCRIPTION-URL</strong></span>"&gt;<span style="color: #339966;"><strong>SUBSCRIBE VIA EMAIL</strong></span>&lt;/a&gt;&lt;/h2&gt;

&lt;/div&gt;</pre>
<p><span style="font-weight: bold;">NOTE</span> : In above code, replace pink colored codes with your social profile URLs.</p>
<p>Final result will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5540" src="https://www.bloggertipandtrick.net/wp-content/uploads/2010/02/Social-Subscribe-Box-to-Blogger.png" alt="Social Subscribe Box to Blogger" width="424" height="545" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/beautiful-subscribe-section-to-blogger/">How To Add Beautiful Subscribe 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/beautiful-subscribe-section-to-blogger/feed/</wfw:commentRss>
			<slash:comments>24</slash:comments>
		
		
			</item>
	</channel>
</rss>
