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

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

					<description><![CDATA[<p>Do you need to disable text selection/text highlighting on your website without using any JavaScript code? If the answer is yes, add this CSS code into your website to prevent users selecting text on your website or blog. body { -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } If you're using Blogger, [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-text-selection-highlighting-using-css/">How to Disable Text Selection using CSS</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/2025/07/How-to-Disable-Text-Selection-using-CSS.jpg" alt="How to Disable Text Selection using CSS" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7263" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Disable-Text-Selection-using-CSS.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Disable-Text-Selection-using-CSS-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>Do you need to disable text selection/text highlighting on your website without using any JavaScript code? If the answer is yes, add this CSS code into your website to prevent users selecting text on your website or blog.</p>
<pre>body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}</pre>
<p>If you're using Blogger, add the CSS code just before <strong>]]&gt;&lt;/b:skin&gt;</strong>. For WordPress users, go to your WordPress Dashboard → Appearance → Customize → Additional CSS and paste the code there.</p>
<p><strong>Note:</strong> This CSS works on virtually any website and is highly compatible with all major web browsers.</p>
<p>To see it in action, try selecting the text below.</p>
<p style="-webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background: #eeeeee; border: 1px solid #dddddd;padding:5px;">Hi, I am an unselectable text. If you are not sure, try to select me.</p>
<p>If you want to disable text selection for a specific part of your website instead of the entire page, you can replace the body selector with <strong>any HTML tag</strong>, <strong>class</strong>, or <strong>ID</strong>.</p>
<p>To disable selection on a &lt;div&gt; with a specific ID:</p>
<pre>#my-section {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}</pre>
<p>To target a class:</p>
<pre>.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}</pre>
<p>This way, you can apply the effect only where it's needed, such as on buttons, widgets, or specific content blocks, without affecting the entire page.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-text-selection-highlighting-using-css/">How to Disable Text Selection using CSS</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-text-selection-highlighting-using-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Use Prettify Syntax Highlighter With Blogger</title>
		<link>https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/</link>
					<comments>https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 08 Jul 2025 03:05:44 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=3922</guid>

					<description><![CDATA[<p>If you're a developer, tech blogger, or just love sharing code on your Blogger (Blogspot) blog, adding a good syntax highlighter is a must for readability and professional presentation. One of the lightweight tools you can still use is Google Code Prettify, a JavaScript-based syntax highlighter. This tutorial shows how to easily integrate the Prettify [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/">How to Use Prettify Syntax Highlighter With 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 decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/How-to-Use-Prettify-Syntax-Highlighter-With-Blogger.jpg" alt="How to Use Prettify Syntax Highlighter With Blogger" width="1536" height="924" class="singular-featured-image alignnone size-full wp-image-7232" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/How-to-Use-Prettify-Syntax-Highlighter-With-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/How-to-Use-Prettify-Syntax-Highlighter-With-Blogger-768x462.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>If you're a developer, tech blogger, or just love sharing code on your Blogger (Blogspot) blog, adding a good syntax highlighter is a must for readability and professional presentation. One of the lightweight tools you can still use is <strong>Google Code Prettify</strong>, a JavaScript-based syntax highlighter.</p>
<p>This tutorial shows how to easily integrate the <strong>Prettify</strong> into your Blogger blog, with live examples and alternate skin options.</p>
<p><span style="color:#009688"><strong>Step 1:</strong></span> Login to your Blogger account and go to the "<strong>Edit HTML</strong>" page of your blog.</p>
<p><span style="color:#009688"><strong>Step 2:</strong></span> You can load the JavaScript and CSS for prettify via one URL. Add this code just below <strong>&lt;head&gt;</strong> tag:</p>
<pre style="border:1px solid black;overflow:auto;font-size:120%;padding:15px 10px;"><strong>&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js'&gt;&lt;/script&gt;</strong></pre>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Google-Code-Prettify-Auto-Loader.png" alt="Add Google Code Prettify Auto Loader" width="1011" height="411" class="alignnone size-full wp-image-7238" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Google-Code-Prettify-Auto-Loader.png 1011w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Google-Code-Prettify-Auto-Loader-768x312.png 768w" sizes="auto, (max-width: 1011px) 100vw, 1011px" /></p>
<p><span style="color:#009688"><strong>Step 3:</strong></span> Save your template. You have successfully added <strong>Prettify auto-loader</strong> to your Blogger blog. Above code will load the entire system and schedule the prettifier to run on page load.</p>
<p><span style="color:#009688"><strong>Step 4:</strong></span> Now when you want to display a code snippet in your blogger post, go to the Blogger post editor and select "<strong>HTML view</strong>".</p>
<p><span style="color:#009688"><strong>Step 5:</strong></span> Wrap your code snippet inside a <span style="color: #0000ff;"><strong>&lt;pre&gt;</strong></span> tag with the <span style="color: #ff00ff;"><strong>prettyprint</strong></span> class like this:</p>
<pre style="border: 1px solid black; overflow: auto;"><strong>&lt;pre class="<span style="color: #ff00ff;">prettyprint</span>"&gt;
source code here
&lt;/pre&gt;</strong></pre>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3924" alt="Add Source Code to Post Editor HTML" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/add-source-code-to-post-editor-html.jpg" width="664" height="365" /></p>
<p>Code Example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;pre class="prettyprint"&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
// Say hello world until the user starts questioning
// the meaningfulness of their existence.
function helloWorld(world) {
  for (var i = 42; --i &amp;gt;= 0;) {
    alert('Hello ' + String(world));
  }
}
&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
p { color: pink }
b { color: blue }
u { color: &amp;quot;umber&amp;quot; }
&amp;lt;/style&amp;gt;
&lt;/pre&gt;</pre>
<p><strong>Note:</strong> You must <a href='https://www.bloggertipandtrick.net/tools/html-encoder/' target='_blank'><strong>escape special characters</strong></a> in your code snippet before adding it to the HTML. This ensures the browser displays the code correctly instead of interpreting it as actual markup.</p>
<p><span style="color:#009688"><strong>Step 6:</strong></span> Publish/Update your post and view your post. It will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3925" alt="Google Code Prettify Default Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-default-skin.jpg" width="522" height="302" /></p>
<h2>How to Add Different Code Styles</h2>
<p>Only you need to do is, replace "<span style="color:#009688"><strong>Step 2</strong></span>" code with below codes.</p>
<h3>Desert Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">desert</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3926" alt="Prettify Desert Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-desert-skin.jpg" width="522" height="302" /></p>
<h3>Sunburst Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">sunburst</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3927" alt="Prettify Sunburst Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-sunburst-skin.jpg" width="522" height="323" /></p>
<h3>Sons-Of-Obsidian Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">sons-of-obsidian</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3928" alt="Prettify Sons-Of-Obsidian Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-sons-of-obsidian-skin.jpg" width="522" height="298" /></p>
<h3>Doxy Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">doxy</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3929" alt="Prettify Doxy Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-doxy-skin.jpg" width="518" height="321" /></p>
<h2>How to Specify the Language of Your Code</h2>
<p>File extensions supported by default include: "<strong>bsh</strong>", "<strong>c</strong>", "<strong>cc</strong>", "<strong>cpp</strong>", "<strong>cs</strong>", "<strong>csh</strong>", "<strong>cyc</strong>", "<strong>cv</strong>", "<strong>htm</strong>", "<strong>html</strong>", "<strong>java</strong>", "<strong>js</strong>", "<strong>m</strong>", "<strong>mxml</strong>", "<strong>perl</strong>", "<strong>pl</strong>", "<strong>pm</strong>", "<strong>py</strong>", "<strong>rb</strong>", "<strong>sh</strong>", "<strong>xhtml</strong>", "<strong>xml</strong>", "<strong>xsl</strong>"</p>
<p>The <span style="color: #0000ff;"><strong>lang-*</strong></span> class specifies the language file extensions.</p>
<p>You can specify other languages by specifying the language extension along with the prettyprint class.</p>
<p>For example, The syntax-highlighting functions contained in lang-css.js will not be called without adding the class "<span style="color: #ff00ff;"><strong>lang-css</strong></span>" to the &lt;pre&gt; tag. So you can add your CSS codes like this:</p>
<pre style="border: 1px solid black; overflow: auto;"><strong>&lt;pre class="prettyprint <span style="color: #ff00ff;">lang-css</span>"&gt;
CSS code here
&lt;/pre&gt;</strong></pre>
<p>Example:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3932" alt="Prettify Add CSS Codes" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-add-css-codes.jpg" width="664" height="365" /></p>
<p>View the <a href="https://github.com/googlearchive/code-prettify/tree/master/src" target="_blank" rel="nofollow">complete list of Prettify language handlers</a> on GitHub.</p>
<h2>How to Display Codes with Line Numbers</h2>
<p>To display line numbers, use "<span style="color: #ff00ff;"><strong>linenums</strong></span>" class like this:</p>
<pre style="border: 1px solid black; overflow: auto;"><strong>&lt;pre class="prettyprint <span style="color: #ff00ff;">linenums</span>"&gt;
source code here
&lt;/pre&gt;</strong></pre>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3930" alt="Prettify with Line Numbers" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-add-line-numbers.jpg" width="664" height="365" /></p>
<p>Code Example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;pre class="prettyprint linenums"&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
// Say hello world until the user starts questioning
// the meaningfulness of their existence.
function helloWorld(world) {
  for (var i = 42; --i &amp;gt;= 0;) {
    alert('Hello ' + String(world));
  }
}
&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
p { color: pink }
b { color: blue }
u { color: &amp;quot;umber&amp;quot; }
&amp;lt;/style&amp;gt;
&lt;/pre&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3931" alt="Prettify Default Skin with Line Numbers" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-default-skin-with-line-numbers.jpg" width="515" height="300" /></p>
<p>Below code will display a CSS code with line numbers:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;pre class="<span style="color: #0000ff;">prettyprint</span> <span style="color: #ff00ff;">lang-css</span> <span style="color: #ff0000;">linenums</span>"&gt;
body{background:#000000 url(http://3.bp.blogspot.com/-vB6rbTuTh34/UEw9OyUKQJI/AAAAAAAAIoQ/A3dwg6dKC_g/s1600/background.jpg) center top no-repeat;color:#555555;font-family: Arial, Helvetica, Sans-serif;font-size: 13px;margin:0px;padding:0px;}
a:link,a:visited{color:#C11112;text-decoration:underline;outline:none;}
a:hover{color:#FE3D36;text-decoration:none;outline:none;}
a img{border-width:0}
#body-wrapper{margin:0px;padding:0px;}
&lt;/pre&gt;</pre>
<p><strong>Note:</strong> The codes above work not only on Blogger but also on other websites. Simply add the code from <span style="color:#009688"><strong>Step 2</strong></span> right after the <strong>&lt;head&gt;</strong> tag of your webpage, then use any of the provided examples to display syntax-highlighted code.</p>
<p>Google Code Prettify is still a great choice for lightweight syntax highlighting on Blogger or any other website, especially if you don't want to use third-party script builders. It works out-of-the-box, <strong>supports multiple languages</strong>, and <strong>has various themes</strong> you can apply in seconds.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/">How to Use Prettify Syntax Highlighter With 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/prettify-syntax-highlighter-for-blogger-blogspot/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Change Colors of Selected/Highlighted Texts</title>
		<link>https://www.bloggertipandtrick.net/how-to-change-colors-of-selected-text/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-change-colors-of-selected-text/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 29 Jul 2017 01:40:00 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2010/05/how-to-change-colors-of-selectedhighlighted-texts.html</guid>

					<description><![CDATA[<p>This quick tip explains how to change the colors of selected/highlighted portion of your website. This can be done adding few line of CSS codes into your website. It has good browser support and works on all modern web browsers. Follow the steps given below to change text selection colors. 1.If you are using Blogger, [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-change-colors-of-selected-text/">How To Change Colors of Selected/Highlighted Texts</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 quick tip explains how to change the colors of selected/highlighted portion of your website. This can be done adding few line of CSS codes into your website. It has good browser support and works on all modern web browsers. Follow the steps given below to change text selection colors.</p>
<p>1.If you are using Blogger, Go to the "Edit HTML" page.</p>
<p>2.Copy below code and paste it <span style="color: #3333ff;">just before</span> the <span style="font-weight: bold;color: #ff0000;">&lt;/head&gt;</span> tag.</p>
<pre style="width: 95%; overflow: auto; border: 1px solid black;">&lt;style type='text/css'&gt;
/* Make selected text white on a #cc0000 background */
::-moz-selection {
    background: #cc0000;
    color: #ffffff;
}

::selection {
    background: #cc0000;
    color: #ffffff;
}

/* Make selected text inside code tag white on a #333333 background */
code::-moz-selection {
    background: #333333;
    color: #ffffff;
}

code::selection {
    background: #333333;
    color: #ffffff;
}

/* Make selected text inside pre tag white on a #44ceff background */
pre::-moz-selection {
    background: #44ceff;
    color: #ffffff;
}

pre::selection {
    background: #44ceff;
    color: #ffffff;
}
&lt;/style&gt;</pre>
<p><span style="font-weight: bold;">Note :</span> You can change above hex color codes as you like.</p>
<p>4.Save your template and refresh your website. Now try to select texts. Final result will be look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5532" src="https://www.bloggertipandtrick.net/wp-content/uploads/2010/05/Change-Colors-of-Selected-Highlighted-Texts.png" alt="Change Colors of Selected/Highlighted Texts" width="559" height="333" /></p>
<p>If you are using <strong>WordPress</strong>, add above code(without style tags) into your <strong>style.css</strong> file.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-change-colors-of-selected-text/">How To Change Colors of Selected/Highlighted Texts</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-change-colors-of-selected-text/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>How to Style NoFollow Links</title>
		<link>https://www.bloggertipandtrick.net/style-nofollow-links/</link>
					<comments>https://www.bloggertipandtrick.net/style-nofollow-links/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 08 Apr 2017 06:03:35 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6452</guid>

					<description><![CDATA[<p>When you add "nofollow" value to the rel attribute of an HTML link, it basically instructs to a search engine to just ignore that link. Do you want to style these nofollow links of your website using CSS? All you have to do is write styles for this CSS selector: a[rel~="nofollow"] We can write styles [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/style-nofollow-links/">How to Style NoFollow Links</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 add "<strong>nofollow</strong>" value to the rel attribute of an HTML link, it basically instructs to a search engine to just ignore that link. Do you want to style these nofollow links of your website using CSS? All you have to do is write styles for this CSS selector:</p>
<pre style="border: 1px solid black; overflow: auto; font-size: 200%; line-height: 2;">a[rel~="nofollow"]</pre>
<p>We can write styles for above CSS selector like this:</p>
<pre style="border: 1px solid black; overflow: auto; font-size: 120%; line-height: 1.2;"><span style="color: #ff00ff;"><strong>a[rel~="nofollow"]</strong></span> {
    background: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}</pre>
<p>Note: Above code is only an example. You can create your own CSS.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/style-nofollow-links/">How to Style NoFollow Links</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/style-nofollow-links/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Remove Blogger Default CSS</title>
		<link>https://www.bloggertipandtrick.net/remove-blogger-default-css/</link>
					<comments>https://www.bloggertipandtrick.net/remove-blogger-default-css/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 03 Apr 2017 00:51:40 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[css]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6429</guid>

					<description><![CDATA[<p>If you view the HTML source of your blog, you will see Blogger is automatically adding a CSS file called "widget_css_bundle.css" or "css_bundle_v2.css" to your template. This is a large CSS file which containing default styles for comments, share buttons, blogger widgets like popular posts widget, labels widget, archive widget, contact form widget and more. [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/remove-blogger-default-css/">How to Remove Blogger Default CSS</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 view the HTML source of your blog, you will see Blogger is automatically adding a CSS file called "<strong>widget_css_bundle.css</strong>" or "<strong>css_bundle_v2.css</strong>" to your template. This is a large CSS file which containing default styles for comments, share buttons, blogger widgets like popular posts widget, labels widget, archive widget, contact form widget and more. But if you are going to add your own styles to the template without depending on these default styles or if you want to fix eliminate render-blocking CSS problem removing this CSS file, this tutorial will help you.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6432" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Blogger-Default-CSS-Bundle.jpg" alt="Blogger Default CSS Bundle" width="700" height="321" /></p>
<p>1.Go to "Edit HTML" of your blog.</p>
<p>2.Find the start of html tag (<span style="color: #ff00ff;"><strong>&lt;html</strong></span>). It will nearly look like this:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;html b:version='2' class='v2' expr:dir='data:blog.languageDirection' lang='en-US' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'&gt;</pre>
<p>3. Now add <span style="color: #339966;"><strong>b:css='false'</strong></span> into the html tag like this:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;html <span style="color: #339966;">b:css='false'</span> b:version='2' class='v2' expr:dir='data:blog.languageDirection' lang='en-US' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'&gt;</pre>
<p>Look at the image given below:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6433" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/Remove-Blogger-Default-CSS.jpg" alt="Remove Blogger Default CSS" width="700" height="354" /></p>
<p>Save the template and refresh your website. Now check HTML source again. You will no longer see any default CSS styles from Blogger.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/remove-blogger-default-css/">How to Remove Blogger Default CSS</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/remove-blogger-default-css/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create Rounded Images with CSS</title>
		<link>https://www.bloggertipandtrick.net/rounded-images-with-css/</link>
					<comments>https://www.bloggertipandtrick.net/rounded-images-with-css/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 12 Aug 2016 01:23:39 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[image]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6185</guid>

					<description><![CDATA[<p>Do you want to display circular images on your website? With CSS3, this can be done with in few seconds. You can use CSS border-radius property to make rounded images. Just add below CSS code into your style-sheet. .img-rounded { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; } Note: If you are using Blogger, go to [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/rounded-images-with-css/">How to Create Rounded Images with CSS</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 loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/08/Rounded-Images-with-CSS3.jpg" alt="Rounded Images with CSS3" title="Rounded Images with CSS3" width="681" height="400" class="alignnone size-full wp-image-6188" /></p>
<p>Do you want to display <strong>circular images</strong> on your website? With CSS3, this can be done with in few seconds. You can use CSS <span style="color: #ff0000;"><strong>border-radius</strong></span> property to make rounded images. Just add below CSS code into your style-sheet.</p>
<pre style="border: 1px solid black; overflow: auto;">.img-rounded {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}</pre>
<p><strong>Note:</strong> If you are using Blogger, go to "Edit HTML" and add it just before ]]&gt;&lt;/b:skin&gt; tag.</p>
<p>Now when you want to make an image circular, just add "<span style="color: #008000;"><strong>img-rounded</strong></span>" CSS class into it. Look at the example below:</p>
<pre style="border: 1px solid black; overflow: auto; font-size: 110%;">&lt;img <strong><span style="color: #ff00ff;">class="</span><span style="color: #008000;">img-rounded</span><span style="color: #ff00ff;">"</span></strong> src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/08/rounded-images-with-css.jpg" /&gt;</pre>
<p>Result:</p>
<p><img decoding="async" style="-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;" src="https://www.bloggertipandtrick.net/wp-content/uploads/2016/08/rounded-images-with-css.jpg" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/rounded-images-with-css/">How to Create Rounded Images with CSS</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/rounded-images-with-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add Flat UI Share Buttons to Blogger</title>
		<link>https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 01 Jul 2016 06:13:38 +0000</pubDate>
				<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[twitter]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6166</guid>

					<description><![CDATA[<p>Do you want to add simple and quick loading, non-JavaScript share buttons to your blogger blog? Then follow the steps given below to add Flat UI Share Buttons to your blog. 1.Login to your blogger account and go to "Edit HTML" page. 2.Scroll down to where you see &#60;/head&#62; tag . 3.Copy below code and [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/">How to Add Flat UI Share Buttons 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 want to add simple and quick loading, non-JavaScript share buttons to your blogger blog? Then follow the steps given below to add <strong>Flat UI Share Buttons</strong> to your blog.</p>
<p>1.Login to your blogger account and go to "Edit HTML" page.</p>
<p>2.Scroll down to where you see &lt;/head&gt; tag .</p>
<p>3.Copy below code and paste it just before the &lt;/head&gt; tag:</p>
<pre style="border: 1px solid black; overflow: auto; width: 95%;">&lt;style type='text/css'&gt;
/* Blogger Share Buttons by www.bloggertipandtrick.net */
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,300,300italic,700,700italic,600,600italic&amp;subset=latin,latin-ext);
.blogger-share-buttons{color:rgb(126,126,126);display:block;font-family:'Open Sans',Tahoma,Verdana,Arial,sans-serif;font-size:14px;font-weight:normal;height:auto;line-height:24px;margin-top:10px;margin-bottom:10px;width:100%;width:100%;text-align:center;}
.blogger-share-buttons div{display:block;width:120px;margin:2px;display:inline-block;vertical-align:middle;}
.blogger-share-buttons a{text-decoration:none;display:block;padding-left:20px;color:#fff !important;font-weight:bold;-webkit-transition:background-color .3s;-moz-transition:background-color .3s;transition:background-color .3s;}
.blogger-share-buttons a{padding:7px 10px 7px 10px;}
.blogger-share-buttons a i{margin-right:10px;}
.blogger-share-buttons .fb-sharebtn a{background:#3B5999;}
.blogger-share-buttons .twitter-sharebtn a{background:#01BBF6;}
.blogger-share-buttons .gplus-sharebtn a{background:#D54135;}
.blogger-share-buttons .linkedin-sharebtn a{background:#136F9B;}
.blogger-share-buttons .pinterest-sharebtn a{background:#CB2027;}
.blogger-share-buttons .delicious-sharebtn a{background:#3173D1;}
.blogger-share-buttons .fb-sharebtn a:hover{background-color:rgb(50,75,129);}
.blogger-share-buttons .twitter-sharebtn a:hover{background-color:rgb(1,159,211);}
.blogger-share-buttons .gplus-sharebtn a:hover{background-color:rgb(191,52,40);}
.blogger-share-buttons .linkedin-sharebtn a:hover{background-color:rgb(15,89,125);}
.blogger-share-buttons .pinterest-sharebtn a:hover{background-color:rgb(174,28,35);}
.blogger-share-buttons .delicious-sharebtn a:hover{background-color:rgb(38,90,168);}
&lt;/style&gt;</pre>
<p>4. Now find this line:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;b:includable id='post' var='post'&gt;</pre>
<p>5. From that line scroll down slowly until you see a code more similar to this:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;b:if cond='data:post.title'&gt;
  &lt;h3 class='post-title entry-title' itemprop='name'&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;/h3&gt;
&lt;/b:if&gt;</pre>
<p>6.Copy below code and paste it after the above code:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;">&lt;!-- Blogger Share Buttons by www.bloggertipandtrick.net --&gt;
&lt;div class='blogger-share-buttons'&gt;
    &lt;div class='fb-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://www.facebook.com/share.php?v=4&amp;amp;src=bm&amp;amp;u=&amp;quot; + data:post.url + &amp;quot;&amp;amp;t=&amp;quot; + data:post.title' onclick='window.open(this.href,&amp;quot;sharer&amp;quot;,&amp;quot;toolbar=0,status=0,width=626,height=436&amp;quot;); return false;' rel='nofollow' target='_blank' title='Share this on Facebook'&gt;&lt;i class='fa fa-facebook' aria-hidden='true'&gt;&lt;/i&gt; Facebook&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class='twitter-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://twitter.com/home?status=&amp;quot; + data:post.title + &amp;quot; -- &amp;quot; + data:post.url' rel='nofollow' target='_blank' title='Tweet This!'&gt;&lt;i class='fa fa-twitter' aria-hidden='true'&gt;&lt;/i&gt; Twitter&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class='gplus-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://plus.google.com/share?url=&amp;quot; + data:post.url' onclick='javascript:window.open(this.href,   &amp;quot;&amp;quot;, &amp;quot;menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600&amp;quot;);return false;' rel='nofollow' target='_blank' title='Share this on Google+'&gt;&lt;i class='fa fa-google-plus' aria-hidden='true'&gt;&lt;/i&gt; Google+&lt;/a&gt;
    &lt;/div&gt;
    &lt;div class='linkedin-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://www.linkedin.com/shareArticle?mini=true&amp;amp;title=&amp;quot; + data:post.title + &amp;quot;&amp;amp;url=&amp;quot; + data:post.url' rel='nofollow' target='_blank' title='Share this on Linkedin'&gt;&lt;i class='fa fa-linkedin' aria-hidden='true'&gt;&lt;/i&gt; Linkedin&lt;/a&gt;
    &lt;/div&gt;
    &lt;b:if cond='data:post.firstImageUrl'&gt;&lt;div class='pinterest-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;https://pinterest.com/pin/create/button/?source_url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;media=&amp;quot; + data:post.firstImageUrl + &amp;quot;&amp;amp;description=&amp;quot; + data:post.title' rel='nofollow' target='_blank' title='Share on Pinterest'&gt;&lt;i class='fa fa-pinterest' aria-hidden='true'&gt;&lt;/i&gt; Pinterest&lt;/a&gt;
    &lt;/div&gt;&lt;/b:if&gt;
    &lt;div class='delicious-sharebtn'&gt;
		&lt;a expr:href='&amp;quot;http://del.icio.us/post?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;title=&amp;quot; + data:post.title' rel='nofollow' target='_blank' title='Share this on Delicious'&gt;&lt;i class='fa fa-delicious' aria-hidden='true'&gt;&lt;/i&gt; Delicious&lt;/a&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<p>7. Save your Blogger 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/2016/07/Flat-UI-Share-Buttons-to-Blogger.png" alt="Flat UI Share Buttons to Blogger" width="787" height="91" class="alignnone size-full wp-image-6168" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2016/07/Flat-UI-Share-Buttons-to-Blogger.png 787w, https://www.bloggertipandtrick.net/wp-content/uploads/2016/07/Flat-UI-Share-Buttons-to-Blogger-768x89.png 768w" sizes="auto, (max-width: 787px) 100vw, 787px" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/flat-ui-share-buttons-blogger/">How to Add Flat UI Share Buttons 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/flat-ui-share-buttons-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Remove/Hide Blogger Navbar</title>
		<link>https://www.bloggertipandtrick.net/how-to-remove-blogger-navbar/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-remove-blogger-navbar/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 30 Jan 2016 03:05:00 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[css]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/03/how-to-remove-blogger-navbar.html</guid>

					<description><![CDATA[<p>Don't you like to keep the default Navbar in your Blogger blog? This tutorial will show you how to quickly remove/hide blogger navbar from your blog. Follow the steps given below. Go to "Edit HTML" of your blog. Copy below code and paste it just before ]]&#62;&#60;/b:skin&#62; tag: #navbar-iframe{height:0;visibility:hidden;display:none;} It will look like this: Now [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-remove-blogger-navbar/">How To Remove/Hide Blogger Navbar</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>Don't you like to keep the default Navbar in your Blogger blog? This tutorial will show you how to quickly <strong>remove/hide blogger navbar</strong> from your blog. Follow the steps given below.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6080" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/03/hide-blogger-navbar.png" alt="Hide Blogger Navbar" width="530" height="445" /></p>
<p>Go to "Edit HTML" of your blog. Copy below code and paste it just before <span style="color: #0000ff;"><strong>]]&gt;&lt;/b:skin&gt;</strong></span> tag:</p>
<pre style="padding: 10px; overflow: auto; border: 1px solid black;"><span style="font-size: 130%; color: #ff00ff;">#navbar-iframe{height:0;visibility:hidden;display:none;}</span></pre>
<p>It will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6079" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/03/Edit-HTML-Code-to-Hide-Blogger-Navbar.png" alt="Edit HTML Code to Hide Blogger Navbar" width="550" height="364" /></p>
<p>Now save your template.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-remove-blogger-navbar/">How To Remove/Hide Blogger Navbar</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-remove-blogger-navbar/feed/</wfw:commentRss>
			<slash:comments>1</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>
