<?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>BTemplates Blog &#187; Widgets</title>
	<atom:link href="http://blog.btemplates.com/widgets/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.btemplates.com</link>
	<description>All about Blogger</description>
	<lastBuildDate>Fri, 30 Sep 2011 08:30:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Native Blogger email subscription</title>
		<link>http://blog.btemplates.com/blogger-email-subscription/</link>
		<comments>http://blog.btemplates.com/blogger-email-subscription/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 00:20:08 +0000</pubDate>
		<dc:creator>Francisco</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[Subscriptions]]></category>

		<guid isPermaLink="false">http://blog.btemplates.com/?p=271</guid>
		<description><![CDATA[Blogger starts with the novelties of this year, this time presenting a new gadget to subscribe by email or follow by e-mail as they have called. How it works When added, it will automatically add the blog to Feedburner, creates the URL of the feed and use it for mail subscription. The gadget displays a [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Blogger" href="http://buzz.blogger.com/2011/03/engage-your-audience-with-follow-by.html">Blogger</a> starts with the <a href="http://blog.btemplates.com/blogger-launched-its-new-design/">novelties of this year</a>, this time presenting a new gadget to <strong>subscribe by email</strong> or <strong>follow by e-mail</strong> as they have called.</p>
<h4>How it works</h4>
<p><img class="aligncenter" title="follow-by-email-blogger" border="0" alt="follow-by-email-blogger" src="http://blog.btemplates.com/wp-content/uploads/2011/03/follow-by-email-blogger.png" width="440" height="90" /></p>
<p>When added, it will automatically add the blog to <a href="http://feedburner.com">Feedburner</a>, creates the URL of the feed and use it for mail subscription.</p>
<p><img class="aligncenter" title="follow-by-email-settings" border="0" alt="follow-by-email-settings" src="http://blog.btemplates.com/wp-content/uploads/2011/03/follow-by-email-settings.png" width="500" height="238" /></p>
<p><img class="alignright" title="native-blogger-email-suscription" border="0" alt="native-blogger-email-suscription" src="http://blog.btemplates.com/wp-content/uploads/2011/03/native-blogger-email-suscription.png" width="244" height="100" /></p>
<p>The gadget displays a simple form where the reader can write her email and confirm the subscription. Apparently, the submit button is automatically adapted to the color palette of the blog.</p>
<h4>Settings</h4>
<p>To configure email subscription I recommend reviewing our guide: <a href="http://blog.btemplates.com/guides-how-to-offer-e-mail-subscriptions-step-by-step/">How to offer e-mail subscriptions step-by-step</a>.</p>
<h4>Widget code</h4>
<p>  <span id="more-271"></span>
<p>As all the Blogger widgets, you can modify the form code looking for the title or in this case by <code>FollowByEmail</code>. The code generated by the gadget is as follows:</p>
<pre><code>&lt;b:widget id='FollowByEmail1' locked='false' title='Follow by Email' type='FollowByEmail'&gt;
&lt;b:includable id='main'&gt;
  &lt;b:if cond='data:title != &amp;quot;&amp;quot;'&gt;&lt;h2 class='title'&gt;&lt;data:title/&gt;&lt;/h2&gt;&lt;/b:if&gt;
  &lt;div class='widget-content'&gt;
    &lt;div class='follow-by-email-inner'&gt;
      &lt;form action='http://feedburner.google.com/fb/a/mailverify' expr:onsubmit='&amp;quot;window.open(&amp;quot;http://feedburner.google.com/fb/a/mailverify?uri=&amp;quot; + data:feedPath + &amp;quot;&amp;quot;, &amp;quot;popupwindow&amp;quot;, &amp;quot;scrollbars=yes,width=550,height=520&amp;quot;); return true&amp;quot;' method='post' target='popupwindow'&gt;
        &lt;span&gt;
          &lt;input class='follow-by-email-address' name='email' placeholder='Email address...' type='text'/&gt;
        &lt;/span&gt;
        &lt;input class='follow-by-email-submit' type='submit' value='Submit'/&gt;
        &lt;input expr:value='data:feedPath' name='uri' type='hidden'/&gt;
        &lt;input name='loc' type='hidden' value='en_US'/&gt;
      &lt;/form&gt;
    &lt;/div&gt;
  &lt;/div&gt;
  &lt;span class='item-control blog-admin'&gt;
    &lt;b:include name='quickedit'/&gt;
  &lt;/span&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</code></pre>
<p>Here, I recommend changing the following line, if your blog is not in English:</p>
<pre><code>&lt;input name='loc' type='hidden' value='<strong>en_US</strong>'/&gt;</code></pre>
<p>With:</p>
<pre><code>&lt;input name='loc' type='hidden' value='<strong>You language code</strong>'/&gt;</code></pre>
<p>Where &quot;You language code&quot; is es_ES for spanish, for example. You can read: <a href="http://www.google.com/support/feedburner/bin/answer.py?hl=en&amp;answer=81423">Language Options in Email Subscription Forms Explained</a>.</p>
<p>This is to translate the confirmation message in your language.</p>
<h4>Styles</h4>
<pre><code>/*Form conteiner*/
.FollowByEmail .follow-by-email-inner {
    position: relative;
}
/*Email field*/
.FollowByEmail .follow-by-email-inner .follow-by-email-address {
    border: 1px inset;
    font-size: 13px;
    height: 22px;
    line-height: 22px;
    margin: 0;
    padding: 0 2px;
    width: 100%;
}
/* Submit button */
.FollowByEmail .follow-by-email-inner .follow-by-email-submit {
    -moz-border-radius: 2px 2px 2px 2px;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
    border: 0 none;
    color: #FFFFFF;
    font-size: 13px;
    height: 24px;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    z-index: 0;
}
.FollowByEmail .follow-by-email-inner input {
    font-family: arial,sans-serif;
}
</code></pre>
<p>Needless to say, these can be overwriting from the template code if you want to customize.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/blogger-email-subscription/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Add links to a pages based menu on Blogger</title>
		<link>http://blog.btemplates.com/add-links-to-a-pages-based-menu-on-blogger/</link>
		<comments>http://blog.btemplates.com/add-links-to-a-pages-based-menu-on-blogger/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 23:20:43 +0000</pubDate>
		<dc:creator>Francisco</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Menu]]></category>
		<category><![CDATA[Pages]]></category>

		<guid isPermaLink="false">http://blog.btemplates.com/?p=262</guid>
		<description><![CDATA[The pages widget on Blogger is very useful for use as menu, however, it has a weakness: you can&#8217;t add links directly from the panel, but this is possible from the code. Step by step: 1. Go to your template code (Desktop → Design → Edit HTML) and expand widget templates. 2. Search the pages [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>pages widget</strong> on Blogger is very useful for use as <strong>menu</strong>, however, it has a weakness: you can&#8217;t add links directly from the panel, but this is possible from the code.</p>
<p>Step by step:</p>
<p><strong>1.</strong> Go to your template code (<em>Desktop → Design → Edit HTML</em>) and expand widget templates.</p>
<p><strong>2.</strong> Search the pages widget code, it looks more or less as follows:</p>
<pre><code>&lt;b:widget id='PageList1' locked='true' title='Pages' type='PageList'&gt;
&lt;b:includable id='main'&gt;
  &lt;b:if cond='data:title'&gt;&lt;h2&gt;&lt;data:title/&gt;&lt;/h2&gt;&lt;/b:if&gt;
  &lt;div class='widget-content'&gt;
    &lt;ul&gt;
      &lt;b:loop values='data:links' var='link'&gt;
        &lt;b:if cond='data:link.isCurrentPage'&gt;
          &lt;li class='selected'&gt;&lt;a expr:href='data:link.href'&gt;&lt;data:link.title/&gt;&lt;/a&gt;&lt;/li&gt;
        &lt;b:else/&gt;
          &lt;li&gt;&lt;a expr:href='data:link.href'&gt;&lt;data:link.title/&gt;&lt;/a&gt;&lt;/li&gt;
        &lt;/b:if&gt;
      &lt;/b:loop&gt;
    &lt;/ul&gt;
    &lt;b:include name='quickedit'/&gt;
  &lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</code></pre>
<p>To facilitate the search, can search with your browser: <em>id = &#8216;PageList</em></p>
<p><strong>3.</strong> Once you locate the code, there are two places where you can put new links:</p>
<ul>
<li><strong>Before</strong> <code>&lt;ul&gt;</code>. The link will be the first one in the menu. </li>
<li><strong>After</strong> <code>&lt;/ul&gt;</code>. The link will be the last one in the menu. </li>
</ul>
<p>As this is an HTML list, the link will follow this format:</p>
<pre><code>&lt;li&gt;&lt;a href='http://mysite.com/mylink/'&gt;My link&lt;/a&gt;&lt;/li&gt;</code></pre>
<p>You can add as many links as the design permits. Always taking care of opening and closing tags correctly.</p>
<p><strong>4.</strong> Save the changes.</p>
<p>In this way you can add links to a important label, an external site, the feed url or any other link.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/add-links-to-a-pages-based-menu-on-blogger/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Show recent comments on Blogger</title>
		<link>http://blog.btemplates.com/show-recent-comments-on-blogger/</link>
		<comments>http://blog.btemplates.com/show-recent-comments-on-blogger/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 04:06:55 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[Gadgets]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=84</guid>
		<description><![CDATA[Thanks to a feed, it&#8217;s possible to add the recent comments to our blog in a very simple way. Just follow these steps: Go to your blog, and select the &#8220;Layout&#8221; tab. Choose the place where you wanna put the comments, and click &#8220;Add a Gadget&#8221;. Select the &#8220;Feed&#8221; element, and click &#8220;Add to blog&#8221;. [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to a feed, it&#8217;s possible to add the recent comments to our blog in a very simple way. Just follow these steps:</p>
<ol>
<li>Go to your blog, and select the &#8220;Layout&#8221; tab.</li>
<li>Choose the place where you wanna put the comments, and click &#8220;Add a Gadget&#8221;.</li>
<li>Select the &#8220;Feed&#8221; element, and click &#8220;Add to blog&#8221;.</li>
<p><img class="aligncenter size-full wp-image-85" title="add_feed" src="http://blog.btemplates.com/wp-content/uploads/2008/11/add_feed.jpg" alt="" width="423" height="83" /></p>
<li>The next step is to add the feed&#8217;s URL, in this case is the one that has the comments of our own blog. This address is like this:</li>
<pre><code>http://YOURBLOG.blogspot.com/feeds/comments/default</code></pre>
<p>Where YOURBLOG is that part of your blog&#8217;s address.</p>
<li>The next step is to configure:</li>
<p><strong>Title:</strong> the title to show on top of comments.<br />
<strong>Number of items:</strong> in this case it&#8217;s the number of comments.<br />
<strong>Item date:</strong> show comment&#8217;s date.<br />
<strong>Item sources/authors:</strong> show comment&#8217;s author.</p>
<li>Save the changes and that&#8217;s it.</li>
</ol>
<p>This will be enough to show the last comments. The look will depend of the place you insert them into. With this method you can add any content with feed format, doesn&#8217;t matter if it&#8217;s not from Blogger.</p>
<p><a href="http://blogandweb.com/blogger/mostrar-comentarios-recientes-en-blogger/">Read this article in spanish</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/show-recent-comments-on-blogger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving widgets (gadgets) from an old template to a new one!</title>
		<link>http://blog.btemplates.com/moving-widgets/</link>
		<comments>http://blog.btemplates.com/moving-widgets/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 05:33:13 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Upload]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=55</guid>
		<description><![CDATA[The most common problem at the time of uploading a new template is that we &#8220;lose our widgets&#8221;. Is there a way of installing a new template without having to get rid of our beloved widgets? The answer is yes, and yes, it&#8217;s simple . 1. Go to Layout&#62; Edit HTML and without checking the [...]]]></description>
			<content:encoded><![CDATA[<p>The most common problem at the time of uploading a new template is that we &#8220;lose our widgets&#8221;. Is there a way of installing a new template without having to get rid of our <em>beloved </em>widgets? The answer is yes, and <span style="font-weight: bold;">yes</span>, it&#8217;s simple <img src='http://blog.btemplates.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><img src="http://blog.btemplates.com/wp-content/uploads/2008/10/edit_html.jpg" alt="" /></p>
<p>1. Go to Layout&gt; Edit HTML and <span style="font-weight: bold;">without</span> checking the &#8220;Expand widget templates&#8221; box, look for this piece of code:</p>
<pre><code>&lt;b:section class='sidebar' id='sidebar' preferred='yes'&gt;</code></pre>
<p>Below that line you will find your template&#8217;s widgets:</p>
<pre><code>&lt;b:<strong>widget</strong> id='BlogArchive1' locked='false' title='Blog Archives'
type='<span>BlogArchive</span>'/&gt;
&lt;b:<strong>widget</strong> id='Profile1' locked='false' title='<span>My Profile</span>'
type='Profile'/&gt;</code></pre>
<p>2. Copy those widgets and keep them save (wherever).</p>
<p>3. <strong>Upload the new template.</strong></p>
<p>Blogger will warn you that your widgets are going to be deleted. Do <strong>NOT</strong> continue.</p>
<p>4. Go to the same piece of code where you took your widgets from:</p>
<pre><code>&lt;b:section class='sidebar' id='sidebar' preferred='yes'&gt;</code></pre>
<p>And paste the widgets you copied, below. In the end, the whole code should look like this:</p>
<pre><code><span style="color: #ff0000;">&lt;b:section class='sidebar' id='sidebar' preferred='yes'&gt;</span>
&lt;b:widget id='BlogArchive1' locked='false' title='Blog Archives'
type='BlogArchive'/&gt;
&lt;b:widget id='Profile1' locked='false' title='My Profile'
type='Profile'/&gt;
<span style="color: #ff0000;">&lt;/b:section&gt;</span></code></pre>
<p>That&#8217;s it!</p>
<p>*Asides | <a href="http://blog.randomnessf1.com/2008/08/moviendo-artilugios-widgets.html">Lee esto en español</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/moving-widgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QuickT :: How to show only labels with more than X posts!</title>
		<link>http://blog.btemplates.com/quick-tuto-how-to-show-labels-with-more/</link>
		<comments>http://blog.btemplates.com/quick-tuto-how-to-show-labels-with-more/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 02:02:58 +0000</pubDate>
		<dc:creator>Fernando</dc:creator>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Widgets]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Labels]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=58</guid>
		<description><![CDATA[1. Go to Layout&#62; Edit HTML and do NOT check the &#8220;Expand widget templates&#8221; box: 2. Look for this line of code: &#60;b:widget id='Label1' locked='false' title='Labels' type='Label'/&#62; 3. Replace it with the following code: &#60;b:widget id='Label1' locked='false' title='Labels' type='Label'&#62; &#60;b:includable id='main'&#62; &#60;b:if cond='data:title'&#62; &#60;h2&#62;&#60;data:title/&#62;&#60;/h2&#62; &#60;/b:if&#62; &#60;div class='widget-content'&#62; &#60;ul&#62; &#60;b:loop values='data:labels' var='label'&#62; &#60;b:if cond='data:label.count &#38;gt; 2'&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>1. Go to Layout&gt; Edit HTML and do NOT check the &#8220;Expand widget templates&#8221; box:</p>
<p><img src="http://blog.btemplates.com/wp-content/uploads/2008/10/edit_html.jpg" alt="" /></p>
<p>2. Look for this line of code:</p>
<pre><code>&lt;b:widget id='Label1' locked='false' title='Labels' type='Label'/&gt;</code></pre>
<p>3. Replace it with the following code:</p>
<pre><code>
<strong>&lt;b:widget id='Label1' locked='false' title='Labels' type='Label'&gt;</strong>
&lt;b:includable id='main'&gt;
&lt;b:if cond='data:title'&gt;
  &lt;h2&gt;&lt;data:title/&gt;&lt;/h2&gt;
&lt;/b:if&gt;
&lt;div class='widget-content'&gt;
&lt;ul&gt;
&lt;b:loop values='data:labels' var='label'&gt;
<span style="font-weight: bold; color: rgb(255, 0, 0);">    &lt;b:if cond='data:label.count &amp;gt; 2'&gt;</span>
    &lt;li&gt;
      &lt;b:if cond='data:blog.url == data:label.url'&gt;
        &lt;data:label.name/&gt;
      &lt;b:else/&gt;
        &lt;a expr:href='data:label.url'&gt;
          &lt;data:label.name/&gt;
        &lt;/a&gt;
      &lt;/b:if&gt;
      (&lt;data:label.count/&gt;)
    &lt;/li&gt;
<span style="font-weight: bold; color: rgb(255, 0, 0);">   &lt;/b:if&gt;</span>
&lt;/b:loop&gt;
&lt;/ul&gt;
  &lt;b:include name='quickedit'/&gt;
&lt;/div&gt;
&lt;/b:includable&gt;
<strong>&lt;/b:widget&gt;</strong>
</code></pre>
<p>4. In the first line highlighted in red, you decide the minimum number of posts a label needs to have in order to be displayed in your Labels&#8217; widget/gadget.</p>
<p> <img src='http://blog.btemplates.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/quick-tuto-how-to-show-labels-with-more/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Database Caching 4/20 queries in 0.004 seconds using disk: basic
Object Caching 386/418 objects using disk: basic

Served from: blog.btemplates.com @ 2012-05-16 07:21:08 -->
