<?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/post/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 Create Expandable Post Summaries</title>
		<link>https://www.bloggertipandtrick.net/how-to-create-expandable-post-summaries/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-create-expandable-post-summaries/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 23 Feb 2017 10:40:00 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[post]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/04/how-to-create-expandable-post-summaries.html</guid>

					<description><![CDATA[<p>This tutorial will help you to add expandable post summaries to your blogger blog. After following the steps given here, you can hide (collapse) a portion of each post content and add a "read more" link so that the text can be viewed by the user if he or she wishes. By default, the expanded [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-create-expandable-post-summaries/">How To Create Expandable Post Summaries</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 tutorial will help you to add <strong>expandable post summaries</strong> to your blogger blog. After following the steps given here, you can hide (collapse) a portion of each post content and add a "read more" link so that the text can be viewed by the user if he or she wishes. By default, the expanded content is followed by a "read less" link that the user can click to re-collapse it.</p>
<p>1. Go to "Edit HTML" of your blog.</p>
<p>2. Add this code into the head section of your template. (It is better to add it just after &lt;/b:skin&gt; tag)</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;b:if cond='data:blog.pageType != &quot;static_page&quot;'&gt;
&lt;b:if cond='data:blog.pageType != &quot;item&quot;'&gt;
&lt;b:if cond='data:blog.pageType != &quot;error_page&quot;'&gt;

&lt;script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js' type='text/javascript'&gt;&lt;/script&gt;
&lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/1.4.1/jquery-migrate.min.js' type='text/javascript'&gt;&lt;/script&gt; 
&lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-expander/1.7.0/jquery.expander.min.js' type='text/javascript'&gt;&lt;/script&gt;

&lt;script type='text/javascript'&gt;
//&lt;![CDATA[

jQuery(document).ready(function($) {

$('.post-body').expander({
    slicePoint: 280,
    expandText: 'read more',
    expandPrefix: '&amp;hellip; ',
    userCollapseText: 'read less',
    userCollapsePrefix: ' ',
    summaryClass: 'post-body-summary',
    detailClass: 'post-body-details',
    moreClass: 'post-body-read-more',
    lessClass: 'post-body-read-less',
});
  
});

//]]&gt;
&lt;/script&gt;

&lt;/b:if&gt;
&lt;/b:if&gt;
&lt;/b:if&gt;</pre>
<p>If you have already added jQuery into your template, you can remove below lines from the above code:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;script src='https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js' type='text/javascript'&gt;&lt;/script&gt;
&lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/1.4.1/jquery-migrate.min.js' type='text/javascript'&gt;&lt;/script&gt;</pre>
<p>Note:<br />
<strong>slicePoint</strong>: the number of characters at which the contents will be sliced into two parts.</p>
<p>3. Now save your template and refresh your site. Final result will look like this:</p>
<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/02/Expandable-Post-Summaries-for-Blogger.gif" alt="Expandable Post Summaries for Blogger" width="669" height="322" class="alignnone size-full wp-image-6331" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-create-expandable-post-summaries/">How To Create Expandable Post Summaries</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-create-expandable-post-summaries/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Change Blogger Quick Edit Icon</title>
		<link>https://www.bloggertipandtrick.net/change-blogger-quick-edit-icon/</link>
					<comments>https://www.bloggertipandtrick.net/change-blogger-quick-edit-icon/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 07 Sep 2016 01:27:03 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[post]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6202</guid>

					<description><![CDATA[<p>When you enable "Show Quick Editing" option available under "Configure Blog Posts" settings, little pencil icon will be displayed under each of your blog post. If you don't like about the look of that icon, we can change it with our own image. Go to "Edit HTML" page and find this code: &#60;b:includable id='postQuickEdit' var='post'&#62; [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-blogger-quick-edit-icon/">How To Change Blogger Quick Edit Icon</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 enable "<strong>Show Quick Editing</strong>" option available under "<strong>Configure Blog Posts</strong>" settings, little pencil icon will be displayed under each of your blog post.</p>
<p><img decoding="async" class="alignnone size-full wp-image-6204" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/09/Blogger-Quick-Edit.png" alt="Blogger Quick Edit Icon" width="224" height="53" /></p>
<p>If you don't like about the look of that icon, we can change it with our own image. Go to "Edit HTML" page and find this code:</p>
<pre style="border: 1px solid black; overflow: auto;">              &lt;b:includable id='postQuickEdit' var='post'&gt;
  &lt;b:if cond='data:post.editUrl'&gt;
    &lt;span expr:class='&amp;quot;item-control &amp;quot; + data:post.adminClass'&gt;
      &lt;a expr:href='data:post.editUrl' expr:title='data:top.editPostMsg'&gt;
        &lt;img alt='' class='icon-action' height='18' src='<span style="color: #ff00ff;"><strong>http://img2.blogblog.com/img/icon18_edit_allbkg.gif</strong></span>' width='18'/&gt;
      &lt;/a&gt;
    &lt;/span&gt;
  &lt;/b:if&gt;
&lt;/b:includable&gt;</pre>
<p>In the above code, this is the image address of the <strong>default Blogger Quick Edit Ico</strong>n.</p>
<pre style="border: 1px solid black; overflow: auto;">http://img2.blogblog.com/img/icon18_edit_allbkg.gif</pre>
<p>Change it with an image URL you like.</p>
<p>Save your template and refresh your site to see changes.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-blogger-quick-edit-icon/">How To Change Blogger Quick Edit Icon</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/change-blogger-quick-edit-icon/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Move Newer, Home and Older Posts Links to top of Posts</title>
		<link>https://www.bloggertipandtrick.net/how-to-move-newer-home-and-older-posts/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-move-newer-home-and-older-posts/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 02 Aug 2016 06:00:00 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[post]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/04/how-to-move-newer-home-and-older-posts-links-to-top-of-posts.html</guid>

					<description><![CDATA[<p>Blogger default posts page navigation helps you to navigate through posts pages in your blog. It simply includes "Home", "Newer Posts" and "Older Posts" links. It is normally displayed under blog posts. But if you want to move it to the top of your blog posts, follow the steps given below. Go to the "Edit [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-move-newer-home-and-older-posts/">How To Move Newer, Home and Older Posts Links to top of Posts</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>Blogger default posts page navigation helps you to navigate through posts pages in your blog. It simply includes "Home", "Newer Posts" and "Older Posts" links. It is normally displayed under blog posts. But if you want to move it to the top of your blog posts, follow the steps given below.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/04/Blogger-Page-Navigation.png" alt="Blogger Page Navigation" width="646" height="55" class="alignnone size-full wp-image-6175" /></p>
<p>Go to the "Edit HTML" page of your blog.  Find this code:</p>
<pre style="border:1px solid black;overflow:auto;"><span style="color:#3366ff;font-size:120%;">&lt;b:include name='nextprev'/&gt;</span></pre>
<p>If you want to show posts page navigation links only at the top you can remove this code.<br />
If you want to show it both at the top and the bottom, then do not make any change to it.</p>
<p>Now find this code:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;b:includable id='main' var='top'&gt;
  &lt;b:if cond='data:mobile == &amp;quot;false&amp;quot;'&gt;

    &lt;!-- posts --&gt;
    &lt;div class='blog-posts hfeed'&gt;</pre>
<p>Add this code just below above code:</p>
<pre style="border:1px solid black;overflow:auto;"><span style="font-size:120%;">&lt;b:include name='nextprev'/&gt;</span></pre>
<p>Final result will look like this:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/04/Move-Blogger-Page-Navigation-to-Top.png" alt="Move Blogger Page Navigation to Top" width="680" height="388" class="alignnone size-full wp-image-6174" /></p>
<p>Save the template and refresh your site.</p>
<p><strong>Note:</strong> If you want to style this page navigation differently, use/edit these CSS class in your template :</p>
<pre style="border:1px solid black;overflow:auto;">#blog-pager-newer-link {
    float: left;
}

#blog-pager-older-link {
    float: right;
}

#blog-pager {
    margin: 1em 0;
    text-align: center;
    overflow: hidden;
}</pre>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-move-newer-home-and-older-posts/">How To Move Newer, Home and Older Posts Links to top of Posts</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-move-newer-home-and-older-posts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Hide Blogger Posts with Specific Labels</title>
		<link>https://www.bloggertipandtrick.net/hide-blogger-posts-with-specific-labels/</link>
					<comments>https://www.bloggertipandtrick.net/hide-blogger-posts-with-specific-labels/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 05 Jan 2016 04:49:58 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[labels]]></category>
		<category><![CDATA[post]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6047</guid>

					<description><![CDATA[<p>Do you want to hide blogger posts with a specific label from your site's homepage? If the answer is yes, follow this blogger tutorial to exclude posts from a specific category or specific categories. First go to "Edit HTML" page of your blog. (Note: Please backup your template before doing any changes) Find this line: [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/hide-blogger-posts-with-specific-labels/">How to Hide Blogger Posts with Specific Labels</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 want to <strong>hide blogger posts with a specific label</strong> from your site's homepage? If the answer is yes, follow this blogger tutorial to <strong>exclude posts from a specific category or specific categories</strong>.</p>
<p>First go to "Edit HTML" page of your blog. (Note: Please backup your template before doing any changes)</p>
<p>Find this line:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:include data='post' name='post'/&gt;</pre>
<p>It will look like this:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/01/Hide-Blogger-Posts-with-Specific-Label.png" alt="Hide Blogger Posts with Specific Label" width="680" height="315" class="alignnone size-full wp-image-6048" /></p>
<p>Replace it with below code:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:blog.url == data:blog.homepageUrl'&gt;
&lt;b:loop values='data:post.labels' var='label'&gt;
  &lt;b:if cond='data:label.name != "<span style="color: #ff0000;"><strong>YOUR_LABEL_NAME</strong></span>"'&gt;
	&lt;b:include data='post' name='post'/&gt;
  &lt;/b:if&gt;
&lt;/b:loop&gt;
&lt;b:else/&gt;
   &lt;b:include data='post' name='post'/&gt;
&lt;/b:if&gt;</pre>
<p><strong>Important:</strong> Replace the word <span style="color: #ff0000;"><strong>YOUR_LABEL_NAME</strong></span> with the label name you want to hide posts from.</p>
<p>To exclude posts from multiple categories, use the below code instead of the above code.</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:blog.url == data:blog.homepageUrl'&gt;
&lt;b:loop values='data:post.labels' var='label'&gt;
  &lt;b:if cond='data:label.name != "<span style="color: #008000;"><strong>YOUR_FIRST_LABEL_NAME</strong></span>" and data:label.name != "<strong><span style="color: #008000;">YOUR_SECOND_LABEL_NAME</span></strong>"'&gt;
	&lt;b:include data='post' name='post'/&gt;
  &lt;/b:if&gt;
&lt;/b:loop&gt;
&lt;b:else/&gt;
	&lt;b:include data='post' name='post'/&gt;
&lt;/b:if&gt;</pre>
<p><strong>Important:</strong> Replace the words <span style="color: #008000;"><strong>YOUR_FIRST_LABEL_NAME</strong></span> and <span style="color: #008000;"><strong>YOUR_SECOND_LABEL_NAME</strong></span> with the label names you want to hide posts from.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/hide-blogger-posts-with-specific-labels/">How to Hide Blogger Posts with Specific Labels</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/hide-blogger-posts-with-specific-labels/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 Change Heading Tag For Better SEO in Blogger</title>
		<link>https://www.bloggertipandtrick.net/change-heading-tag-better-seo-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/change-heading-tag-better-seo-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 28 Sep 2015 03:45:00 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[title]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/10/how-to-change-heading-tag-for-better-seo-in-blogger.html</guid>

					<description><![CDATA[<p>Heading Tags (h1, h2, h3, h4, h5) of a website are very important for SEO (Search Engine Optimization). All of Blogger widgets (gadgets) titles use h3 or h2 tags. Many blogger templates are using h2 or h3 tags for post titles. But If you are looking for ways to improve your site SEO, using h1 [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-heading-tag-better-seo-blogger/">How To Change Heading Tag For Better SEO 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>Heading Tags (h1, h2, h3, h4, h5) of a website are very important for SEO (Search Engine Optimization). All of Blogger widgets (gadgets) titles use h3 or h2 tags. Many blogger templates are using h2 or h3 tags for post titles. But If you are looking for ways to improve your site SEO, using h1 tags for post titles is a one way to do it.</p>
<p>Follow the simple steps below to do it:</p>
<p>1.Login to your Blogger account and go to "Edit HTML".</p>
<p>2.Now you have to find the code responsible for creating post tiles.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5499" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/10/Blogger-Post-Title-Code.png" alt="Blogger Post Title Code" width="700" height="364" /></p>
<p>Find the code 1. But if you can not find it, find the code 2 (you will see code 1 or code 2 in 2 locations in your theme):</p>
<p><strong>Code 1:</strong></p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:post.title'&gt;
  &lt;<span style="color: #ff0000;"><strong>h3</strong></span> class='post-title entry-title' itemprop='headline'&gt;
  &lt;b:if cond='data:post.link'&gt;
	&lt;a expr:href='data:post.link'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
  &lt;b:else/&gt;
	&lt;b:if cond='data:post.url'&gt;
	  &lt;b:if cond='data:blog.url != data:post.url'&gt;
		&lt;a expr:href='data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
	  &lt;b:else/&gt;
		&lt;data:post.title/&gt;
	  &lt;/b:if&gt;
	&lt;b:else/&gt;
	  &lt;data:post.title/&gt;
	&lt;/b:if&gt;
  &lt;/b:if&gt;
  &lt;/<span style="color: #ff0000;"><strong>h3</strong></span>&gt;
&lt;/b:if&gt;</pre>
<p><strong>Code 2:</strong></p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:post.title'&gt;
  &lt;<span style="color: #ff0000;"><strong>h3</strong></span> class='post-title entry-title' itemprop='headline'&gt;
  &lt;b:if cond='data:post.link or (data:post.url and data:blog.url != data:post.url)'&gt;
	&lt;a expr:href='data:post.link ? data:post.link : data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
  &lt;b:else/&gt;
	&lt;data:post.title/&gt;
  &lt;/b:if&gt;
  &lt;/<span style="color: #ff0000;"><strong>h3</strong></span>&gt;
&lt;/b:if&gt;</pre>
<p><span style="font-weight: bold;">Note:</span> These codes have some differences according to your template. If you can't find code 1 or code 2, search it replacing <span style="font-weight: bold; color: #ff0000;">h3</span> with <span style="font-weight: bold; color: #ff0000;">h2</span>.</p>
<p>3.Now if you found code 1, replace it with below code (you have replace both code 1):</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:post.title'&gt;
  &lt;<span style="color: #ff0000;"><strong>h1</strong></span> class='post-title entry-title' itemprop='headline'&gt;
  &lt;b:if cond='data:post.link'&gt;
	&lt;a expr:href='data:post.link'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
  &lt;b:else/&gt;
	&lt;b:if cond='data:post.url'&gt;
	  &lt;b:if cond='data:blog.url != data:post.url'&gt;
		&lt;a expr:href='data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
	  &lt;b:else/&gt;
		&lt;data:post.title/&gt;
	  &lt;/b:if&gt;
	&lt;b:else/&gt;
	  &lt;data:post.title/&gt;
	&lt;/b:if&gt;
  &lt;/b:if&gt;
  &lt;/<span style="color: #ff0000;"><strong>h1</strong></span>&gt;
&lt;/b:if&gt;</pre>
<p>If you found code 2, replace it with below code (you have replace both code 2):</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:post.title'&gt;
  &lt;<span style="color: #ff0000;"><strong>h1</strong></span> class='post-title entry-title' itemprop='headline'&gt;
  &lt;b:if cond='data:post.link or (data:post.url and data:blog.url != data:post.url)'&gt;
	&lt;a expr:href='data:post.link ? data:post.link : data:post.url'&gt;&lt;data:post.title/&gt;&lt;/a&gt;
  &lt;b:else/&gt;
	&lt;data:post.title/&gt;
  &lt;/b:if&gt;
  &lt;/<span style="color: #ff0000;"><strong>h1</strong></span>&gt;
&lt;/b:if&gt;</pre>
<p>4.Click on "Save template" and now you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-heading-tag-better-seo-blogger/">How To Change Heading Tag For Better SEO 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/change-heading-tag-better-seo-blogger/feed/</wfw:commentRss>
			<slash:comments>74</slash:comments>
		
		
			</item>
		<item>
		<title>How to Hide Blogger Post Content from Homepage</title>
		<link>https://www.bloggertipandtrick.net/hide-blogger-post-content-homepage/</link>
					<comments>https://www.bloggertipandtrick.net/hide-blogger-post-content-homepage/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 21 May 2015 12:53:58 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[post]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5394</guid>

					<description><![CDATA[<p>This tutorial will help you if you're looking for display only post titles on your site home page. After applying this modification into your Blogger theme, no longer your post content will be displayed on your blog homepage. A Visitor need to click on post title to go post page and view the post content. [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/hide-blogger-post-content-homepage/">How to Hide Blogger Post Content from Homepage</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 tutorial will help you if you're looking for display only post titles on your site home page. After applying this modification into your Blogger theme, no longer your post content will be displayed on your blog homepage. A Visitor need to click on post title to go post page and view the post content. First backup your blogger theme first before make any change into it. Now go to "Edit HTML" page of your theme.</p>
<p>Find this piece of code:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">&lt;b:if cond='data:blog.metaDescription == &amp;quot;&amp;quot;'&gt;
  &lt;!-- Then use the post body as the schema.org description,
	  for good G+/FB snippeting. --&gt;
  &lt;div class='post-body entry-content' expr:id='&amp;quot;post-body-&amp;quot; + data:post.id' itemprop='description articleBody'&gt;
	&lt;data:post.body/&gt;
	&lt;div style='clear: both;'/&gt; &lt;!-- clear for photos floats --&gt;
  &lt;/div&gt;
&lt;b:else/&gt;
  &lt;div class='post-body entry-content' expr:id='&amp;quot;post-body-&amp;quot; + data:post.id' itemprop='articleBody'&gt;
	&lt;data:post.body/&gt;
	&lt;div style='clear: both;'/&gt; &lt;!-- clear for photos floats --&gt;
  &lt;/div&gt;
&lt;/b:if&gt;</pre>
<p>Replace it below code:</p>
<pre style="border: 1px solid black; overflow: auto; width: 90%;">&lt;b:if cond='data:blog.pageType != &quot;index&quot;'&gt;

&lt;b:if cond='data:blog.metaDescription == &amp;quot;&amp;quot;'&gt;
  &lt;!-- Then use the post body as the schema.org description,
	  for good G+/FB snippeting. --&gt;
  &lt;div class='post-body entry-content' expr:id='&amp;quot;post-body-&amp;quot; + data:post.id' itemprop='description articleBody'&gt;
	&lt;data:post.body/&gt;
	&lt;div style='clear: both;'/&gt; &lt;!-- clear for photos floats --&gt;
  &lt;/div&gt;
&lt;b:else/&gt;
  &lt;div class='post-body entry-content' expr:id='&amp;quot;post-body-&amp;quot; + data:post.id' itemprop='articleBody'&gt;
	&lt;data:post.body/&gt;
	&lt;div style='clear: both;'/&gt; &lt;!-- clear for photos floats --&gt;
  &lt;/div&gt;
&lt;/b:if&gt;

&lt;/b:if&gt;</pre>
<p>Preview your theme before save changes. If everything is ok, save your theme and refresh your site to see changes.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/hide-blogger-post-content-homepage/">How to Hide Blogger Post Content from Homepage</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/hide-blogger-post-content-homepage/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add an Advertisement Below Post Title in Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-advertisement-below-post-title-in-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-advertisement-below-post-title-in-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 09 Nov 2014 02:40:07 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[post]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5079</guid>

					<description><![CDATA[<p>This tutorial explains how to display an advertisement under post title in a Blogger blog posts. To add a ad banner just below post title, first you need to go to "Edit HTML" page of your blog. After that find this code (You will find it 2 times): &#60;div class='post-header'&#62; &#60;div class='post-header-line-1'/&#62; &#60;/div&#62; Now paste [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-advertisement-below-post-title-in-blogger/">How to Add an Advertisement Below Post Title 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>This tutorial explains how to display an advertisement under post title in a Blogger blog posts. To add a ad banner just below post title, first you need to go to "Edit HTML" page of your blog.</p>
<p>After that find this code (You will find it <strong>2 times</strong>):</p>
<pre style="width: 50%; overflow: auto; border: 1px solid black;">&lt;div class='post-header'&gt;
&lt;div class='post-header-line-1'/&gt;
&lt;/div&gt;</pre>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/11/Blogger-Edit-HTML.png" alt="Blogger Edit HTML" width="550" height="396" class="alignnone size-full wp-image-5080" /></p>
<p>Now paste your advertisement code <strong>just below</strong> above code (you have to paste it twice, because above code available in 2 places).</p>
<p><strong>Note:</strong> If you need to display your advertisement <strong>only in post pages</strong>, wrap your advertisement code like this:</p>
<pre style="width: 90%; overflow: auto; border: 1px solid black;"><span style="color: #ff00ff;">&lt;b:if cond='data:blog.pageType == &quot;item&quot;'&gt;</span>
Your Ad Code
<span style="color: #ff00ff;">&lt;/b:if&gt;</span></pre>
<p>Look at this image to understand it well:</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/11/Ad-Below-Post-Title-in-Blogger.png" alt="Ad Below Post Title in Blogger" width="550" height="370" class="alignnone size-full wp-image-5081" /></p>
<p>Save your Blogger template.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-advertisement-below-post-title-in-blogger/">How to Add an Advertisement Below Post Title 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/add-advertisement-below-post-title-in-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
