<?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>BlogWell &#187; How To and What Is</title>
	<atom:link href="http://blog-well.com/category/how-to-and-what-is/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog-well.com</link>
	<description>Musings and things that amuse us</description>
	<lastBuildDate>Wed, 30 Mar 2011 05:16:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Beginner&#8217;s Guide to FTP for WordPress</title>
		<link>http://blog-well.com/2008/08/10/beginners-guide-to-ftp-for-wordpress/</link>
		<comments>http://blog-well.com/2008/08/10/beginners-guide-to-ftp-for-wordpress/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 06:11:51 +0000</pubDate>
		<dc:creator>Mad</dc:creator>
				<category><![CDATA[How To and What Is]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog-well.com/?p=383</guid>
		<description><![CDATA[When you self host your own WordPress blog you have access to the most basic of WordPress functionality. In order to get the same functionality, and more, for your blog as that provided by WordPress.com, you will need to install some of the many WordPress.org plugins. We have written a beginner&#8217;s guide to FTP for [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Beginner's Guide to FTP for WordPress" href="http://blog-well.com/wp-content/uploads/2008/08/fish-transferring-ponds.jpg"><img class="alignnone size-medium wp-image-382" src="http://blog-well.com/wp-content/uploads/2008/08/fish-transferring-ponds-300x195.jpg" alt="" width="300" height="195" /></a></p>
<p>When you self host your own WordPress blog you have access to the most basic of WordPress functionality.</p>
<p>In order to get the same functionality, and more, for your blog as that provided by <a href="http://wordpress.com">WordPress.com</a>, you will need to install some of the many <a href="http://wordpress.org/extend/plugins/">WordPress.org plugins</a>.</p>
<p>We have written a <a href="http://blog-well.com/wp-content/uploads/2008/08/beginners-guide-to-ftp-for-wordpress.pdf">beginner&#8217;s guide to FTP for WordPress</a> (1.39 MB PDF) which will show you how to:</p>
<ul>
<li>Configure <a href="http://filezilla-project.org/">FileZilla</a>, an FTP client, to allow you to transfer files to and from your blog.</li>
<li>Download a plugin.</li>
<li>Install the plugin onto your blog using FileZilla.</li>
<li>Activate the plugin.</li>
</ul>
<p>If you have never used an FTP client before, or don&#8217;t even know what FTP stands for, and fish transferring ponds it is not, this guide is for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog-well.com/2008/08/10/beginners-guide-to-ftp-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to create nofollow links</title>
		<link>http://blog-well.com/2008/08/06/how-to-create-nofollow-links/</link>
		<comments>http://blog-well.com/2008/08/06/how-to-create-nofollow-links/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 12:48:48 +0000</pubDate>
		<dc:creator>Lid</dc:creator>
				<category><![CDATA[How To and What Is]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[small business blogging]]></category>

		<guid isPermaLink="false">http://blog-well.com/?p=377</guid>
		<description><![CDATA[The aim of this post is to show you how easy it is to turn ordinary links into nofollow links; regardless of whether you know HTML or not. Note: This is a how-to post. If you&#8217;re interested in learning more about nofollow, there are many great posts about it on the Web; I&#8217;ll point to [...]]]></description>
			<content:encoded><![CDATA[<p>The aim of this post is to show you how easy it is to turn ordinary links into nofollow links; regardless of whether you know HTML or not.</p>
<p><em>Note: This is a how-to post. If you&#8217;re interested in learning more about nofollow, there are many great posts about it on the Web; I&#8217;ll point to some at the end of this post.</em></p>
<h3>Step 1: Create a standard link</h3>
<p>The first thing you need to do is create a link.</p>
<p>If you are using a visual editor that creates the HTML for you, you&#8217;ll need to edit the HTML at this point.    In WordPress, this is a simple matter of moving from the <strong>visual</strong> tab to the <strong>HTML</strong> tag when writing your post or page.</p>
<p>Find the link that you&#8217;ve created within the HTML; the code will look much like this:</p>
<blockquote><p>&lt;a href=&#8221;http://www.google.com&#8221;&gt;Google&#8217;s Home Page&lt;/a&gt;</p></blockquote>
<h3>Step 2: Add nofollow to your link</h3>
<p>Now, you need to add &#8216;rel=nofollow&#8217; (known as an attribute), to the link.   You can do this one of two ways; it doesn&#8217;t matter which you use, they both do the same thing.</p>
<ul>
<li>Place the &#8216;rel&#8217; attribute at the end of the URL you are linking to; before the anchor text; this is what it should look like:</li>
</ul>
<blockquote><p>&lt;a href=&#8221;http://www.google.com&#8221; rel=&#8221;nofollow&#8221;&gt;Google&#8217;s Home Page&lt;/a&gt;</p>
<p><em>Note: If you do it this way, make sure you leave a space between the end quote marks of the URL and the word ‘rel&#8217;.</em></p></blockquote>
<ul>
<li>Alternatively, place the attribute at the beginning of the anchor tag; this is what it should look like:</li>
</ul>
<blockquote><p>&lt;a rel=&#8221;nofollow&#8221; href=&#8221;http://www.google.com&#8221;&gt;Google&#8217;s Home Page&lt;/a&gt;</p>
<p>Note: If you do it this way, make sure you leave a space between the end quote marks of ‘nofollow&#8217; and the beginning of ‘href&#8217;.</p></blockquote>
<p>And there you have it, your first nofollow link!</p>
<p><em>See also:</em></p>
<ul>
<li><a href="http://www.justin-cook.com/wp/2007/11/21/how-to-add-nofollow-to-wordpress-blogroll-links/" target="_self">How to add nofollow to WordPress blogroll links</a></li>
</ul>
<ul>
<li><a href="http://www.seoco.co.uk/blog/2008/03/19/more-tag-nofollow-fix-wordpress/" target="_self">How to add nofollow to the More Tags in WordPress blogs</a></li>
</ul>
<h3><strong>Other useful posts about nofollow:</strong></h3>
<p><a href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=96569" target="_self">What is nofollow and why was it created?</a></p>
<p>This post from Google&#8217;s WebMaster Help Center talks about how Google handles nofollow links, and shows you when you need to use nofollow if you want to remain within their guidelines.  Failing to follow the guidelines can result in your PageRank.</p>
<p><a href="http://blog.hubspot.com/blog/tabid/6307/bid/45/The-Importance-of-Google-PageRank-A-Guide-For-Small-Business-Executives.aspx" target="_self">The importance of Google PageRank: A guide for small businesses</a></p>
<p>The authority of your blog, and where it appears in search results is influenced by your PageRank. The higher your PageRank, the higher up in search results your site will appear.  As the nofollow attribute stops the flow of PageRank from your site to the site you are linking to, you might want to get to know PageRank better before you use it.</p>
<p><a href="http://www.seo-scoop.com/2008/01/24/matt-cutts-why-am-i-still-being-punished/" target="_self">Matt Cutts, Why am I still being punished?</a></p>
<p>After being removed from Google&#8217;s index, Donna cleaned up her site, removed most of her advertisements, and nofollowed the rest.  While her site can now be found in the Google index, her PageRank has been fatally injured.  Read this open letter she writes to Google&#8217;s Matt Cutts to understand the importance of making your links ‘Google friendly&#8217; Make sure you don&#8217;t miss the conversation in the comments.</p>
<p><a href="http://www.searchengineguide.com/jennifer-laycock/nofollow-is-for.php" target="_self">The history of the nofollow tag</a></p>
<p>In this post, Jen walks you through the history of the nofollow tag, and explains how it has morphed from being a spam fighting tactic into a necessity if want to stay in Google&#8217;s good graces.</p>
<p><a href="http://www.evisibility.com/blog/no-follow-tag/" target="_self">Understanding what nofollow can do for you from an SEO point of view</a></p>
<p>A great explanation for the non techy that shows how using nofollow may help retain, or increase, your Google juice; that is, PageRank.</p>
<p><em><strong>This post is part of the Small Business Blogging Basics category.</strong></em></p>
<p><em><strong>If you liked this post, consider subscribing to our <a href="http://feeds.feedburner.com/blogwell" target="_self">feed</a>.<br />
</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog-well.com/2008/08/06/how-to-create-nofollow-links/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>22 IE Keyboard Shortcuts to Save You Time</title>
		<link>http://blog-well.com/2008/07/09/22-ie-keyboard-shortcuts-to-save-you-time/</link>
		<comments>http://blog-well.com/2008/07/09/22-ie-keyboard-shortcuts-to-save-you-time/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 14:00:23 +0000</pubDate>
		<dc:creator>Lid</dc:creator>
				<category><![CDATA[How To and What Is]]></category>

		<guid isPermaLink="false">http://blog-well.com/?p=361</guid>
		<description><![CDATA[Not long ago, we put together a basic list of Firefox keyboard shortcuts. Today, we thought we&#8217;d give you 22 useful and basic IE keyboard shortcuts to print up or bookmark. Select location bar: Alt+D Select search bar: Ctrl+E Open search result in new tab: Alt+Enter Full screen on/off: F11 Go to your default homepage: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog-well.com/wp-content/uploads/2008/07/2631072309_f843cf4966.jpg"><img class="alignnone size-full wp-image-362" title="2631072309_f843cf4966" src="http://blog-well.com/wp-content/uploads/2008/07/2631072309_f843cf4966.jpg" alt="" width="500" height="357" /></a></p>
<p>Not long ago, we put together a basic list of <a href="http://blog-well.com/2008/06/14/firefox-keyboard-shortcuts/" target="_self">Firefox keyboard shortcuts</a>.  Today, we thought we&#8217;d give you 22 useful and basic IE keyboard shortcuts to print up or bookmark.</p>
<ol>
<li>Select location bar: <strong>Alt+D</strong></li>
<li>Select search bar: <strong>Ctrl+E</strong></li>
<li>Open search result in new tab: <strong>Alt+Enter</strong></li>
<li>Full screen on/off: <strong>F11</strong></li>
<li>Go to your default homepage: <strong>Alt+Home</strong></li>
<li>Go back a page: <strong>Alt+Left Arrow </strong>or<strong> Backspace</strong></li>
<li>Go forward a page: <strong>Alt+Right Arrow</strong>, or <strong>Shift+Backspace</strong></li>
<li>Select an entire page: (ready to copy and paste) <strong>Ctrl+A</strong></li>
<li>Copy selected text: <strong>Ctrl+C</strong></li>
<li>Paste to new location: <strong>Ctrl+V</strong></li>
<li>Refresh page: <strong>F5</strong></li>
<li>Refresh page and cache: <strong>Ctrl+F5</strong></li>
<li>Stop downloading page: <strong>Esc</strong></li>
<li>Open New Tab: <strong>Ctrl+T</strong></li>
<li>Switch to next tab: <strong>Ctrl+Tab</strong></li>
<li>Switch to previous tab: <strong>Ctrl+Shift+Tab</strong></li>
<li>View Page Source: <strong>Alt+V+C</strong></li>
<li>Find specific words on a page: <strong>Ctrl+F</strong></li>
<li>Print Page: <strong>Ctrl+P</strong></li>
<li>Save Page: <strong>Ctrl+S</strong></li>
<li>Zoom in (Increase text size): <strong>Ctrl++</strong></li>
<li>Zoom out (Decrease text size): <strong>Ctrl+-</strong></li>
</ol>
<p><em>Photo Credit: <a href="http://flickr.com/photos/ieteam/" target="_self">ieteam</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog-well.com/2008/07/09/22-ie-keyboard-shortcuts-to-save-you-time/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Moving from WordPress.com to WordPress</title>
		<link>http://blog-well.com/2008/06/27/moving-from-wordpresscom-to-wordpress/</link>
		<comments>http://blog-well.com/2008/06/27/moving-from-wordpresscom-to-wordpress/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 05:44:18 +0000</pubDate>
		<dc:creator>MadLid</dc:creator>
				<category><![CDATA[How To and What Is]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog-well.com/?p=356</guid>
		<description><![CDATA[We have had a lot of positive feedback for our &#8220;Redirecting a WordPress.com Blog&#8221; document, and a common issue is redirection not working due to the permalinks of the new blog not being set to the style used by WordPress.com. This was first raised by Eric P and he helped out by writing his own [...]]]></description>
			<content:encoded><![CDATA[<p>We have had a lot of positive feedback for our &#8220;<a href="http://blog-well.com/2008/01/27/wordpresscom-to-wordpressorg/">Redirecting a WordPress.com Blog</a>&#8221; document, and a common issue is redirection not working due to the permalinks of the new blog not being set to the style used by WordPress.com.</p>
<p>This was first raised by Eric P and he helped out by writing his own execllent post on <a href="http://menoob.com/2008/06/07/redirecting-wordpress-com-to-wordpress-org/" target="_blank">redirecting a WordPress.com blog</a> &#8211; thanks Eric.</p>
<p>With our PDF document on <a href="http://blog-well.com/wp-content/uploads/2008/01/how-to-redirect-a-wordpresscom-blog.pdf">moving a WordPress.com blog to your own self hosted blog</a> proving popular, we have updated it to include a section on setting the permalinks of your new blog, so that all the necessary information is in the one place.</p>
<p>Thanks again to all the excellent feedback we have received.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog-well.com/2008/06/27/moving-from-wordpresscom-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>20 Firefox Keyboard Shortcuts To Save You Time</title>
		<link>http://blog-well.com/2008/06/14/firefox-keyboard-shortcuts/</link>
		<comments>http://blog-well.com/2008/06/14/firefox-keyboard-shortcuts/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 20:02:03 +0000</pubDate>
		<dc:creator>Lid</dc:creator>
				<category><![CDATA[How To and What Is]]></category>
		<category><![CDATA[firefox keyboard shortcuts]]></category>
		<category><![CDATA[Firefox shortcuts]]></category>

		<guid isPermaLink="false">http://blog-well.com/?p=348</guid>
		<description><![CDATA[Print up or bookmark this list of commonly used keyboard shortcuts for Firefox to save you time]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog-well.com/wp-content/uploads/2008/06/firefox.jpg"><img class="aligncenter size-full wp-image-349" title="firefox" src="http://blog-well.com/wp-content/uploads/2008/06/firefox.jpg" alt="" width="131" height="127" /></a></p>
<p style="text-align: left;">Print this up, bookmark it, or just remember this list of 20 useful and basic shortcuts.</p>
<ol>
<li>Select location bar: <strong>Ctrl/Cmd+L</strong> or <strong>Alt+D</strong></li>
<li>Select search bar: <strong>Ctrl/Cmd+K</strong></li>
<li>Go to your default homepage: <strong>Alt/Option+Home</strong></li>
<li>Go back a page: <strong>Alt/Cmd+Left Arrow</strong> or <strong>Backspace</strong></li>
<li>Go forward a page: <strong>Alt/Option+Right Arrow</strong>, or <strong>Shift+Backspace</strong></li>
<li>Select an entire page: (ready to copy and paste) <strong>Ctrl/Cmd+A</strong></li>
<li>Copy selected text: <strong>Ctrl/Cmd+C</strong></li>
<li>Paste to new location: <strong>Ctrl/Cmd+V</strong></li>
<li>Select specific text with keyboard: Turn carat browsing on (<strong>F7</strong>)</li>
<li>Refresh/reload page: <strong>F5</strong> or <strong>Ctrl/Cmd+R</strong></li>
<li>Open New Tab: <strong>Ctrl/Cmd+T</strong></li>
<li>Switch between tabs: <strong>Ctrl/Cmd+Tab</strong></li>
<li>Select tab by position: <strong>Ctrl/Cmd+position</strong> (1 &#8211; 9)</li>
<li>View Page Source: <strong>Ctrl/Cmd+U</strong></li>
<li>Find specific words on a page: <strong>Ctrl/Cmd F</strong> to open Quick Find Box (bottom left of screen).</li>
<li>Print Page: <strong>Ctrl/Cmd+P</strong></li>
<li>Save Page: <strong>Ctrl/Cmd+S</strong></li>
<li>Increase text size: <strong>Ctrl/Cmd++</strong></li>
<li>Decrease text size: <strong>Ctrl/Cmd+-</strong></li>
<li>Clear Private data: <strong>Ctrl/Cmd+Shift+Del</strong></li>
<p><strong></strong></p>
<p><em>Image Credit: <a title="Hack College" href="http://www.hackcollege.com" target="_self">Hack College</a> </em><strong><br />
</strong></ol>
]]></content:encoded>
			<wfw:commentRss>http://blog-well.com/2008/06/14/firefox-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

