<?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; Advanced users</title>
	<atom:link href="http://blog.btemplates.com/level/advanced-users/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.1</generator>
		<item>
		<title>How to create a Blogger search</title>
		<link>http://blog.btemplates.com/how-to-create-a-blogger-search/</link>
		<comments>http://blog.btemplates.com/how-to-create-a-blogger-search/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 17:00:00 +0000</pubDate>
		<dc:creator>Francisco</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Search]]></category>

		<guid isPermaLink="false">http://blog.btemplates.com/how-to-create-a-blogger-search</guid>
		<description><![CDATA[The blogs hosted on Blogger have by default an internal search located in the navbar, however, it isn&#8217;t possible to customize it or change it in order to make it fit our layout. In the other hand, with HTML and XML we can recreate this internal search and customize it any way we want with [...]]]></description>
			<content:encoded><![CDATA[<p>The blogs hosted on Blogger have by default an <strong>internal search</strong> located in the navbar, however, it isn&#8217;t possible to customize it or change it in order to make it fit our layout. In the other hand, with HTML and XML we can recreate this internal search and customize it any way we want with CSS stylesheets.</p>
<h4>HTML/XML structure</h4>
<p>As every search box, it is necessary arrange it as a form with two inputs with the blog&#8217;s data to make the search successful. The code is as follows:</p>
<pre><code>&lt;div id='search'&gt;
&lt;form expr:action='data:blog.homepageUrl + &amp;quot;search/&amp;quot;' id='searchform' method='get'&gt;
	&lt;div&gt;
		&lt;input class='searchtext' id='q' name='q' type='text'/&gt;
		&lt;input class='searchsubmit' type='image' name='submit' src='http://sitio-de-hosting.com/search.gif'/&gt;
	&lt;/div&gt;
&lt;/form&gt;
&lt;/div&gt;</code></pre>
<p>The first &quot;input&quot; is the text box in which the user will put his/her query, the second is the submit button, which allows (you guessed it) submit the query in the first &quot;input&quot; to process it. This second &quot;input&quot; comes defined by a image (it may be an <a title="Blogger Icons" href="http://blog.btemplates.com/blogger-blogspot-icons">icon</a> as well) which is why you only have to put in the address to our image on the <em>src</em> attribute, you can get this address by uploading this image to a free hosting service like Imageshack or Photobucket. That&#8217;s the only thing you have to modify in the code above.</p>
<p>This code can be added just before the above code:</p>
<p><em>Dashboard → Layout → Edit HTML</em> </p>
<pre><code>&lt;div id='sidebar-wrapper'&gt;</code></pre>
<p>to show it on the top of the sidebar, but it works on any other location.</p>
<h4>CSS Stylesheets</h4>
<p>Starting from the classes and ID&#8217;s we can apply styles to the form: a background, borders, text format, padding, etc&#8230; with CSS. This is an example: </p>
<pre><code>/* Search.
main-wrapper: form */

#search form {
	border:1px solid #999999;
	background:#E5E5E5;
	padding:10px;
	margin:0 10px 15px;
	position:relative;
}

/* Text box */

.searchtext {
	padding:2px 5px;
	color:#999;
	font-size:11px;
	line-height:15px;
	height:15px;
	width:87%;
	border:2px solid #BBDAFD;
}

/* submit button */

.searchsubmit {
	position:absolute;
	right:10px;
	top:10px;
}</code></pre>
<p>And the result is something like this: </p>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="search-blogger" border="0" alt="search-blogger" src="http://blog.btemplates.com/wp-content/uploads/2010/01/searchblogger.png" width="269" height="45" /> </p>
<p>This is just an example, but it is ready to use just by modifying the input&#8217;s image address, background colors and borders, width and marggins, etc&#8230; The CSS code is always located before: </p>
<pre><code>]]&gt;&lt;/b:skin&gt;</code></pre>
<p>It&#8217;s simple and looks great fixing this important part of our blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/how-to-create-a-blogger-search/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adding a sidebar to a Blogger template</title>
		<link>http://blog.btemplates.com/adding-a-sidebar-to-a-blogger-template-2/</link>
		<comments>http://blog.btemplates.com/adding-a-sidebar-to-a-blogger-template-2/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 17:16:00 +0000</pubDate>
		<dc:creator>Francisco</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Sidebar]]></category>

		<guid isPermaLink="false">http://blog.btemplates.com/adding-a-sidebar-to-a-blogger-template-2</guid>
		<description><![CDATA[How to add a new sidebar to a Blogger template is one of the most common questions between the users of the platform for blogs from Google. Adding a second sidebar varies in complexity according to the design in question, so, while some require only a few lines of CSS modification, others will need a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>How to add a new sidebar to a Blogger template</strong> is one of the most common questions between the users of the platform for blogs from Google. Adding a second sidebar varies in complexity according to the design in question, so, while some require only a few lines of CSS modification, others will need a total refurbishment that may make it more convenient to change the design. </p>
<p>Broadly speaking the process is as follows: </p>
<ol>
<li>Analyze the structure and style of the template. </li>
<li>Adding a new editable area, ie the area to add new gadgets. </li>
<li>Modify styles. </li>
</ol>
<p>To follow this without issues this and any other tutorial that involves making changes in the structure of a blog or website is very advisable to know some html and CSS. So: <strong></strong></p>
<h4>Analyze the structure and style of the template</h4>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="blogger-sidebar-1" border="0" alt="blogger-sidebar-1" src="http://blog.btemplates.com/wp-content/uploads/2010/01/bloggersidebar1.png" width="300" height="250" /> </p>
<p>For the majority of the templates, and specially Blogger ones, have a very similar structure, a header with title and description, a wrapper with the main column, a sidebar, and a footer with credits and some other information. </p>
<p>In this case our interest is the wrapper in which we have the content and the sidebar, starting from the Blogger code (Design/Edit HTML) it looks something like this:</p>
<pre><code>&lt;div id='content-wrapper'&gt;
	&lt;div id='main-wrapper'&gt;
		&lt;b:section class='main' id='main' showaddelement='no'&gt;
		&lt;b:widget id='Blog1' locked='true' title='Blog Entries' type='Blog'/&gt;
		&lt;/b:section&gt;
	&lt;/div&gt;

	&lt;div id='sidebar-wrapper'&gt;
		&lt;b:section class='sidebar' id='sidebar' preferred='yes'&gt;
			&lt;!-- Sidebar's widgets and gadgets code --&gt;
		&lt;/b:section&gt;	

	&lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>This varies a little from one template to the otherplate but broadly speaking is very similar to this. Both <em>main-wrapper</em> and <em>sidebar-wrapper</em> are defined by CSS styles which determine their width, depth and some other features. So, first things first, search this features looking for something like this: </p>
<pre><code>#main-wrapper {
float:left;
width:620px;
/*.... more attributes ... */
}
#sidebar-wrapper {
float:right;
width:300px;
/*.... more attributes ... */
}</code></pre>
<p>Note: It is likely that you won&#8217;t find them all together or exactly the same and sometimes, more than once. </p>
<p>Here we need to be aware of the width of each element, to add a new bar we&#8217;ll need to change the distribution. By adding the width of the example code we have a 920px total, which will be the available space for the main wrapper and the sidebars. </p>
<h4>Add a new editable area.</h4>
<p>Adding a new editable area in Blogger is very simple, these are defined by &quot;section&quot; elements that when included into the code they may contain gadgets (page elements). The code for the new editable area is something like: </p>
<pre><code>&lt;b:section class='sidebar' id='sidebar2' preferred='yes'&gt;&lt;/b:section&gt;</code></pre>
<p>And to add a new editable area, we just need to add this code just after the existing editable area: </p>
<pre><code>&lt;div id='content-wrapper'&gt;
	&lt;div id='main-wrapper'&gt;
		&lt;b:section class='main' id='main' showaddelement='no'&gt;
		&lt;b:widget id='Blog1' locked='true' title='Entradas del blog' type='Blog'/&gt;
		&lt;/b:section&gt;
	&lt;/div&gt;

	&lt;div id='sidebar-wrapper'&gt;
		&lt;!-- Existing editable area --&gt;
		&lt;b:section class='sidebar' id='sidebar' preferred='yes'&gt;
			&lt;!-- Sidebar's gadgets and widgets code --&gt;
		&lt;/b:section&gt;	

		&lt;!-- New editable area --&gt;
		&lt;b:section class='sidebar' id='sidebar2' preferred='yes'&gt;&lt;/b:section&gt;		

	&lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>We have to be careful with the <strong>ID</strong> of the new area, in must not exist in any other &quot;section&quot; element, that&#8217;s why in the example it is shown as &quot;sidebar2&quot;. The class cannot be repeated and in case of sidebars it is even convenient to be that way. As it is a new area, it doesn&#8217;t need to have gadget code, these will be integrated automatically when we add a new gadget from &quot;Page Elements&quot;. </p>
<p>Now we have a editable zone but as the template is not prepared it may be shown corrupted, so we need to do some changes. </p>
<h4>Modify sytles</h4>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="blogger-sidebar-2" border="0" alt="blogger-sidebar-2" src="http://blog.btemplates.com/wp-content/uploads/2010/01/bloggersidebar2.png" width="300" height="250" /> </p>
<p>We already know the total available width and we have an editable area, so now we have to assign width to each element. Following the example; <em>main-wrapper</em> gets reduced to 540px and <em>sidebar-wrapper</em>, which now contains both sidebars, gets enlarged to 380px. Fitting styles as follows: </p>
<pre><code>#main-wrapper {
float:left;
width:540px;
/*.... attributes ... */
}
#sidebar-wrapper {
float:right;
width:380px;
/*.... attributes ... */
}</code></pre>
<p>This way the available space for both sidebars is 380px. The most common thing to do is to give them the same width, so they will use 50% of the space each. Starting from the IDs of each editable zone we now assign the width of each on and its location (left &#8211; right) in the [i]sidebar-wrapper[/i], by adding these styles: </p>
<pre><code>#sidebar {
width:50%;
float:left;
/*.... any other attributes you may find necessary like: padding, margin, etc ... */
}
#sidebar2 {
width:50%;
float:right;
/*.... any other attributes you may find necessary like: padding, margin, etc ... */
}</code></pre>
<p>With this done now we have 2 sidebars 190px wide each, able to support gadgets.</p>
<h4>Observations</h4>
<p>Some templates may present issues while changing the sidebar&#8217;s or main wrapper&#8217;s width, specifically those based on fixed images which obviously will not change their size by reducing width. In this case you may edit those images with Photoshop to fit them to the new width. </p>
<h4>Conclusion</h4>
<p>All in all, this process might get a bit difficult, mostly if you haven&#8217;t got too much knowledge on CSS or if the template has a complex structure. The only thing we can recommend in this case is <a href="http://blog.btemplates.com/tag/css">learning some CSS</a> or <a href="http://btemplates.com/blogger-templates/3-columns/">look for a 3-column template</a> and customize it. Opinions? Questions? Doubts? Fire them off in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/adding-a-sidebar-to-a-blogger-template-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Create a widget to add a link to your blog</title>
		<link>http://blog.btemplates.com/create-a-widget-to-add-a-link-to-your-blog/</link>
		<comments>http://blog.btemplates.com/create-a-widget-to-add-a-link-to-your-blog/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 13:50:52 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=59</guid>
		<description><![CDATA[In this article we&#8217;ll show you how to create a widget (code segment) so that your visitors only have to press a button to add a link to your blog on their own. Go to &#34;Layout&#34; tab. Add a &#34;HTML/Javascript&#34; element in the section you wanna have the button. Set the title as &#34;Add us&#34;, [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we&#8217;ll show you how to create a widget (code segment) so that your visitors only have to press a button to add a link to your blog on their own.</p>
<ol>
<li>Go to &quot;Layout&quot; tab.      </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="page-elements" border="0" alt="page-elements" src="http://blog.btemplates.com/wp-content/uploads/2009/12/pageelements.png" width="500" height="73" /> </p>
</li>
<li>Add a &quot;HTML/Javascript&quot; element in the section you wanna have the button.
</li>
<li>Set the title as &quot;Add us&quot;, or any text you want for the button. You can leave it blank too, it will add some default text.
</li>
<li>Paste the following code in the &quot;Content&quot; field:
<pre><code>&lt;form action=&quot;http://beta.blogger.com/add-widget&quot; method=&quot;post&quot; target=&quot;_blank&quot;&gt;
&lt;input value=&quot;&quot; name=&quot;widget.title&quot; type=&quot;hidden&quot; /&gt;
&lt;textarea style=&quot;display: none;&quot; name=&quot;widget.content&quot;&gt;
&lt;!-- Link's code --&gt;
&lt;a href=&quot;http://YOURBLOG.blogspot.com&quot;&gt;TU BLOG&lt;/a&gt;

&lt;/textarea&gt;
&lt;input value=&quot;Add YOURBLOG to your Blogroll&quot; name=&quot;go&quot; type=&quot;submit&quot;&gt;
&lt;input type=&quot;hidden&quot; name=&quot;infoUrl&quot; value=&quot;http://blog.btemplates.com/create-a-widget-to-add-a-link-to-your-blog/&quot;/&gt;
&lt;/form&gt;</code></pre>
<p>Here you have to make some changes:</p>
<p><code>http://YOURBLOG.blogspot.com</code> &#8211; Your blog&#8217;s address. </p>
<p><code>YOUR BLOG</code> &#8211; Your blog&#8217;s name or an image&#8217;s code. It willl be shown in the Blogroll of the one who&#8217;s adding you. </p>
<p><code>Add YOURBLOG to the Blogroll</code> &#8211; The message you wanna show on the button.</p>
<p>This code work for another CMS or webs, but it only can be added by Blogger&#8217;s users.</p>
</li>
<li>Save the changes an it&#8217;s done. </li>
</ol>
<p><a href="http://blogandweb.com/blogger/como-crear-un-widget-para-que-agreguen-un-enlace-a-tu-blog/">Lee este artículo en español</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/create-a-widget-to-add-a-link-to-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Opera the best browser to use Blogger?</title>
		<link>http://blog.btemplates.com/is-opera-the-best-browser-to-use-blogger/</link>
		<comments>http://blog.btemplates.com/is-opera-the-best-browser-to-use-blogger/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 16:53:26 +0000</pubDate>
		<dc:creator>Francisco</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[gadgets issue]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=92</guid>
		<description><![CDATA[There&#8217;s a very recurrent issue in Blogger, which happens while trying to upload a template, or while saving changes in a template with expanded gadgets, which leads to the Blogger&#8217; Screen of Death. Another issue is that it makes the links to add new gadgets to disappear and even the editable areas to be not [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter" style="width: 460px;">
<dt class="wp-caption-dt"><img title="opera-blogger" src="http://blogandweb.com/wp-content/uploads/2009/01/opera-blogger.png" alt="opera-blogger" width="450" height="66" /></dt>
</dl>
</div>
<p>There&#8217;s a very recurrent issue in Blogger, which happens while trying to upload a template, or while saving changes in a template with expanded gadgets, which leads to the Blogger&#8217; Screen of Death. Another issue is that it makes the links to add new gadgets to disappear and even the editable areas to be not visible. As we mentioned another time, this issue is temporary and there are some alternatives to avoid it. One of those is using a different browser.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 13px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; line-height: 20px; background-position: initial initial; padding: 0px; border: 0px initial initial;">So far, the browser which we hadn&#8217;t had that issue is Opera, there I&#8217;ve been working in a blog even in that point, when Firefox, Chrome and Internet Explorer had the issue. So, ¿Is Opera the best browser to use Blogger? If you use add-ons or features exclusive to another browser then not so much, but I reckon it would be convenient to have it installed if an alternative to solve the problem is required. What&#8217;s your experience with Blogger and your browser? ¿Is there an ideal one?</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; font-size: 13px; vertical-align: baseline; background-image: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; line-height: 20px; background-position: initial initial; padding: 0px; border: 0px initial initial;"><strong>Note:</strong> Needless to say, if you have Internet Explorer 6, any other browser is a better option, not only for Blogger.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/is-opera-the-best-browser-to-use-blogger/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Use Google Sitemap on Blogger</title>
		<link>http://blog.btemplates.com/use-google-sitemap-on-blogger/</link>
		<comments>http://blog.btemplates.com/use-google-sitemap-on-blogger/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 02:39:30 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=48</guid>
		<description><![CDATA[One way to help Google indexing our website or blog, is by telling them the pages we have, when they&#8217;re modifiedan when we have new articles. This can be easily done using a simple tool created for this: Google Sitemap. Besides of helping you with Google indexation, this tool can give us our blog&#8217;s stats [...]]]></description>
			<content:encoded><![CDATA[<p>One way to help Google indexing our website or blog, is by telling them the pages we have, when they&#8217;re modifiedan when we have new articles. This can be easily done using a simple tool created for this: <a href="http://www.google.com/webmasters/sitemaps/?hl=es">Google Sitemap</a>. Besides of helping you with Google indexation, this tool can give us our blog&#8217;s stats and an error report.</p>
<p>Thank&#8217;s to Blogger&#8217;s system and other content manager systems, using this tool is pretty simple, and now we show you how:</p>
<ol>
<li>Go to the main page of <a href="http://www.google.com/webmasters/sitemaps/?hl=es">Google Sitemap</a>, and login with your Google account (Blogger, Gmail, etc.).</li>
<li>In the text box, write your blog&#8217;s URL. &#8220;http://yourblog.blogspot.com&#8221;.</li>
<p><img class="aligncenter size-full wp-image-49" title="google_sitemap_add_site" src="http://blog.btemplates.com/wp-content/uploads/2008/10/google_sitemap_add_site.gif" alt="" width="314" height="99" /></p>
<li>You&#8217;ll enter a panel with a warning, telling you the next step is to verify the site belongs to you. Click that link.</li>
<p><img class="aligncenter size-full wp-image-50" title="sitemap_verify" src="http://blog.btemplates.com/wp-content/uploads/2008/10/sitemap_verify.png" alt="" width="320" height="40" /></p>
<li>Now it&#8217;ll show you two choices to verify your site. Choose &#8220;Add a META label&#8221; (The other one is not possible with blogger, but it is to any other CMS).</li>
<li>After clicking, the same page show you the META label&#8217;s code. Copy this code, but don&#8217;t close this page yet. On your blog, go to “Layout” tab, and then to “Edit HTML”. Search for the following code:</li>
<pre><code>&lt;head&gt;</code></pre>
<p>And just down, paste the verification code.</p>
<li>On Google Sitemaps, click &#8220;Verify&#8221; button. If everything is ok, your site will be shown as verified.</li>
<li>Now, on the upper right of your screen click the &#8220;Sitemap&#8221; tab, and the &#8220;Add a sitemap&#8221;. Now it will ask you for a type, so select &#8220;Add a general sitemap&#8221;. By doing this, blogger will show a text field to write your sitemap&#8217;s URL On blogger is: http://YOURBLOG.blogspot.com/atom.xm.Replace &#8220;YOURBLOG&#8221; for your blog&#8217;s address or username, and click &#8220;Add a web sitemap&#8221;.</li>
</ol>
<p>With this, the service is activated, and within a couple of hours Google will start seeking for your site&#8217;s information.</p>
<p>Lee este artículo en español: <a href="http://blogandweb.com/blogger/usar-google-sitemap-en-blogger/">Usar Google Sitemap en Blogger</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/use-google-sitemap-on-blogger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Background image on your website or blog</title>
		<link>http://blog.btemplates.com/background-image-on-your-website-or-blog/</link>
		<comments>http://blog.btemplates.com/background-image-on-your-website-or-blog/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 04:53:33 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Images]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=40</guid>
		<description><![CDATA[A website&#8217;s backgorund is one of the most important elements of the page, is always there and there&#8217;s a lot of available space. In this basic article, we&#8217;ll show you how to handle your website&#8217;s background with an image. The first thing you should know is that the right way to get a background image [...]]]></description>
			<content:encoded><![CDATA[<p>A website&#8217;s backgorund is one of the most important elements of the page, is always there and there&#8217;s a lot of available space. In this basic article, we&#8217;ll show you how to handle your website&#8217;s background with an image.</p>
<p>The first thing you should know is that the right way to get a background image is through cascade style sheets (CSS), modifying the &#8220;Background&#8221; property on the &lt;body&gt; tag.</p>
<p>So, the modification of the &#8220;body&#8221; tag has to be done in your .css file, or your web&#8217;s space where you make the cascade style sheet, for example:</p>
<pre><code>body {
background:#ffffff url(http://www.tu-sitio.com/fondo-web.jpg) top left no-repeat fixed;
}</code></pre>
<p><strong>Color</strong><br />
The first thing we have on &#8220;background&#8221; is the background color, in this case #ffffff, wich is the color code. You can modify it as you want. When you don&#8217;t have a static background image, it would be the color shown as the next image is loaded.</p>
<p><strong>Route</strong><br />
url() is the location of the image we want as the background.</p>
<p><strong>Location</strong><br />
&#8220;top&#8221; and &#8220;left&#8221; give the right location to the background image, and the values can be: top, right, center, left or bottom.</p>
<p><strong>Frequency</strong><br />
&#8220;no-repeat&#8221; menas the image will not be repeated. This property may also have the following values:</p>
<p>repeat &#8211; This is the default value, if you don&#8217;t specify anything, the image will always repeat.<br />
repeat-x &#8211; repeats the background in horizontal way.<br />
repeat-y &#8211; repeats the background in vertical way.<br />
no-repeat &#8211; doesn&#8217;t repeat the background, it will just have the size of the image.</p>
<p><strong>Visualization</strong><br />
&#8220;fixed&#8221; means we&#8217;ll have a quiet background. This may also have the following values:</p>
<p>scroll &#8211; This is the default value, if you don&#8217;t specify anything, the background image will move with the text.<br />
fixed &#8211; The background image will not move with the text.</p>
<p>If you&#8217;re usign the new blogger, you have to do this right before the following code:</p>
<pre><code>&gt;&lt;/b:skin&gt;</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/background-image-on-your-website-or-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Static side menu on Blogger</title>
		<link>http://blog.btemplates.com/static-side-menu-on-blogger/</link>
		<comments>http://blog.btemplates.com/static-side-menu-on-blogger/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 03:39:19 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=51</guid>
		<description><![CDATA[Navigation in our blog or website is an important matter to take care of, and menus are very important to do this. Here we&#8217;ll show your how to set a static side menu in your website or blog, which means, when you scroll down the menu will be in the same position. The menu we&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>Navigation in our blog or website is an important matter to take care of, and menus are very important to do this. Here we&#8217;ll show your how to set a static side menu in your website or blog, which means, when you scroll down the menu will be in the same position.</p>
<p>The menu we&#8217;re talking about is very popular on blogs, and will see like this:<br />
<img class="aligncenter size-full wp-image-52" title="side_menu" src="http://blog.btemplates.com/wp-content/uploads/2008/10/side_menu.gif" alt="" width="190" height="151" /></p>
<ol>
<li>Go to “Layout” tab, and then to “Edit HTML”.</li>
<li>Search for the following code:</li>
<pre><code>]]&gt;&lt;/b:skin&gt;</code></pre>
<p>For other CMS or web system, find the place for styles or your CCS file.</p>
<li>Just before that write the following:</li>
<pre><code>#sidemenu{
   position:fixed;
   text-align:left;

/*If the menu location is not ok, modify the next values */
         margin-top:100px;
   margin-left:-28px;
}

* html #sidemenu{  /*for IE*/
 position:absolute;
 }

#sidemenu a img{
 opacity:1;
 -moz-opacity:1;
 filter:alpha(Opacity=100);
}

#sidemenu a:hover img{
 opacity:0.8;
 -moz-opacity:0.8;
 filter:alpha(Opacity=80);
 position:relative;top:0px;left:2px;
}

* html #sidemenu a img{
 filter:alpha(Opacity=100);
 }

#sidemenu img{
 margin-bottom: -5px;
 }

* html .sidemenu{
 margin-bottom: -3px;
}</code></pre>
<li>Now search for the following code:</li>
<pre><code>&lt;div id='content-wrapper'&gt;</code></pre>
<p>For other templates coul be better to find &#8220;&lt;div id=’outer-wrapper’&gt;&lt;div id=’wrap2′&gt;&#8221;. Fo other CMS find the main div.</p>
<li>Right after that code write the following:</li>
<pre><code>&lt;div id='menulateral'&gt;
 &lt;span&gt;
 &lt;a href='http://YOURBLOG.blogspot.com/' style='border:0;' title='Beggining'&gt;&lt;img alt='Beggining' class='sidemenu' src='http://bp3.blogger.com/_Zuzii37VUO4/RlpT2Zya1AI/AAAAAAAABoI/6EXVwJ-0xxc/s1600/menu-lateral-inicio.png'/&gt;&lt;/a&gt;
 &lt;br/&gt;&lt;a href='#BlogArchive1' style='border:0;' title='File'&gt;&lt;img alt='File' src='http://bp2.blogger.com/_Zuzii37VUO4/RlpT2Jya08I/AAAAAAAABno/fEetH56Ftgw/s1600/menu-lateral-archivo.png'/&gt;&lt;/a&gt;
 &lt;br/&gt;&lt;a href='mailto:YOUR-MAIL@server.com' style='border:0;' title='Contact'&gt;&lt;img alt='Contact' class='sidemenu' src='http://bp3.blogger.com/_Zuzii37VUO4/RlpT2Zya0-I/AAAAAAAABn4/F5Ax7A_8rLA/s1600/menu-lateral-contacto.png'/&gt;&lt;/a&gt;
 &lt;br/&gt;&lt;a href='http://YOURBLOG.blogspot.com/feeds/posts/default' style='border:0;' title='Subscribe our Feed'&gt;&lt;img alt='Subscribe our Feed' class='sidemenu' src='http://bp3.blogger.com/_Zuzii37VUO4/RlpT2Zya0_I/AAAAAAAABoA/HgSHFryV6kc/s1600/menu-lateral-feed.png'/&gt;&lt;/a&gt;
 &lt;br/&gt;&lt;a href='#' style='border:0;' title='Up'&gt;&lt;img alt='Up"' class='sidemenu' src='http://bp3.blogger.com/_Zuzii37VUO4/RlpT2Zya09I/AAAAAAAABnw/38HqImjH21E/s1600/menu-lateral-arriba.png'/&gt;&lt;/a&gt;
 &lt;/span&gt;
&lt;/div&gt;</code></pre>
<p>In that code, make the next substitutions:</p>
<p>“http://YOURBLOG.blogspot.com/” &#8211; Your blog&#8217;s address.<br />
“YOUR-MAIL@servidor.com” &#8211; Your e-mail address.<br />
“http://YOURBLOG.blogspot.com/feeds/posts/default” &#8211; Replace “YOURBLOG” for that part of your blog&#8217;s address.</p>
<li>Save the changes, and that&#8217;s it.</li>
</ol>
<p>Lee este artículo en español: <a href="http://blogandweb.com/blogger/menu-lateral-fijo-en-blogger/">Menú lateral fijo en Blogger</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/static-side-menu-on-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metatags on Blogger</title>
		<link>http://blog.btemplates.com/metatags-on-blogger/</link>
		<comments>http://blog.btemplates.com/metatags-on-blogger/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 04:31:48 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=65</guid>
		<description><![CDATA[Metatags are labels with information about our site, like the theme of the website or blog, its description, keywords, author&#8217;s information, language, among many others. They are important because help search engines and other web applications to rank your web, so if you don&#8217;t have them it makes their work even more difficult, and the [...]]]></description>
			<content:encoded><![CDATA[<p>Metatags are labels with information about our site, like the theme of the website or blog, its description, keywords, author&#8217;s information, language, among many others. They are important because help search engines and other web applications to rank your web, so if you don&#8217;t have them it makes their work even more difficult, and the result is less visits and visits that are not related with the articles.</p>
<p>One of the most neglected parts in Blogger are precisely the metatags, because they don&#8217;t think the proper indexing of your page is important enough. Well, in this article we&#8217;ll show you how to place the most important in the home and in the pages of the labels.</p>
<ol>
<ol>
<li>Go to “Layout”, and then to “Edit HTML”.</li>
</ol>
</ol>
<p><img class="aligncenter size-medium wp-image-37" title="edit_html" src="http://blog.btemplates.com/wp-content/uploads/2008/10/edit_html.jpg" alt="" width="476" height="83" /></p>
<ol>
<ol>
<li>Search for the following code:</li>
</ol>
</ol>
<pre><code>&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt;</code></pre>
<ol>
<ol>
<li>Under this code will be conditions to show the metatags in their own pages, according to the following code scheme:</li>
</ol>
</ol>
<pre><code>&lt;!-- Home Metatags --&gt;
&lt;b:if cond='data:blog.pageType == "index"'&gt;
&lt;meta content='here the keywords, separated by commmas' name='keywords'/&gt;
&lt;meta content='description of the general website content' name='description'/&gt; &lt;/b:if&gt;
&lt;!-- Labels Pages Metatags --&gt;
&lt;b:if cond='"http://label-address" == data:blog.url'&gt;
&lt;meta content='here the words taht describe this label' name='keywords'/&gt;
&lt;meta content='description of the content of this label' name='description'/&gt; &lt;/b:if&gt;</code></pre>
<p>As you can see, there is a code for the home and one for labels and will be repeated for each label you want to describe their contents.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/metatags-on-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Put a header on Blogger&#8217;s labels</title>
		<link>http://blog.btemplates.com/put-a-header-on-bloggers-labels/</link>
		<comments>http://blog.btemplates.com/put-a-header-on-bloggers-labels/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 03:23:45 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Header]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Labels]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=56</guid>
		<description><![CDATA[The introduction of the rating trough labels on Blogger was really helpfull to clasify information on our blog, no doub about it. But could be a few details that could make users navigation even more friendly. One of them could be having a header with the most important labels. For example, if you have a [...]]]></description>
			<content:encoded><![CDATA[<p>The introduction of the rating trough labels on Blogger was really helpfull to clasify information on our blog, no doub about it. But could be a few details that could make users navigation even more friendly. One of them could be having a header with the most important labels. For example, if you have a section named technology, you can put a legend in the page of the posts with this label, something like &#8220;You&#8217;re on technology section&#8221;.</p>
<p>Let&#8217;s see how can we do this:</p>
<ol>
<li>Go to &#8220;Layout&#8221;, and then to &#8220;Edit HTML&#8221;. Check the “Expand widget templates” box.</li>
<p><img class="aligncenter size-medium wp-image-37" title="edit_html" src="http://blog.btemplates.com/wp-content/uploads/2008/10/edit_html.jpg" alt="" width="476" height="83" /></p>
<li>Search for the following code:</li>
<pre><code>&lt;b:includable id='status-message'&gt;</code></pre>
<li>Under this code, we&#8217;ll put every message or image we wanna show as header of every label. For this, we&#8217;ll use the following model.</li>
<pre><code>&lt;b:if cond='"<span style="font-weight: bold;">http://YOURBLOG.blogspot.com/label-address</span>" == data:blog.url'&gt;
<span style="font-weight: bold;">&lt;!-- Header's code here --&gt;</span>

&lt;/b:if&gt;</code></pre>
<p>Where <strong>http://YOURBLOG.blogspot.com/label-address</strong> is the label&#8217;s address, and <strong>Header&#8217;s code here</strong> is the perfect place to put the header&#8217;s code.</p>
<p>You have to follow this model for every label you wanna put a header.</p>
<p><strong>Example:</strong></p>
<p>A text header on my &#8220;CSS&#8221; label:</p>
<pre><code>&lt;b:if cond='"http://blog.btemplates.com/tag/css" == data:blog.url'&gt;
&lt;!-- Header's code here --&gt;
&lt;h2&gt;You are on CSS section&lt;/h2&gt;
&lt;/b:if&gt;</code></pre>
<p>An image as a header for my &#8220;Feed&#8221; label:</p>
<pre><code>&lt;b:if cond='"http://blog.btemplates.com/tag/feed" == data:blog.url'&gt;
&lt;!-- Header's code here --&gt;
&lt;img src='http://site.com/image-address'/&gt;
&lt;/b:if&gt;</code></pre>
<p>Where <strong>http://site.com/image-address</strong> is the addres of the image you want as the header of the &#8220;Feed&#8221; label.</p>
<p>You can use any of this two options with all your labels, just writing the code of each one under the code of the last one.</p>
<li>Now search for the following code:</li>
<pre><code>]]&gt;&lt;/b:skin&gt;</code></pre>
<li>Just before it, paste the following styles:</li>
<pre><code>.status-msg-wrap {
width:100% !important;
margin:0px !important
}
.status-msg-bg {
background:transparent !important
}
.status-msg-border {
border:none !important;
}</code></pre>
<p>Save the changes and it&#8217;s done.</ol>
<p><a href="http://blogandweb.com/blogger/poner-encabezado-en-las-etiquetas-de-blogger/">Lee este artículo en español</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/put-a-header-on-bloggers-labels/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Social Bookmarking on Blogger</title>
		<link>http://blog.btemplates.com/social-bookmarking-on-blogger/</link>
		<comments>http://blog.btemplates.com/social-bookmarking-on-blogger/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 02:48:57 +0000</pubDate>
		<dc:creator>Yondri</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://btemplates.com/blog/?p=41</guid>
		<description><![CDATA[Maybe you wonder how to put some social bookmarking icons on every post, so the readers can add this to their favorites, if they use one of these services. You don&#8217;t need to subscribe your blog to any of these services. The links are for the users, so they can subscribe and access to your [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe you wonder how to put some social bookmarking icons on every post, so the readers can add this to their favorites, if they use one of these services.</p>
<p><img class="aligncenter size-full wp-image-42" title="social_bookmarking" src="http://blog.btemplates.com/wp-content/uploads/2008/10/social_bookmarking.png" alt="" width="320" height="20" /></p>
<p>You don&#8217;t need to subscribe your blog to any of these services. The links are for the users, so they can subscribe and access to your post anytime.</p>
<p>Now let&#8217;s see how to get them:</p>
<ol>
<li>Go to “Layout” tab, then to “Edit HTML”, and check the “Expand Widget Templates” box.</li>
<p><img class="aligncenter size-medium wp-image-37" title="edit_html" src="http://blog.btemplates.com/wp-content/uploads/2008/10/edit_html.jpg" alt="" width="476" height="83" /></p>
<li>Search for the following code:</li>
<pre><code>&lt;p class='post-footer-line post-footer-line-3'/&gt;</code></pre>
<li>Replace that line with the following code:</li>
<pre><code>&lt;p class='post-footer-line post-footer-line-3'&gt;

&lt;div class='rsociales'&gt;
Add to Bookmarks:
&lt;ul&gt;
&lt;li&gt;&lt;a expr:href='"http://www.technorati.com/faves?add=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Technorati' class='rsociales-sobre' src='http://bp1.blogger.com/_Zuzii37VUO4/Rjl62eMBQ0I/AAAAAAAAAto/zkas68GmVFk/s1600/technorati.gif'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://del.icio.us/post?url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Del.icio.us' class='rsociales-sobre' src='http://bp3.blogger.com/_Zuzii37VUO4/Rjl68-MBQ1I/AAAAAAAAAtw/Mftx1_Bi_oY/s1600/delicious.gif'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://digg.com/submit?phase=2&amp;amp;amp;url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a DiggIt!' class='rsociales-sobre' src='http://bp2.blogger.com/_Zuzii37VUO4/RjlY7uMBQrI/AAAAAAAAAsg/ov73dLSsrtA/s1600/digg.png'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://myweb2.search.yahoo.com/myresults/bookmarklet?u=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Yahoo!' class='rsociales-sobre' src='http://bp1.blogger.com/_Zuzii37VUO4/RjlZLeMBQtI/AAAAAAAAAsw/bNmkgSj_jj0/s1600/yahoo.png'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://www.google.com/bookmarks/mark?op=edit&amp;amp;output=popup&amp;amp;bkmk=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Google' class='rsociales-sobre' src='http://bp3.blogger.com/_Zuzii37VUO4/Rjl6z-MBQzI/AAAAAAAAAtg/-13NieAS3J8/s1600/google.gif'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://meneame.net/submit.php?url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Meneame' class='rsociales-sobre' src='http://bp3.blogger.com/_Zuzii37VUO4/Rjlct-MBQyI/AAAAAAAAAtY/UtGxUlBA7mc/s1600/meneame.png'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://www.furl.net/storeIt.jsp?u=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Furl' class='rsociales-sobre' src='http://bp3.blogger.com/_Zuzii37VUO4/Rjlaa-MBQuI/AAAAAAAAAs4/7hoQkbJNkUw/s1600/furl.png'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://reddit.com/submit?url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Reddit' class='rsociales-sobre' src='http://bp2.blogger.com/_Zuzii37VUO4/RjlbHuMBQvI/AAAAAAAAAtA/L0TsC3OUUyI/s1600/reddit.gif '/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://ma.gnolia.com/beta/bookmarklet/add?url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Magnolia' class='rsociales-sobre' src='http://bp2.blogger.com/_Zuzii37VUO4/RjlbWuMBQwI/AAAAAAAAAtI/Vy_xjt3iY80/s1600/magnolia.gif'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;amp;Description=&amp;amp;Url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Blinklist' class='rsociales-sobre' src='http://bp2.blogger.com/_Zuzii37VUO4/RjlbjuMBQxI/AAAAAAAAAtQ/WDlHSsaO_m4/s1600/blinklists.gif'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a expr:href='"http://blogmarks.net/my/new.php?mini=1&amp;amp;simple=1&amp;amp;url=" + data:post.url + "&amp;amp;title=" + data:post.title' target='_blank'&gt;&lt;img alt='Agregar a Blogmarks' class='rsociales-sobre' src='http://bp0.blogger.com/_Zuzii37VUO4/RjlQzOMBQoI/AAAAAAAAAsI/qt5x09fQvNo/s1600/blogmarks.gif'/&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;/p&gt;
</code></pre>
<p>These are the most popular social bookmarking sites.</p>
<li>Now search for the following code:</li>
<pre><code>]]&gt;&lt;/b:skin&gt;</code></pre>
<p>And just before it paste the following:</p>
<pre><code>.rsociales ul {
display:inline;
margin:0pt !important;
padding:0pt !important;
}
.rsociales li {
background:transparent none repeat scroll 0%;
display:inline;
list-style-type:none;
margin:0pt;
padding:2px;
}
.rsociales img {
border:0pt none;
float:none;
margin:0pt;
padding:0pt;
}
.rsociales-sobre {
opacity:0.4;
}
.rsociales-sobre:hover {
opacity:1;
}</code></pre>
<p>These are the styles for the icons of every social network. You can modify them according to your blog.The lats two styles give the icons a transparency effect, wich work fine with Firefox, Opera, Safari and IE7.</p>
<li>Now save the changes, and that&#8217;s it.</li>
</ol>
<p>Lee este artículo en español: <a href="http://blogandweb.com/blogger/redes-sociales-social-bookmarking-en-blogger/">Redes Sociales en Blogger</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.btemplates.com/social-bookmarking-on-blogger/feed/</wfw:commentRss>
		<slash:comments>2</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 2/46 queries in 0.033 seconds using disk: basic
Object Caching 530/629 objects using disk: basic

Served from: blog.btemplates.com @ 2012-02-12 18:57:56 -->
