<?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>Untangling The Web &#187; web development</title>
	<atom:link href="http://www.untanglingtheweb.org/tag/web-development/feed" rel="self" type="application/rss+xml" />
	<link>http://www.untanglingtheweb.org</link>
	<description>Training Small Business Owners How To Use The Internet</description>
	<lastBuildDate>Fri, 11 Nov 2011 21:58:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How To Convert An Existing Site To WordPress</title>
		<link>http://www.untanglingtheweb.org/2009/01/29/how-to-convert-an-existing-site-to-wordpress.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/29/how-to-convert-an-existing-site-to-wordpress.html#comments</comments>
		<pubDate>Thu, 29 Jan 2009 16:12:02 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[instruction]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=1037</guid>
		<description><![CDATA[I will attempt to explain how to convert an existing site into WordPress. I wrote previously about converting a client&#8217;s site from old school tables to a CSS based WordPress theme at http://www.flowerart.biz. I think this should work for Frontpage &#8230; <a href="http://www.untanglingtheweb.org/2009/01/29/how-to-convert-an-existing-site-to-wordpress.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I will attempt to explain how to convert an existing site into WordPress. I wrote previously about converting a client&#8217;s site from old school tables to a CSS based WordPress theme at <a href="http://www.flowerart.biz" target="newwindow">http://www.flowerart.biz</a>. I think this should work for Frontpage based sites as well as DreamWeaver or any other site that is reasonably coded, that is, if you &#8220;saved as HTML&#8221; from MS Word, you&#8217;re on your own.</p>
<p>A lot of people are looking for this information, so I figure I should expand on it and tell you exactly what I did and how you can convert any existing web site into a WordPress themed site too.</p>
<p><div id="attachment_1040" class="wp-caption alignright" style="width: 170px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/18e9582b-7249-44cb-9aa3-21852ef9b53b.jpg" alt="How To Convert An Existing Site To WordPress" title="18e9582b-7249-44cb-9aa3-21852ef9b53b.jpg" width="160" height="240" class="size-full wp-image-1040" /><p class="wp-caption-text">How To Convert An Existing Site To WordPress</p></div><strong>Concept</strong><br />
The concept of a theme is that it will be the framework, the common template, that all of your content will be displayed inside of. Normally, you will use the same look and feel, the same template, on all of your pages. This usually contains the header, the sidebars, the footer, and the content goes in the middle and changes from page to page. We&#8217;ll want to take the existing HTML files and slice them up into WordPress theme files, with a dynamic place in the middle to put all of the content.</p>
<p><strong>Text Edit</strong><br />
Did I mention that you need a text editor to make WordPress theme files? MS Word will not work. You MUST be able edit the files and save them as &#8220;text&#8221; files. They can not be formatted in any way. On Windows, look for WordPad. On a Mac, look for TextEdit. Do not make them RTF, or Rich Text Format. Just save the files as simple old text.</p>
<p>Quick shout out for <a href="http://www.barebones.com/products/bbedit/" target=newwindow >BBEdit on a Mac</a>. The ultimate text editor and if you&#8217;re going to be doing this, worth every penny. It does not suck. Says so right on the box.</p>
<p><strong>Set Up Dev</strong><br />
Before we get any farther, you&#8217;ll need a development installation of WordPress that you can play with and break. It can&#8217;t share the database with an existing installation, or the theme you pick here will be the theme that the existing site will get at the same time.</p>
<p>If you do not have an installation of WordPress yet, install it and we&#8217;ll just play with it until we&#8217;re happy with the new theme. No one is looking. No one cares. Feel free to break it all you want.</p>
<p>If you do have an existing installation, you need to make another installation. It&#8217;s easy, but pay attention. You will have the existing site in your top level. You&#8217;ll probably have a &#8220;wordpress&#8221; folder with all of the files in it, in that top level. Make a copy, or upload a new copy, of WordPress right next to that folder. Name the new folder &#8220;dev&#8221;. You will now have the existing Worpress in &#8220;wordpress&#8221; and the new one right next to it, named &#8220;dev&#8221;.</p>
<p>Take the existing wp-config.php file and download it to your hard drive, where you can edit it. Open it up and look for the line that says &#8221; $table_prefix  = &#8216;wp_&#8217;; &#8220;. That &#8220;wp_&#8221; is the prefix for all of the tables in the database that WordPress uses. We don&#8217;t want to create a new database. We want to create new tables inside the existing database. We leave everything else in this file alone, but we change the &#8220;wp_&#8221; to &#8220;dev_&#8221;. Our new installation will see that and go create a new set of tables, all with names beginning with &#8220;dev_&#8221;.</p>
<p>Upload that wp-config.php file and upload it to our new &#8220;dev&#8221; installation. It should be next to all of the other &#8220;wp-&#8221;folders, at the top level.</p>
<p>Now, we&#8217;ll let WordPress do it&#8217;s thing. This is where the WordPress is so much better than any other Content Management System out there. We&#8217;ll finish the installation using your web browser.</p>
<p>Go to the home page of the new &#8220;dev&#8221; WordPress installation. If you have a previous installation, type in that URL, followed by /dev/, which is the folder that we put the dev WordPress. If this is a new installation, then you can go to the new home page. You should be looking at a new installation page that says &#8220;welcome&#8221;. You need to fill in the Name of the new site and your email address.</p>
<p>Click on the Install WordPress button. Wait for a really long time while WordPress goes out and updates the database and installs all of the information that it needs. This might take up 10 seconds on a slow day.</p>
<p>You will be looking at a Success! page. The user name is &#8220;admin&#8221; and the password is some totally obscure random string. Log into the new site and look around. You now have a development site that we can install themes on and break if we want to.</p>
<p><strong>Lift and Separate</strong><br />
We want to go back to looking at the existing site that you want to convert. We want to lift the HTML from it and separate it into WordPress theme files.</p>
<p>The basic task is to separate out the &#8220;theme&#8221; elements from the &#8220;content&#8221; elements. If you have a stack of HTML files on your server and you&#8217;re not sure how they all work, download them and look at them in a text editor.</p>
<p>You need to have some background in HTML to know what you are looking at. You&#8217;re going to have to read the HTML and figure out what it is doing. You&#8217;ll see a lot of stuff at the top, in the &lt;head> section. The next should be the header area, all the stuff at the top. Somewhere down after that, will be what looks like content, the actual writing.</p>
<p>Your task, and this is the hardest part, is to figure out exactly where the &#8220;top&#8221; stuff stops and the &#8220;content&#8221; stuff starts. It could be a table cell. It could be a &lt;div> tag. You need to find that point.</p>
<p>In the simplest form, there&#8217;s a bunch of HTML, then there&#8217;s content, then there&#8217;s a bunch more HTML. The goal is to slice that HTML into files named &#8220;header.php&#8221;, &#8220;sidebar.php&#8221;, &#8220;footer.php&#8221;, and most importantly, &#8220;index.php&#8221;. There could be others, but we&#8217;ll talk about that later.</p>
<p>Slice off the top stuff and put it in the &#8220;header.php&#8221; file. Figure out where the side bar stuff might come and copy it into that. You don&#8217;t really need a sidebar file if you don&#8217;t want to have one or you might want a couple, using sidebar-right.php and sidebar-left.php. You&#8217;ll have to go through your code and look at the layout of the page.</p>
<p>Take the bottom stuff and put it in the footer.php. You saw that coming, didn&#8217;t you?</p>
<p>You&#8217;re left with the content. You need to create an &#8220;index.php&#8221; file. At the top, you want to have the tag &lt;?php get_header(); ?>. At the bottom, you want to have the &lt;?php get_footer(); ?> tag. You can put your sidebars in where you want them, before or after the content, for left or right.</p>
<p>In the middle of the index page, you want to put in the magic PHP tags that display the content. Open up the default theme index.php file and look at it. Copy everything starting at the &lt;?php if (have_posts()) : ?> tag down to the &lt;?php endif; ?> tag. You&#8217;ll get a bunch of &#8220;class=entry&#8221; and &#8220;php_content()&#8221; tags.</p>
<p>Save all of these files into a new theme folder. You&#8217;re doing all of this on your hard drive. Name the new theme whatever you want. &#8220;MyNewTheme&#8221; sounds great. Copy the style sheet from the default theme into your new theme folder. If you already have a style sheet from your original site, use that instead.</p>
<p>Open the .css style sheet file. You want to have the new name so that it shows up in the Appearance page in WordPress. At the top of the file, you need to have at least &#8220;/* Theme Name: MyNewTheme */&#8221;. The slash and asterisk means that it&#8217;s &#8220;commented out&#8221; so that it doesn&#8217;t interfere with the style sheet. Don&#8217;t use the quotes, just the slashes and asterisks. Look at the default theme style sheet or the codex for more info. This is minimum.</p>
<p><strong>Upload and Look</strong><br />
Upload your theme folder to the &#8220;wp-content&#8221; themes folder, next to the default and classic themes. Go to your Themes page in WordPress admin and see if your theme is there. If it is, select it and activate it. Hold your breathe and &#8220;View Site&#8221;.</p>
<p>Did it work? Did it break? If you have horrible text that displays PHP error messages, read what they say and try to figure out where the error is. It&#8217;s probably a missing closing tag or a missing semi-colon. I hate those.</p>
<p>Did it display something, but it&#8217;s all out of whack? You need to play with the style sheets and the theme files to get it to display correctly.</p>
<p><strong>Fix it</strong><br />
The simplest situation here is that you copied the code straight out of the original files and plopped it in here and it all works.</p>
<p>The issues could be style sheets, missing code, or badly written HTML. The more you change from original, the more you need to know what you are doing.</p>
<p><strong>Pages</strong><br />
After you get it working and looking right, you want to create new pages for each page in the new site. Just create them and put some gibberish for now. You just want a place holder. Make sure that the menu points to the right places. Menus will be the next issue.</p>
<p><strong>Existing Pages</strong><br />
If you have pages that you just don&#8217;t want to convert, you can put them into the Worpdress top folder, so that they act like normal pages. In my example, all of the portfolio pages are still hard coded PHP files. <a href="http://www.flowerart.biz/portfolio/" target="newwindow">http://www.flowerart.biz/portfolio/</a> I needed to make sure the menus work, but those are hard coded pages. They are not visible in WordPress, but they are visible to the user. Read &#8220;<a href="http://www.waltonwebdesigner.com/2008/12/20/put-a-wordpress-menu-in-an-external-page.html" target="newwindow">Put A WordPress Menu In An External Page</a>&#8221; to see how I made the menus dynamic on a hard coded page.</p>
<p><strong>Menus</strong><br />
If you want to have dynamic menus, where pages are added to the menu when you create the pages, then you need to read through the codex about menu tags and their attributes. It&#8217;s possible to cut out the hard coded HTML menu that you had and replace it with a dynamic one. See where to cut out the old one and replace it with the new tags.</p>
<p><strong>Different Templates</strong><br />
If you have different templates for different pages, you need to know what the differences are. If you need to create a new template for each page, you can do that. Go into each old HTML file, cut out the &#8220;contents&#8221; and replace it per the directions above. Now, create a new file that will act like that specific page&#8217;s index.php file. I like to name them all starting with &#8220;template_&#8221;, so you might have template_aboutus.php.</p>
<p>These new template pages need to have all of the tags of the others, header() and footer() and that stuff. It&#8217;s possible to have a template page that is entirely custom HTML and not even use the content() tags. You won&#8217;t be able to edit it, but it&#8217;ll show up on the site and be managed like other pages.</p>
<p>Each one of these new template pages needs to have the commented out lines at the top of the file that has the name in this format: &#8220;/* Template Name: About Us */&#8221;, again, without the quotes.</p>
<p>Upload this new file to the theme folder, next to the index.php file. Go back to the page that needs to use this template. On the right, there&#8217;s a &#8220;Template&#8221; drop down menu that should now list all of the template files that contain that &#8220;Template Name:&#8221; line in them. Select the one you want to use for that page and update.</p>
<p>Go look at it. You will have to customize and fix each template to make sure it works with the pages that you want.</p>
<p><strong>Final Touches</strong><br />
You will have to go through each page and make sure that the menus work and that they look right. You can use the default theme as a guide. You can look up specific problems in the <a href="http://codex.wordpress.org/" target="newwindow">codex</a> or the <a href="http://wordpress.org/support/" target="newwindow">forums</a> or you can ask me.</p>
<p>From here on out, it will be stylesheets and php tags to get it to look and work right. If you have a specific problem, let me know in the comments below and we can walk through it.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F29%2Fhow-to-convert-an-existing-site-to-wordpress.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F29%2Fhow-to-convert-an-existing-site-to-wordpress.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/29/how-to-convert-an-existing-site-to-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Much Does SEO Cost?</title>
		<link>http://www.untanglingtheweb.org/2009/01/28/how-much-does-seo-cost.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/28/how-much-does-seo-cost.html#comments</comments>
		<pubDate>Wed, 28 Jan 2009 16:48:33 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[maintain]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[small business web]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=1019</guid>
		<description><![CDATA[SEO should be free. SEO stands for Search Engine Optimization. How much it costs will depend on how optimized you want it to be. Nothing in SEO costs any money, only time. You should learn what the techniques are and &#8230; <a href="http://www.untanglingtheweb.org/2009/01/28/how-much-does-seo-cost.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>SEO should be free.</p>
<p>SEO stands for Search Engine Optimization. How much it costs will depend on how optimized you want it to be. Nothing in SEO costs any money, only time. You should learn what the techniques are and then you should do them your self.</p>
<p><div id="attachment_1021" class="wp-caption alignright" style="width: 190px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/199d2e78-69e2-4fa4-9a25-d6f860dee13f.jpg" alt="SEO just wants to be free. Don&#039;t pay for it." title="199d2e78-69e2-4fa4-9a25-d6f860dee13f.jpg" width="180" height="240" class="size-full wp-image-1021" /><p class="wp-caption-text">SEO just wants to be free.<br /> Don't pay for it.</p></div>A friend just told me recently &#8220;I have many people that do SEO for me already&#8221;. Really? He&#8217;s a friend, so I won&#8217;t tear him apart for that too much, but his site is found for the one thing that he&#8217;s interested in and it&#8217;s not found for his main products. I looked.</p>
<p>The first thing that you must do, MUST do, is to pick some keywords or phrases that you want to rank highly for. The best way to do this is to think about it from your users point of view. What problem are they trying to solve when they come to your site. Why should they be there? <a href="http://www.flowerart.biz" target=newwindow >Wedding Flowers</a>? Car Repair? Pizza? a <a href="http://tocantins.survivor.com/" target=newwindow">TV Show</a>? What are those words that they will type into Google to find you?</p>
<p>It&#8217;s good to get one main phrase that you was to own. That phrase will go everywhere on your site, so many times that&#8217;s annoying.</p>
<p>Now you need to pick 3-5 more phrases that you want to do well for. Maybe you won&#8217;t own these, but you still want traffic from them.</p>
<p>Remember, these phrases must be from the user&#8217;s point of view, not yours. You might think that you sell &#8220;water treatment systems&#8221;, but your users want to buy &#8220;water softeners&#8221;. You might think that you sell &#8220;hand made, one of a kind, jewelry&#8221;, but I&#8217;m looking for a &#8220;woman birthday gift&#8221;. You might think you sell &#8220;woman&#8217;s action wear&#8221;, but my wife&#8217;s looking for &#8220;woman sports clothes&#8221;.</p>
<p>Now that that has rolled around in your head for a while, you can write down the phrases that you want to rank well for and the one that you want to own.</p>
<p>Next, you can scatter those phrases around your site and ask for links from other sites. Make your title on every page contain that main phrase. Leave comments on other sites using those phrases. Do all of the other SEO stuff that you can find on the Internet and that I&#8217;ll talk about later.</p>
<p>SEO just wants to be free. Don&#8217;t pay for it.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F28%2Fhow-much-does-seo-cost.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F28%2Fhow-much-does-seo-cost.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/28/how-much-does-seo-cost.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Much Does WordPress Really Cost?</title>
		<link>http://www.untanglingtheweb.org/2009/01/26/how-much-does-wordpress-really-cost.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/26/how-much-does-wordpress-really-cost.html#comments</comments>
		<pubDate>Mon, 26 Jan 2009 21:36:27 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[small business web]]></category>
		<category><![CDATA[starter]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhost]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=900</guid>
		<description><![CDATA[WordPress is free. I saw an article recently listing 10 free web site building tools. Most of them take a while to figure out. They won&#8217;t all let you do what you want to do. None were expandable to your &#8230; <a href="http://www.untanglingtheweb.org/2009/01/26/how-much-does-wordpress-really-cost.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress is free.</strong></p>
<p>I saw an article recently listing 10 free web site building tools. </p>
<p>Most of them take a while to figure out. </p>
<p>They won&#8217;t all let you do what you want to do. </p>
<p>None were expandable to your own site if you ever wanted to take the next step, from &#8220;free&#8221; to &#8220;owning your own&#8221;.</p>
<p><div id="attachment_899" class="wp-caption alignright" style="width: 190px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/1932c1eb-45f5-4d9e-a6f2-fbe75b57dacb.jpg" alt="The biggest cost is time." title="1932c1eb-45f5-4d9e-a6f2-fbe75b57dacb.jpg" width="180" height="240" class="size-full wp-image-899" /><p class="wp-caption-text">The biggest cost is time.</p></div>It made me think about what the real costs of a web platform are. </p>
<p><strong>The biggest cost is time. </strong></p>
<p>How long does it take you to learn how to work it and make it do what you want it to do? </p>
<p>How much is it going to frustrate you and make you figure out how to do something simple?</p>
<p>In my experience with WordPress, and I&#8217;m coming at this from a developer point of view, it&#8217;s much easier and intuitive to learn to use WordPress than with any other platform out there. </p>
<p>When I build a site for a client using WordPress, it&#8217;s much easier to train them and get them up to speed on WordPress than other systems that I&#8217;ve tried.</p>
<p><strong>The Real, Hard Costs</strong></p>
<p>Let&#8217;s look at the cost it would take to put a WordPress site on your own server and run it for a year. </p>
<p>Domain name is $10. Don&#8217;t pay more than that for a domain name. </p>
<p>Hosting packages can be had for less than $80 a year. </p>
<p>Call the whole thing $100 for a year of hosting your own site.</p>
<p>If you use a good host, they would have an auto install version of WordPress. Click, click, bang. It&#8217;s set up. </p>
<p>Play with a theme. Spend too much time looking on line for a theme. Download, install. </p>
<p>Play with plug ins. Download, install. </p>
<p>Write a few posts. Create a few pages. Change the layout a bit. </p>
<p>Call it 8 hours total, from start to having your own blog on line, working, with your own theme and content. </p>
<p>You have added the plug-ins that you wanted, the theme that you wanted, the layout, the content, the menu. </p>
<p>All of it is exactly what you want.</p>
<p><strong>The Price Of Choice</strong></p>
<p>The cost in time is really because you have TOO MANY options. </p>
<p>If you can be satisfied with what comes out of the box, then a WordPress site can be set up in 20 minutes.</p>
<p><strong>Other Free Hosting Options</strong></p>
<p>Compare that to another free host. </p>
<p>Set up is quick and easy. Pick a theme. There are only 20. </p>
<p>Write a post. Change the layout? No. Can&#8217;t do that. </p>
<p>Put the menu on the other side? No. Can&#8217;t do that. </p>
<p>You want to post video? No. Can&#8217;t do that either. </p>
<p>Podcast? Special functionality? Nope. None of that.</p>
<p><strong>The Cost Of Free</strong></p>
<p>You&#8217;ve spent the same 8 hours trying to do stuff and not being able to that you would have on WordPress. </p>
<p>The other free host is $100 cheaper and maybe that&#8217;s the difference for you. </p>
<p>It doesn&#8217;t look quite like you want it to and it doesn&#8217;t have quite the right functionality. </p>
<p>It&#8217;s harder to use and takes longer to post than WordPress. </p>
<p>If it takes 3 minutes longer and you make 20 posts, that&#8217;s an hour.</p>
<p>How many posts in a year?</p>
<p><strong>Time Is Money</strong></p>
<p>This reminds me of the difference between Windows and a Mac. </p>
<p>The Mac costs a bit more to start, but lasts twice a long, lets you work twice as fast, and makes it easier to do anything you want. </p>
<p>Which is a better deal? </p>
<p>How much is your time worth? </p>
<p>How much money do you have?</p>
<p>It&#8217;s all up to you, but if you have $100 to spend on a web site for a year, spend it on building a WordPress site. </p>
<p>You&#8217;ll thank me at the end of the year.</p>
<p><strong>Special Offer</strong></p>
<blockquote><p>This page has gotten so much traffic that I&#8217;ve just added this offer.</p>
<p><strong>Want Me To Set Up WordPress For You? </p>
<p>FOR FREE?</strong></p>
<p>Doing the WordPress installation and set up can be a bit tricky, especially for people who are not technically inclined.</p>
<p>I get an affiliate fee from my web hosting company for every person I refer to them.  </p>
<p>If you use the special link I provide below, which contains my affiliate code so they can pay me, I&#8217;m willing to do the complete WordPress installation for you, for free. </p>
<p><strong>Get Web Hosting</strong></p>
<p>They are charging $3.88 a month for hosting as I write this. </p>
<p>(That price could change, so check it out yourself.)</p>
<p>They have a 30 day money back guarantee. </p>
<p><strong>I&#8217;ll Set It Up For You</strong></p>
<p>I&#8217;ll install whatever theme and plugins that you want. </p>
<p>I have a list of plugins that I always install for my clients. </p>
<p>I&#8217;ll walk you through any configuration settings that you want and show you how to make it do what you want it to do. </p>
<p>I&#8217;ve done so many WordPress installations, it&#8217;s fast and easy for me. </p>
<p>I make a few bucks from PowWeb and I make another WordPress fan. </p>
<p>You get good, cheap web hosting for your own web site, with none of the technical hassle. </p>
<p>How cool is that?</p>
<p><strong>NO OBLIGATION NOW</strong></p>
<p><strong>CLICK THIS LINK FOR MORE INFO:<br />
<a href="http://www.powweb.com/join/index.bml?AffID=577083&amp;LinkName=wpcost" target="_blank">http://www.powweb.com/?AffID=577083</a></strong></p>
<p><a href="http://www.powweb.com/join/index.bml?AffID=577083&amp;LinkName=wpcostbanner"><img src="http://www.powweb.com/affiliate/banners/345" style="border:0px" alt="affiliate_link"></a></p>
<p>After you click on that link and set up your hosting account, send me an email using my normal &#8220;<a href="http://www.untanglingtheweb.org/contact">contact us</a>&#8221; page, and tell me that you want me to install WordPress for you. </p>
<p>As long as you use that link, you can buy the web hosting any time within the next 6 months and I&#8217;ll get the commission. </p>
<p>If you have any questions, please drop me an email and ask. </p>
<p>Looking forward to helping you get your web site set up.
</p></blockquote>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F26%2Fhow-much-does-wordpress-really-cost.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F26%2Fhow-much-does-wordpress-really-cost.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/26/how-much-does-wordpress-really-cost.html/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Art and Money, Part Two</title>
		<link>http://www.untanglingtheweb.org/2009/01/25/art-and-money-part-two.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/25/art-and-money-part-two.html#comments</comments>
		<pubDate>Sun, 25 Jan 2009 20:49:21 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=894</guid>
		<description><![CDATA[I&#8217;ve been thinking about what I wrote about the Greenes. I think that it is possible and even probable, to make money clinging to your one, true, pure artistic vision. But I&#8217;ve known a lot of starving artists. Some artists &#8230; <a href="http://www.untanglingtheweb.org/2009/01/25/art-and-money-part-two.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been thinking about what I wrote about the Greenes. I think that it is possible and even probable, to make money clinging to your one, true, pure artistic vision.</p>
<p>But I&#8217;ve known a lot of starving artists. Some artists are just bad. Their vision is not worth making money. They need desk jobs instead.</p>
<p><div id="attachment_893" class="wp-caption alignright" style="width: 250px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/2972214b-c055-447a-9b65-fa0727cca4f8.jpg" alt="I&#039;ve known a lot of starving artists" title="2972214b-c055-447a-9b65-fa0727cca4f8.jpg" width="240" height="131" class="size-full wp-image-893" /><p class="wp-caption-text">I've known a lot of starving artists</p></div>I guess the answer is in the balance between the two. You need to pay the rent. You should hang on to your vision.</p>
<p>It&#8217;s the balance between the practical and the aesthetic. That should be the balance that you use to design your web site with also. You should make it interesting and artistic. You should have a point of view and make your statement.</p>
<p>On the other side, it should load quickly. It should not distract from your goal. It should communicate effectively. It should make the sale.</p>
<p>Art and Money are two sides to the same coin. You need both. I was wrong to say that you only need the art. You need to accomplish your goals as well, no matter what it takes.</p>
<p>Otherwise, you will have the most beautiful site in the world and no one will ever know.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F25%2Fart-and-money-part-two.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F25%2Fart-and-money-part-two.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/25/art-and-money-part-two.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art and Money</title>
		<link>http://www.untanglingtheweb.org/2009/01/24/art-and-money.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/24/art-and-money.html#comments</comments>
		<pubDate>Sun, 25 Jan 2009 04:46:17 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=865</guid>
		<description><![CDATA[I visited &#8220;The New and Native Beauty: The Art and Craft of Greene and Greene&#8221; at the Huntington Library today. It was a rainy day, but the exhibit closes in 2 days, so this was our last chance. The rain &#8230; <a href="http://www.untanglingtheweb.org/2009/01/24/art-and-money.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.huntington.org/Information/greene.htm" target=newwindow ><div id="attachment_873" class="wp-caption alignnone" style="width: 480px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/newandnative.jpg" alt="The New and Native Beauty: The Art and Craft of Greene and Greene" title="newandnative.jpg" width="470" height="118" class="size-full wp-image-873" /><p class="wp-caption-text">The New and Native Beauty: The Art and Craft of Greene</p></div></a></p>
<p>I visited &#8220;The New and Native Beauty: The Art and Craft of Greene and Greene&#8221; at the Huntington Library today. It was a rainy day, but the exhibit closes in 2 days, so this was our last chance. The rain kept the riff raff out, so it was not crowded and it was a pleasant experience.</p>
<div id="attachment_868" class="wp-caption alignright" style="width: 210px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/b8f7ce67-97de-402f-9a34-2c4c1b1f6aa0.jpg" alt="Greene and Greene" title="b8f7ce67-97de-402f-9a34-2c4c1b1f6aa0.jpg" width="200" height="325" class="size-full wp-image-868" /><p class="wp-caption-text">Greene and Greene</p></div>I love the houses designed by Greene and Greene. They are two brothers who built amazing houses between 1900 and 1920 or so. They are the epitome of the California Arts and Crafts movement and are most famous for the Gamble house in Pasadena.</p>
<p>The thing that struck me about what I saw today was how their ideas and ideals were forced upon their clients. They had the audacity to believe that they were artists and that their clients should appreciate that. Is the customer always right? Uummm&#8230;yeah, kind of.</p>
<p>When they were building the Pratt house in Ojai, the owner complained about missed schedules and cost overruns. Anyone who&#8217;s built a web site knows how that works. Their response was that even though they appreciated the frustration of the owner, what he was getting was not just house, but a work of art, which takes time and effort to complete properly and would be well worth it in the end. I&#8217;ve seen the house and it&#8217;s magnificent. I&#8217;m not sure Mr Pratt was satisfied.</p>
<p>During the depression, they still made magnificent houses, but not as many. They still charged the same high prices. They were creating art and it could not be achieved with shortcuts.</p>
<p>The balance between the business and the creative process was a delicate one. In their case, the business suffered in service to the art, finally being dissolved in 1922. What they achieved has stood the test of critics and time and is as amazing today as it was then. They created a whole new way of building houses, with a new attitude behind how life should be lived in these houses.</p>
<p>Is it worth it to sacrifice business for art? I don&#8217;t know. I need to pay the mortgage and eat, but beyond that, maybe art is the greater calling. Were they self indulgent, self centered, and egomaniacal? Maybe. So is Steve Jobs and I love my iPhone. He&#8217;s a billionaire.</p>
<p>As much as our users need to be considered in our web design, we, as the developers, the creators of the web site, need to instill our passion, our vision, our knowledge of how things SHOULD be into every web site. As much as I love SEO and WordPress and AdSense and marketing, our one true goal, our pure artistic vision, needs to be embodied in our web sites. Maybe there&#8217;s art in SEO. Maybe marketing is an art too.</p>
<p><div id="attachment_867" class="wp-caption alignnone" style="width: 448px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/1eea1ae7-a8e4-4006-adc1-415554e581f4.jpg" alt="Gamble House, Pasadena, CA" title="1eea1ae7-a8e4-4006-adc1-415554e581f4.jpg" width="438" height="221" class="size-full wp-image-867" /><p class="wp-caption-text">Gamble House, Pasadena, CA</p></div>
<p>I think that as we lose the need for money, as we let that go and accept being poor, in the pursuit of artistic vision, in the pursuit of our passion, of what we love and know is the best, I think that then, and only then, does the money seem to come back in response. As we push it away and turn towards the artistic ideal, somehow, the money seems to be attracted back to that ideal. Maybe that&#8217;s a little too idealistic, too simplistic, I mean there&#8217;s always the lottery, but it does seem to be a tendency in life.</p>
<p>Don&#8217;t let the pursuit of money ruin your passion. Don&#8217;t let worry cloud your vision. Be who you are and the money will follow.</p>
<p>In 1943, in retirement, Charles Sumner Greene said &#8220;I did not always give them what they wanted, but always what they liked.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F24%2Fart-and-money.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F24%2Fart-and-money.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/24/art-and-money.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Role of Design in Modern Church Marketing [Design Principles]</title>
		<link>http://www.untanglingtheweb.org/2009/01/22/the-role-of-design-in-modern-church-marketing-design-principles.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/22/the-role-of-design-in-modern-church-marketing-design-principles.html#comments</comments>
		<pubDate>Thu, 22 Jan 2009 19:25:01 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[church]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=835</guid>
		<description><![CDATA[Quoting from The Role of Design in Modern Church Marketing [Design Principles] Yet the recent image makeover of churches is unpalatable for some. In 2006, Pastor John MacArthur published a popular article (&#8220;Grunge Christianity?&#8221;) condemning modern churches that trade sanctity &#8230; <a href="http://www.untanglingtheweb.org/2009/01/22/the-role-of-design-in-modern-church-marketing-design-principles.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<blockquote><p>Quoting from <a href="http://www.sitepoint.com/article/design-modern-church-marketing/" target=newwindow > The Role of Design in Modern Church Marketing [Design Principles]</a></p>
<p>Yet the recent image makeover of churches is unpalatable for some. In 2006, Pastor John MacArthur published a popular article (&ldquo;Grunge Christianity?&rdquo;) condemning modern churches that trade sanctity for &ldquo;cultural relevancy.&rdquo; MacArthur and his supporters disagree with so-called pragmatists who seek bigger, more worldly congregations. Nathan Smith (GodBit.com) counters, &ldquo;we are naive if we try to take an isolationist approach. God wants a direct relationship with each person, so we&mdash;as facilitators of that calling&mdash;have to meet people through what they know, and if that is pop culture, then so be it.&rdquo;</p>
<p><div id="attachment_845" class="wp-caption alignleft" style="width: 170px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/757fe33d-95bc-4f3e-95f6-58a82c7c6cbb.jpg" alt="How many congregations identify with dark, gritty imagery?" title="757fe33d-95bc-4f3e-95f6-58a82c7c6cbb.jpg" width="160" height="240" class="size-full wp-image-845" /><p class="wp-caption-text">How many congregations identify with dark, gritty imagery?</p></div>From a design perspective, applying a pop culture flavor to a place of worship can mean many things, but comes down to doing what&rsquo;s appropriate on a church-by-church basis. Says Chris Merritt (Pixel Light Creative), &ldquo;If the church is a traditional conservative church, then I&rsquo;m probably not going to use an abundance of grunge brushes and ragged textures. Every once in a while there&rsquo;s a church who wants to launch a new image and use the web site as a launching pad. Even in that case, moderation is important; otherwise you may end up alienating those who are comfortable with the original image.&rdquo;</p>
<p>So what about the multitude of recent church web sites designed around ragged, dark, asymmetrical elements&mdash;what does this communicate about the church? How many congregations identify with dark, gritty imagery?</p>
</blockquote>
<p>Read the entire article at:<br />
<a href="http://www.sitepoint.com/article/design-modern-church-marketing/" target=newwindow > http://www.sitepoint.com/article/design-modern-church-marketing/ </a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F22%2Fthe-role-of-design-in-modern-church-marketing-design-principles.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F22%2Fthe-role-of-design-in-modern-church-marketing-design-principles.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/22/the-role-of-design-in-modern-church-marketing-design-principles.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read Your Analytics Stats</title>
		<link>http://www.untanglingtheweb.org/2009/01/21/read-your-analytics-stats.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/21/read-your-analytics-stats.html#comments</comments>
		<pubDate>Wed, 21 Jan 2009 21:27:12 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[statistics]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[small business web]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=831</guid>
		<description><![CDATA[I was walking a client through his Analytics stats yesterday, explaining what each page, each section meant. I asked him if he ever looked at these since we set them up. He looks at them as much as you do, &#8230; <a href="http://www.untanglingtheweb.org/2009/01/21/read-your-analytics-stats.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was walking a client through his Analytics stats yesterday, explaining what each page, each section meant. I asked him if he ever looked at these since we set them up. He looks at them as much as you do, which is never.</p>
<p><div id="attachment_830" class="wp-caption alignleft" style="width: 202px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/04147efd-34cd-4667-97e4-e11b2a7454e3.jpg" alt="What traffic are you missing? " title="04147efd-34cd-4667-97e4-e11b2a7454e3.jpg" width="192" height="240" class="size-full wp-image-830" /><p class="wp-caption-text">What traffic are you missing? </p></div>He didn&#8217;t connect the value of what these numbers and charts mean to how he can improve his site and make more money with it, as well as make it a better experience for his users.</p>
<p>As we drilled into the content part of it, I saw that no one, as in not one person, was looking through his portfolio pages. I realized that these pages have a smaller menu over to the side that people could easily miss.</p>
<p>Also, when I redesigned his site by bringing it into WordPress (of course), the top, main menu now has a different look and action than the original small portfolio menu. I used to just put a glow around the highlighted menu item and now I was doing the whole colored div background, which is much more apparent.</p>
<p>Now we have a menu that looks and functions differently and no one who ever clicks on them. HHHmmmm. What to do?</p>
<p>Next step, I put in the same style menu as the top, so they highlight the same. That should improve the click on those. We&#8217;ll be watching his stats to see what happens.</p>
<p>Read your Analytics pages today. What traffic are you missing?
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F21%2Fread-your-analytics-stats.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F21%2Fread-your-analytics-stats.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/21/read-your-analytics-stats.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Much Does WordPress Cost?</title>
		<link>http://www.untanglingtheweb.org/2009/01/12/how-much-does-wordpress-cost.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/12/how-much-does-wordpress-cost.html#comments</comments>
		<pubDate>Mon, 12 Jan 2009 18:38:23 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhost]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=811</guid>
		<description><![CDATA[I ran into an old friend recently. The usual questions were asked about what&#8217;s happened in the 20 years since we&#8217;ve seen each other. Yes, I do web sites. They said they were about to update their web site. Their &#8230; <a href="http://www.untanglingtheweb.org/2009/01/12/how-much-does-wordpress-cost.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I ran into an old friend recently. The usual questions were asked about what&#8217;s happened in the 20 years since we&#8217;ve seen each other. Yes, I do web sites.</p>
<p>They said they were about to update their web site. Their spouse had created it and they wanted to add some features and update the look. I suggested that they use WordPress. I sounded like the fan boy that I am.</p>
<p>They were pleasant, but said they already had hosting with GoDaddy and they would just use the web blog application that they provided as part of the hosting package. They had heard of WordPress and that it was good, but they would use what they had.</p>
<p>I continued on about how cool WordPress is. They were very nice, but had decided that they didn&#8217;t want to pay anything extra when they already had a blogging application included in their hosting package.</p>
<p>I checked it out on my own GoDaddy account. It sucked! It had a tenth of the functionality and the interface was horrible.<br />
<div id="attachment_813" class="wp-caption alignright" style="width: 250px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/6dff6a3e-eff6-4173-8e0a-f4b78075872e.jpg" alt="Did I mention that it&#039;s free? " title="6dff6a3e-eff6-4173-8e0a-f4b78075872e.jpg" width="240" height="180" class="size-full wp-image-813" /><p class="wp-caption-text">Did I mention that it's free? </p></div><br />
I told them again that they should use WordPress. I told them that it is free. You can install it anywhere. It&#8217;s got features, and blah blah blah, and IT&#8217;S FREE!</p>
<p>Oh. That&#8217;s quite different. It&#8217;s free you say? You don&#8217;t have to buy it?</p>
<p>No! It&#8217;s FREE. You can download it, install it, pick a theme, put in some plug ins and have a complete, professional web site FOR FREE.</p>
<p>They said they would check it out. They thanked me profusely. Told me that I had motivated them to get going on their web site.</p>
<p>I have no idea if they will do anything on it at all, but I guess I was shocked that not everyone has the same understanding and knowledge and beliefs that I do. Silly me.</p>
<p>People seem to think that to get cool software, you have to spend money. If you don&#8217;t spend money, then you can have cool software. People can&#8217;t wrap their heads around the whole &#8220;open source&#8221; thing.</p>
<p>If you happen to not be aware, WordPress is free. There is no cost. You can download it and install it on any web server that&#8217;s running MySQL and Apache (which is almost every web server these days). You can control all aspects of it. You can build your own theme if you want. You can do anything with it.</p>
<p>Did I mention that it&#8217;s free?
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F12%2Fhow-much-does-wordpress-cost.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F12%2Fhow-much-does-wordpress-cost.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/12/how-much-does-wordpress-cost.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Half Of All Churches Do NOT Have A Web Site!</title>
		<link>http://www.untanglingtheweb.org/2009/01/06/the-church-in-2009.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/06/the-church-in-2009.html#comments</comments>
		<pubDate>Wed, 07 Jan 2009 04:08:59 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[church]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[starter]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=789</guid>
		<description><![CDATA[Half of all churches in America today do NOT have a web site. Half! What excuse is there for that? This article below is quoting a Duke University survey to make the point that the church has caught up with &#8230; <a href="http://www.untanglingtheweb.org/2009/01/06/the-church-in-2009.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Half of all churches in America today do NOT have a web site. Half! What excuse is there for that? This article below is quoting a Duke University survey to make the point that the church has caught up with the times, that only a fifth of them had a web site in 1998. But the glass is not half full here. It&#8217;s half empty.</p>
<p>If you are involved with a church that does not have a web site, I can show you how to get one for free, using WordPress.com. All it takes is a little initiative on your part and you can have a web site. You don&#8217;t need a $300 site. You don&#8217;t need a $500 site. You can have a free web site for your church. Go to <a href="http://www.worpdress.com">www.worpdress.com</a> and follow the instructions.</p>
<p>Do it now. For the children.</p>
<blockquote><p>Quoting from <a href="http://www.kypost.com/content/middleblue3/story/The-Church-In-2009/o3oMerab5E2upfPeBvDqdg.cspx" target=newwindow > The Church In 2009 &#8211; KYPost.com</a></p>
<p><div id="attachment_788" class="wp-caption alignright" style="width: 170px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2009/01/d2270666-89b5-48ed-bb3c-a8c712eaab76.jpg" alt="Close to half of the churches offer Web pages." title="d2270666-89b5-48ed-bb3c-a8c712eaab76.jpg" width="160" height="240" class="size-full wp-image-788" /><p class="wp-caption-text">Close to half of the churches offer Web pages.</p></div>For example, local churches have caught up with the secular society in their use of computers and technology. In 1998, fewer than one in five U.S. congregations hosted Web sites; today, close to half of the churches offer Web pages to their members and local community. A friend of mine who ministers to a large Washington, D.C. Baptist congregation has a frequently updated interactive Web site whose volunteer editor works from India.</p>
</blockquote>
<p>Read the entire article at:<br />
<a href="http://www.kypost.com/content/middleblue3/story/The-Church-In-2009/o3oMerab5E2upfPeBvDqdg.cspx" target=newwindow > http://www.kypost.com/content/middleblue3/story/The-Church-In-2009/o3oMerab5E2upfPeBvDqdg.cspx </a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F06%2Fthe-church-in-2009.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F06%2Fthe-church-in-2009.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/06/the-church-in-2009.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Reasons Why Your Church Website Needs Work &#124; Web Site Design Blog</title>
		<link>http://www.untanglingtheweb.org/2009/01/04/10-reasons-why-your-church-website-needs-work-web-site-design-blog.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/04/10-reasons-why-your-church-website-needs-work-web-site-design-blog.html#comments</comments>
		<pubDate>Sun, 04 Jan 2009 15:59:09 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[church]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=734</guid>
		<description><![CDATA[This is a great check list to run through while you review your existing web site. If you have any of these things, please remove them. I&#8217;m begging you. It&#8217;s for the sake of the children. Quoting from 10 Reasons &#8230; <a href="http://www.untanglingtheweb.org/2009/01/04/10-reasons-why-your-church-website-needs-work-web-site-design-blog.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a great check list to run through while you review your existing web site. If you have any of these things, please remove them. I&#8217;m begging you. It&#8217;s for the sake of the children.</p>
<blockquote><p>Quoting from <a href="http://blog.collinsinternet.com/34/10-reasons-why-your-church-website-needs-work/" target=newwindow > 10 Reasons Why Your Church Website Needs Work | Web Site Design Blog</a></p>
<p><strong>1. You have an over excessive use of animated clipart.</strong><br />
This may have been acceptable in the 90&rsquo;s for personal home pages, but it should never be used on a church&rsquo;s website.<br />
<div id="attachment_733" class="wp-caption alignright" style="width: 250px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2008/12/7c1be01f-f2a0-4ceb-a028-00a3dc03892b.jpg" alt="If you want to really annoy your visitors, keep this feature because it works." title="7c1be01f-f2a0-4ceb-a028-00a3dc03892b.jpg" width="240" height="180" class="size-full wp-image-733" /><p class="wp-caption-text">If you want to really annoy your visitors, keep this feature because it works.</p></div><br />
<strong>2. You play background music that cannot be turned off.</strong><br />
If you want to really annoy your visitors, keep this feature because it works.</p>
<p><strong>3. Your site is in frames.</strong><br />
So you figured that you would make it easy for the navigation to be updated. Too bad you didn&rsquo;t realize that search engines and some web browsers cannot properly view frames.</p>
<p><strong>4. The last time you updated the site was two years ago.</strong><br />
It&rsquo;s always good to know what events took place in the past, too bad we have no idea what&rsquo;s going on in the present.</p>
<p><strong>5. You utilize scrolling marquee text.</strong><br />
Sure it may look okay on CNN, but it looks horrible on a website.</p>
<p><strong>6. You use numerous font types throughout the website.</strong><br />
A little Comic Sans here, a little Arial there and a few Wingdings here, it&rsquo;s a masterpiece! Perhaps only to a child.</p>
<p><strong>7. You built the site using Microsoft Word.</strong><br />
It was easy, just outline everything how you wanted it and then save as webpage. It doesn&rsquo;t matter how different web browsers and different screen resolutions see the site, because it looks fabulous on your screen.</p>
<p><strong>8. You used Java or Flash for your navigation.</strong><br />
Look at the pretty cool effect. It&rsquo;s a shame that search engines have a hard time trying to crawl a site with that type of navigation.</p>
<p><strong>9. You didn&rsquo;t properly resize images before you added them on the site.</strong><br />
Why is that picture of the Pastor so blurry?</p>
<p><strong>10. You have used the same website design for the past five years.</strong><br />
Why change it now? That old outdated look really defines our church.</p>
</blockquote>
<p>Read the entire article at:<br />
<a href="http://blog.collinsinternet.com/34/10-reasons-why-your-church-website-needs-work/" target=newwindow > http://blog.collinsinternet.com/34/10-reasons-why-your-church-website-needs-work/ </a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F04%2F10-reasons-why-your-church-website-needs-work-web-site-design-blog.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F04%2F10-reasons-why-your-church-website-needs-work-web-site-design-blog.html&amp;source=conradwalton&amp;style=normal&amp;service=bit.ly&amp;service_api=R_31989b0d7fed1b2ca61c6228193c1052&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://www.untanglingtheweb.org/2009/01/04/10-reasons-why-your-church-website-needs-work-web-site-design-blog.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

