<?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; design</title>
	<atom:link href="http://www.untanglingtheweb.org/tag/design/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>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>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>
		<item>
		<title>When Should I Use A Splash Page?</title>
		<link>http://www.untanglingtheweb.org/2009/01/02/never-use-a-splash-page.html</link>
		<comments>http://www.untanglingtheweb.org/2009/01/02/never-use-a-splash-page.html#comments</comments>
		<pubDate>Fri, 02 Jan 2009 17:28:20 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=679</guid>
		<description><![CDATA[If you ever have a link that says &#8220;Skip Intro&#8221;, then you need to remove the page that contains that link. There&#8217;s no question or debate about this. The ONLY time I would ever do that is if you are &#8230; <a href="http://www.untanglingtheweb.org/2009/01/02/never-use-a-splash-page.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you ever have a link that says &#8220;Skip Intro&#8221;, then you need to remove the page that contains that link. There&#8217;s no question or debate about this. The ONLY time I would ever do that is if you are promoting a video game or a movie. The only time ever.</p>
<div id="attachment_678" class="wp-caption alignright" style="width: 216px"><img class="size-full wp-image-678" title="6bc39d04-3dbc-40d9-84c6-6877c7e327d9.jpg" src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2008/12/6bc39d04-3dbc-40d9-84c6-6877c7e327d9.jpg" alt="Have you ever heard anyone tell you about a really cool splash page?" width="206" height="240" /><p class="wp-caption-text">Have you ever heard anyone tell you about a really cool splash page?</p></div>
<p>What good does it do if your website has the most beautiful web pages ever designed, but it doesn’t convince people to engage with your organization?</p>
<p>They don&#8217;t happen as much as they used to, but there are still websites out there that are more of an art project than effective promotion tool.</p>
<p>I&#8217;ve seen some splash pages that were a just monument to the web designers Flash and CSS skills. Designers love this stuff, but it&#8217;s the users that you need to worry about. Have you ever heard anyone tell you about a really cool splash page that they saw?</p>
<p>Regardless of your designer&#8217;s technical prowess or if the pressure is coming from some management above you, resist the temptation to use a splash page.</p>
<p>Just say no.
<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%2F02%2Fnever-use-a-splash-page.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2009%2F01%2F02%2Fnever-use-a-splash-page.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/02/never-use-a-splash-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Sites For Churches</title>
		<link>http://www.untanglingtheweb.org/2008/12/23/web-sites-for-churches.html</link>
		<comments>http://www.untanglingtheweb.org/2008/12/23/web-sites-for-churches.html#comments</comments>
		<pubDate>Wed, 24 Dec 2008 04:51:12 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[church]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[managment]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=640</guid>
		<description><![CDATA[I have some experience with building and maintaining web sites for churches. Most of my professional life has been building them for large corporations, which is cool. It paid the bills. My heart is for church web sites though. It &#8230; <a href="http://www.untanglingtheweb.org/2008/12/23/web-sites-for-churches.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have some experience with building and maintaining web sites for churches. Most of my professional life has been building them for large corporations, which is cool. It paid the bills. My heart is for church web sites though.</p>
<p>It just hurts to see what some of them look like out there. I am going to change the direction and focus of this site a little bit to point it more towards churches. Most of the advice and knowledge about small business web sites will apply to churches as well.</p>
<p>I&#8217;ll write a new version of the <a href="http://www.websitestarterkit.com/">Web Site Starter Kit</a>, this one will be for churches. You&#8217;ll learn how to build a site for FREE! Yes, this means that there will be no excuse at all, for not having a web site.</p>
<p><div id="attachment_639" class="wp-caption alignright" style="width: 250px"><img src="http://www.waltonwebdesigner.com/wordpress/wp-content/uploads/2008/12/25b98262-0c11-442a-94c5-c63d93734f9e.jpg" alt="I am going to change the direction and focus more on churches." title="25b98262-0c11-442a-94c5-c63d93734f9e.jpg" width="240" height="161" class="size-full wp-image-639" /><p class="wp-caption-text">I am going to change the direction and focus more on churches.</p></div>My first church web site was in 1996. I had discovered the wonders of this new toy called The Web, so I registered the domain name for the church I was attending at the time. I had a web hosting business (I still do), so I built a simple site that had the basics; service times, a map, statement of faith, bios of the staff, etc.</p>
<p>I told the worship leader about it and he was excited. He &#8220;got it&#8221; back then.</p>
<p>I had a meeting to tell the church business manager about it. He told me to take it down immediately. The Internet was for child porn and software pirates, not churches. He was angry that I had even registered the domain name. Wooah&#8230; Dude. Slow down.</p>
<p>I left the meeting disheartened. Of course, being the obedient, submissive soul that I am, I left the site up and did what I knew was the best thing for the church anyway. Idiot.</p>
<p>There were more meetings and the business manager backed down. He began to see the benefit of the site. People were actually excited about it and word got back to him that it was &#8220;a good thing&#8221;.</p>
<p>The next step, after the &#8220;fear and loathing&#8221; step, was obviously the &#8220;control&#8221; step. They wanted to dictate to me exactly what should be on the site. They wanted everything approved before it went on the site. Again, I submitted by doing the best thing for the church. He never went to the site, so he never knew any better.</p>
<p>We finally got some people in the main office trained to keep it updated. It began to really become a useful tool in the life of the church. They started to look for a higher end publishing platform and spend money on it. About this time, there was another political shift in the church, unrelated to the web site, and my lovely wife and I chose to leave and help start a new church.</p>
<p>The original site fell into the hands of the, well, we&#8217;ll call them ill-equipped to design and maintain a web site. They didn&#8217;t spend any money after all and the site follows all of the &#8220;10 Common Mistakes for Church Web Sites&#8221;. It&#8217;s horrible, last time I looked.</p>
<p>Based on that wonderful experience, and the others that followed, I&#8217;ll be giving my advice on how to create and maintain a web site for a church. I&#8217;ll try to not go on religious rants, whether they involve Calvinism or Microsoft.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F12%2F23%2Fweb-sites-for-churches.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F12%2F23%2Fweb-sites-for-churches.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/2008/12/23/web-sites-for-churches.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last Edit for Web Site Starter Kit</title>
		<link>http://www.untanglingtheweb.org/2008/12/09/last-edit-for-web-site-starter-kit.html</link>
		<comments>http://www.untanglingtheweb.org/2008/12/09/last-edit-for-web-site-starter-kit.html#comments</comments>
		<pubDate>Tue, 09 Dec 2008 18:21:20 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[web site build]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cheap]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[domain name]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[instruction]]></category>
		<category><![CDATA[kit]]></category>
		<category><![CDATA[maintain]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[small]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[small business web]]></category>
		<category><![CDATA[starter]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=537</guid>
		<description><![CDATA[My wife went through the draft with her pen and marked it all up. Anything that she didn&#8217;t understand is being rewritten. Some of my organization wasn&#8217;t clear, so I&#8217;m making that a little clearer. We want to make Web &#8230; <a href="http://www.untanglingtheweb.org/2008/12/09/last-edit-for-web-site-starter-kit.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My wife went through the draft with her pen and marked it all up. Anything that she didn&#8217;t understand is being rewritten. Some of my organization wasn&#8217;t clear, so I&#8217;m making that a little clearer. We want to make Web Site Starter Kit the best it can be, which means clear, concise communication.</p>
<p>They haven&#8217;t quite released WordPress 2.7 yet, so I&#8217;m still rocking the RC1 version of it. They say they will release the final version tomorrow. A few more screenshots today and it should be good to go.</p>
<p>Web Site Starter Kit should be released by the end of the week.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F12%2F09%2Flast-edit-for-web-site-starter-kit.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F12%2F09%2Flast-edit-for-web-site-starter-kit.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/2008/12/09/last-edit-for-web-site-starter-kit.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; It&#039;s Not Just for Bloggers Anymore</title>
		<link>http://www.untanglingtheweb.org/2008/11/20/wordpress-its-not-just-for-bloggers-anymore.html</link>
		<comments>http://www.untanglingtheweb.org/2008/11/20/wordpress-its-not-just-for-bloggers-anymore.html#comments</comments>
		<pubDate>Fri, 21 Nov 2008 01:01:05 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[web site build]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=422</guid>
		<description><![CDATA[I use WordPresss for all of the sites I build, except the very specialized ones. Here&#8217;s an article that backs me up. I&#8217;ve used all of the editors and other CMSs and I think WordPress is the most versatile and &#8230; <a href="http://www.untanglingtheweb.org/2008/11/20/wordpress-its-not-just-for-bloggers-anymore.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I use WordPresss for all of the sites I build, except the very specialized ones. Here&#8217;s an article that backs me up. I&#8217;ve used all of the editors and other CMSs and I think WordPress is the most versatile and easy to use. If you want to keep your site updated regularly, and who doesn&#8217;t?, then you should be using WordPress. I&#8217;m not sure you should ever pay for a theme, since they can all be customized, but it might work best for you.</p>
<blockquote><p><a href="http://1cat.biz/wordpress-its-not-just-for-bloggers-anymore/" target=newwindow >WordPress &#8211; It&#8217;s Not Just for Bloggers Anymore &#8211; Premium WordPress Themes | How to Start, Build and Promote Your Online Business</a></p>
<p><div id="attachment_421" class="wp-caption alignright" style="width: 250px"><a href="http://www.websitestarterkit.com/wordpress/wp-content/uploads/2008/11/19185fd8-38da-42c7-b776-51d555cddeb1.jpg"><img src="http://www.websitestarterkit.com/wordpress/wp-content/uploads/2008/11/19185fd8-38da-42c7-b776-51d555cddeb1.jpg" alt="Wordpress is the most versatile and easy to use." title="19185fd8-38da-42c7-b776-51d555cddeb1.jpg" width="240" height="180" class="size-full wp-image-421" /></a><p class="wp-caption-text">Wordpress is the most versatile and easy to use.</p></div>WordPress &#8211; It&#8217;s Not Just for Bloggers Anymore</p>
<p>Don&#8217;t miss a thing. Subscribe to the 1Cat.biz RSS feed. Thanks for visiting!</p>
<p>Premium WordPress Themes</p>
<p>I&#8217;ve been a webmaster for over 12 years. And in that time I&#8217;ve used just about every HTML editor, CMS and page generator that was ever released.</p>
<p>Today, I use WordPress to develop 99.5 percent of the website projects I work on. The SEO, Web 2.0 and content management features make it so easy to deploy and market websites there&#8217;s really no need to use anything else. Almost anything you could want from a website can be easily plugged into WordPress.</p>
<p>With WordPress you can edit your website from any computer with an Internet connection. Change and add content, navigation, interactive features or even modify the design of the entire site in a matter of minutes. You can do it on a Mac, a PC or even a Linux box. It doesn&#8217;t matter because it&#8217;s all done over the web.</p>
<p>No more hassling with expensive software and updates. Everything you need is built in.</p>
<p>You&#8217;ll notice I&#8217;m using the word &#8220;websites&#8221; and not &#8220;blogs&#8221;.</p>
<p>&#8220;But I thought WordPress was blogging software?&#8221; you ask.</p>
<p>It is blogging software. Arguably the best blogging platform in the known universe. But, it can also be used as a robust content management system with or without blogging features enabled.</p>
<p>Imagine being able to give your secretary or assistant the login to your WordPress site and him being able to update content, add pages and upload photos in less time than it takes you to go to Starbucks and back.</p>
<p>Do you know how many hours I&#8217;ve spent training administrative assistants and church secretaries on how to use Dream Weaver or Front Page to update their websites? More than I care to remember. The sad fact is that most of those sites were never really kept up-to-date and therefore never really lived up to their full potential.</p>
</blockquote>
<p>Read the entire article at <a href="http://1cat.biz/wordpress-its-not-just-for-bloggers-anymore/" target=newwindow > WordPress &#8211; It&#8217;s Not Just for Bloggers Anymore &#8211; Premium WordPress Themes | How to Start, Build and Promote Your Online Business</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%2F2008%2F11%2F20%2Fwordpress-its-not-just-for-bloggers-anymore.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F11%2F20%2Fwordpress-its-not-just-for-bloggers-anymore.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/2008/11/20/wordpress-its-not-just-for-bloggers-anymore.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ask Me Anything About Small Business Web Sites</title>
		<link>http://www.untanglingtheweb.org/2008/11/19/ask-me-anything-about-small-business-web-sites.html</link>
		<comments>http://www.untanglingtheweb.org/2008/11/19/ask-me-anything-about-small-business-web-sites.html#comments</comments>
		<pubDate>Thu, 20 Nov 2008 00:18:50 +0000</pubDate>
		<dc:creator>Conrad Walton</dc:creator>
				<category><![CDATA[web site build]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[small]]></category>
		<category><![CDATA[small business]]></category>
		<category><![CDATA[small business web]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.waltonwebdesigner.com/?p=382</guid>
		<description><![CDATA[I&#8217;ve put up a link under my short bio over there on the right. Put up a new head shot while I was there. If you click on the button, it&#8217;ll pop up a window and you can ask me &#8230; <a href="http://www.untanglingtheweb.org/2008/11/19/ask-me-anything-about-small-business-web-sites.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put up a link under my short bio over there on the right. Put up a new head shot while I was there. If you click on the button, it&#8217;ll pop up a window and you can ask me anything  you want to know about small business web sites. I&#8217;ll answer it as soon as I can. I want to build some traffic to the site, so I thought I&#8217;d put that possibility out there for you.</p>
<p>If you have any questions about small business web sites, web hosts, HTML, design, development, management, WordPress, or anything at all, go ahead and send me the question. We&#8217;ll see just how much I really do know. You can also leave a comment below, if you want to do it that way. Either way should work.</p>
<p>Thanks!
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F11%2F19%2Fask-me-anything-about-small-business-web-sites.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.untanglingtheweb.org%2F2008%2F11%2F19%2Fask-me-anything-about-small-business-web-sites.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/2008/11/19/ask-me-anything-about-small-business-web-sites.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

