<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Denver Web Design Blog - Katz Web Design</title>
	<atom:link href="http://katzwebdesign.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://katzwebdesign.wordpress.com</link>
	<description>Zack Katz is a Denver web designer. Katz Web Design is his web design business based in Lakewood, Colorado.</description>
	<pubDate>Tue, 13 May 2008 23:03:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>How I fixed WP-DownloadManager 404 errors</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/13/how-i-fixed-wp-downloadmanager-404-errors/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/13/how-i-fixed-wp-downloadmanager-404-errors/#comments</comments>
		<pubDate>Tue, 13 May 2008 23:03:39 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[Download]]></category>

		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=147</guid>
		<description><![CDATA[
I use LesterChan&#8217;s Download Manager plugin, and it&#8217;s great. Good interface, simple purpose. 
I recently found out that after upgrading a client&#8217;s site to WP 2.5, WP-DownloadManager was no longer working.  I followed the documentation on the plugin website, including resetting the permalink structure, but nothing worked.
For some reason the re-write wasn&#8217;t working properly: all the downloads [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://lesterchan.net/wordpress/readme/wp-downloadmanager.html"><img src="http://katzwebdesign.files.wordpress.com/2008/05/picture-103.jpg?w=500&h=91" alt="Lester Chan\'s header" width="500" height="91" /></a><br />
I use <a href="http://lesterchan.net/blogs/">LesterChan</a>&#8217;s Download Manager plugin, and it&#8217;s great. Good interface, simple purpose. </p>
<p>I recently found out that after upgrading a client&#8217;s site to WP 2.5, <a href="http://wordpress.org/extend/plugins/wp-downloadmanager/stats/">WP-DownloadManager</a> was no longer working.  I followed the documentation on the <a href="http://lesterchan.net/wordpress/readme/wp-downloadmanager.html">plugin website</a>, including resetting the permalink structure, but nothing worked.</p>
<p>For some reason the re-write wasn&#8217;t working properly: all the downloads were giving 404 errors.  I couldn&#8217;t figure it out, so I dove into the code.  I found the part of the plugin that rewrites the download links, and found the problem.<span id="more-147"></span></p>
<h3>Here&#8217;s the <span style="text-decoration:line-through;">fix I found</span> hack:</h3>
<p>The plugin uses a function on line 271 of downloadmanager.php that may not be working because of WP 2.5: <code>download_file_url</code>.</p>
<h4>Here&#8217;s the original code:</h4>
<p><code>### Function: Download URL<br />
function download_file_url($file_id) {<br />
$file_id = intval($file_id);<br />
<strong>if(get_option(&#8217;permalink_structure&#8217;)) {</strong><br />
$download_file_url = get_option(&#8217;siteurl&#8217;).&#8217;/download/&#8217;.$file_id.&#8217;/';<br />
} else {<br />
$download_file_url =  get_option(&#8217;siteurl&#8217;).&#8217;?dl_id=&#8217;.$file_id;<br />
}<br />
return $download_file_url;<br />
}<br />
</code></p>
<p>I highlighted the part of the code that was causing me issues, and removed that <code>if/else</code>.</p>
<h4>Updated code:</h4>
<p><code> function download_file_url($file_id) {<br />
$file_id = intval($file_id);<br />
<span style="text-decoration:line-through;"> /* if(get_option(&#8217;permalink_structure&#8217;)) {<br />
$download_file_url = get_option(&#8217;siteurl&#8217;).&#8217;/download/&#8217;.$file_id.&#8217;/';<br />
} else {<br />
$download_file_url =  get_option(&#8217;siteurl&#8217;).&#8217;?dl_id=&#8217;.$file_id;<br />
} */</span></code></p>
<p><code> $download_file_url =  get_option('siteurl').'?dl_id='.$file_id;<br />
return $download_file_url;<br />
}</code></p>
<h3>In summary</h3>
<p>This may or may not have been a WordPress upgrade issue, but it did solve my problem, and I didn&#8217;t need to delve any further into the root cause.</p>
<p><strong>Please post any comments or corrections below.</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/147/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/147/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=147&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/13/how-i-fixed-wp-downloadmanager-404-errors/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-103.jpg" medium="image">
			<media:title type="html">Lester Chan\'s header</media:title>
		</media:content>
	</item>
		<item>
		<title>Denver SEO for colon cleansing&#8230;a &#8220;sweet&#8221; surprise!</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/12/denver-seo-for-colon-cleansinga-sweet-surprise/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/12/denver-seo-for-colon-cleansinga-sweet-surprise/#comments</comments>
		<pubDate>Mon, 12 May 2008 23:27:44 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Colon]]></category>

		<category><![CDATA[Colon Hydrotherapy]]></category>

		<category><![CDATA[Colonics]]></category>

		<category><![CDATA[Denver]]></category>

		<category><![CDATA[Denver SEO]]></category>

		<category><![CDATA[Lavage]]></category>

		<category><![CDATA[search engine optimization]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=145</guid>
		<description><![CDATA[
I was pleasantly surprised to find out that one of my first clients in Lakewood, Colorado is now ranked top 5 for their primary keyword/key phrases:
SEO results for New Choices Plus
At the time of writing this article, here is their ranking in Google:

Denver lavage: 3
Denver colon hydrotherapy: 1
Denver colon cleanse: 4
Denver colon: 3

It&#8217;s pretty cool [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.newchoicesplus.com"><img class="alignnone size-full wp-image-146" src="http://katzwebdesign.files.wordpress.com/2008/05/picture-102.jpg?w=500&h=85" alt="New Choices Plus" width="500" height="85" /></a></p>
<p>I was pleasantly surprised to find out that <a href="http://www.newchoicesplus.com">one of my first clients</a> in Lakewood, Colorado is now <strong>ranked top 5</strong> for their primary keyword/key phrases:</p>
<h3><acronym title="Search Engine Optimization">SEO</acronym> results for <a href="http://www.newchoicesplus.com">New Choices Plus</a></h3>
<p>At the time of writing this article, here is their ranking in Google:</p>
<ul>
<li>Denver lavage: <strong><span style="color:#008000;">3</span></strong></li>
<li>Denver colon hydrotherapy: <strong><span style="color:#008000;">1</span></strong></li>
<li>Denver colon cleanse: <strong><span style="color:#008000;">4</span></strong></li>
<li>Denver colon: <strong><span style="color:#008000;">3</span></strong></li>
</ul>
<p>It&#8217;s pretty cool that even before I was &#8220;doing SEO&#8221; that KWD websites perform well in search.  It got me to thinking of some pretty fun domain names! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/145/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/145/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=145&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/12/denver-seo-for-colon-cleansinga-sweet-surprise/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-102.jpg" medium="image">
			<media:title type="html">New Choices Plus</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting closer on my own website design</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/12/denver-web-design-getting-close-websites-design/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/12/denver-web-design-getting-close-websites-design/#comments</comments>
		<pubDate>Mon, 12 May 2008 23:02:08 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[KWD]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=143</guid>
		<description><![CDATA[
↑ A little sneak peek of my new web design
&#8220;You need to finish your web site&#8220;
My website has been in a transitional state for almost a year.  Thankfully, in spite of that, Katz Web Design has been thriving. I&#8217;ve been so busy that I&#8217;ve not had reasonable time to focus on my business&#8217; site.
I [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://katzwebdesign.files.wordpress.com/2008/05/picture-101.jpg?w=500&h=86" alt="New KWD website header" width="500" height="86" /></p>
<p>↑<em> A little sneak peek of my new web design</em></p>
<h3>&#8220;You need to finish <a href="http://www.katzwebdesign.net">your web site</a>&#8220;</h3>
<p>My website has been in a transitional state for almost a year.  Thankfully, in spite of that, Katz Web Design has been thriving. I&#8217;ve been so busy that I&#8217;ve not had reasonable time to focus on my business&#8217; site.</p>
<p>I met with a client last week who said &#8220;Zack, are you a person who takes constructive criticism well?&#8221;  I thought &#8216;I hope so in this business!,&#8217; and told her that I was.  She said &#8220;I had a hard time trusting you, since your website isn&#8217;t up &#8212; even though you&#8217;re a strong referral from <a title="I am working with Elements of Image on a redesign" href="http://elementsofimage.com">Dana</a>. Now that we&#8217;ve met, I&#8217;m completely comfortable. <strong>You really need to finish your website.</strong>&#8220; </p>
<h3>I&#8217;ve finally landed on the design.</h3>
<p>After months of playing with white-on-black designs that were more in line with what I think is cool, rather than what my audience wants to see. I&#8217;ve scrapped tons of designs, and finally realized that simplicity and light design is key.</p>
<p>I&#8217;ve started working on creating the site, and it&#8217;s moving along quickly.  <strong>I&#8217;ve landed on a June 6 launch date.</strong> Until then, I <strong><a href="http://www.katzwebdesign.net">updated the KWD site</a></strong> with testimonials and recent projects.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/143/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/143/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=143&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/12/denver-web-design-getting-close-websites-design/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-101.jpg" medium="image">
			<media:title type="html">New KWD website header</media:title>
		</media:content>
	</item>
		<item>
		<title>Encouraging clients to write often&#8230;or using a blogging service?</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/09/denver-blog-service/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/09/denver-blog-service/#comments</comments>
		<pubDate>Fri, 09 May 2008 15:57:16 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Advertising]]></category>

		<category><![CDATA[Articles]]></category>

		<category><![CDATA[Clients]]></category>

		<category><![CDATA[consistency]]></category>

		<category><![CDATA[Marketing]]></category>

		<category><![CDATA[Traffic]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=139</guid>
		<description><![CDATA[
I&#8217;ve been working with the WordPress platform for a little while now, and I&#8217;ve been a regular blogger since January (though I had been promoting blogging for years earlier, and had my first blog in 2000 [yes, I'm a bit insecure about my blogging creds]).  I&#8217;ve created many sites with blogging capabilities, some of them [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://katzwebdesign.files.wordpress.com/2008/05/picture-98.jpg?w=500&h=148" alt="Black keyboard letters" width="500" height="148" /><br />
I&#8217;ve been working with the WordPress platform for a little while now, and I&#8217;ve been a regular blogger since January (though I had been promoting blogging for years earlier, and had my first blog in 2000 [yes, I'm a bit insecure about my blogging creds]).  I&#8217;ve created many sites with blogging capabilities, some of them based on Blogger.com integration, and others WordPress.</p>
<p>I&#8217;ve explained the benefits of blogging many times to my clients, made nagging phone calls reminding them to blog &#8212; all to little avail.  I even wrote an article about <a href="http://katzwebdesign.wordpress.com/2008/04/03/is-blogging-really-worth-the-time/">the importance of blogging</a> to help explain myself. But still, the blogs remain silent.</p>
<h3>What I tell my clients about the benefits of blogging</h3>
<p>If my clients already know what a blog is, then I can dive into why it&#8217;s so important (other than people KNOW that it&#8217;s important).  I tell them the following:</p>
<blockquote><p>Blogging is a great way to reach people who may not be searching for what you want them to be searching for. Let&#8217;s say you have a service for &#8220;healing touch,&#8221; but it&#8217;s not &#8220;therapeutic touch.&#8221;  With a normal website, you would not be able to rank well for the other key phrase. If you write an article on the differences between therapeutic touch and healing touch, you then will be able to rank for both phrases, even if your business only focuses on one service.</p>
<p>The more you <strong>write about what you know</strong>, the larger your online sphere of influence grows. By writing consistenly about topics important to you, you&#8217;re able to <strong>rank better in Google</strong> and other search engines, <strong>build a community</strong> of people who follow what you write, and <strong>become an authority on your topic</strong>.</p>
<p>There&#8217;s no other marketing medium like blogging where all you need to invest is your time, and you&#8217;ll get direct benefits. Fliers, radio, tv, newspaper, business chambers &#8212; they all take money.  Blogging is free to set up, and free to use.  You will get out of it what you put into it.</p></blockquote>
<p>That&#8217;s the jist of what I tell people about blogging.  They generally get very excited, get a blog, and post a few times. <strong>One month later, cobwebs form on their admin login form</strong>.</p>
<h3>Maybe try a professional blogging service?</h3>
<p>One thing I&#8217;ve considered is writing the articles myself.  I&#8217;m no copywriting expert (I&#8217;m a <a href="http://www.katzwebdesign.net">Denver web designer</a>), but I do know my clients&#8217; business well.  If they don&#8217;t have the time or commitment to write their own articles, they should find someone to do it for them. There are many <a href="http://www.google.com/search?num=100&amp;hl=en&amp;q=blog+writing+service&amp;btnG=Search">professional blog writing services</a> out there, maybe I should start recommending them?</p>
<p><strong>Does anyone have any experience using a professional blog writing service?</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/139/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/139/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/139/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/139/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/139/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=139&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/09/denver-blog-service/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-98.jpg" medium="image">
			<media:title type="html">Black keyboard letters</media:title>
		</media:content>
	</item>
		<item>
		<title>Load time improvements</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/07/load-time-improvements/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/07/load-time-improvements/#comments</comments>
		<pubDate>Wed, 07 May 2008 15:36:45 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[load time]]></category>

		<category><![CDATA[Optimization]]></category>

		<category><![CDATA[performance]]></category>

		<category><![CDATA[Speed]]></category>

		<category><![CDATA[web site]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=131</guid>
		<description><![CDATA[Load time matters
Imagine waiting 18 seconds for a page to load (on a high-speed connection) &#8212; not just the home page, but any inside page of a website.  Pretty frustrating, right?  Having bad load times makes a huge difference to your customers.  I helped a new client reduce page load time from 19 seconds to [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Load time matters</strong></p>
<p>Imagine waiting 18 seconds for a page to load (on a high-speed connection) &#8212; not just the home page, but any inside page of a website.  Pretty frustrating, right?  Having bad load times makes a huge difference to your customers.  I helped a new client <strong>reduce page load time from 19 seconds to 3 seconds</strong>.</p>
<p><span id="more-131"></span></p>
<h3>A case study for load time</h3>
<p>I am the new webmaster for a website, and it was having some issues: it was taking far too long to load the page.</p>
<p><img class="alignnone size-full wp-image-132" src="http://katzwebdesign.files.wordpress.com/2008/05/picture-92.jpg?w=500&h=16" alt="Crazy slow load time" width="500" height="16" /></p>
<p><img class="alignnone size-full wp-image-135" src="http://katzwebdesign.files.wordpress.com/2008/05/picture-94.jpg?w=500&h=12" alt="Severely slow load time" width="500" height="12" /></p>
<p>I looked at the code, and identified many issues with performance, including placement of Javascript files, linking to a CSS file that didn&#8217;t exist, and including Amazon link enhancer code that only was needed for one page of the site, but had been included on every page.</p>
<p>Just over one hour later, I was able to reduce the load time considerably:</p>
<p><img src="http://katzwebdesign.files.wordpress.com/2008/05/picture-93.jpg?w=500&h=16" alt="Lower load time" width="500" height="16" /></p>
<p><img class="alignnone size-full wp-image-136" src="http://katzwebdesign.files.wordpress.com/2008/05/picture-95.jpg?w=500&h=11" alt="Much lower load time" width="500" height="11" /></p>
<h3>Is your website loading slowly?</h3>
<p>I can recommend changes to your site. Let me know if you need help. Also, you can <a href="http://developer.yahoo.com/performance/rules.html">learn more about how to improve your load speed from Yahoo!</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/131/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/131/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=131&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/07/load-time-improvements/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-92.jpg" medium="image">
			<media:title type="html">Crazy slow load time</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-94.jpg" medium="image">
			<media:title type="html">Severely slow load time</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-93.jpg" medium="image">
			<media:title type="html">Lower load time</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-95.jpg" medium="image">
			<media:title type="html">Much lower load time</media:title>
		</media:content>
	</item>
		<item>
		<title>What is a web designer, and who are these people?</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/06/what-is-a-web-designer-and-who-are-these-people/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/06/what-is-a-web-designer-and-who-are-these-people/#comments</comments>
		<pubDate>Tue, 06 May 2008 17:12:21 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Denver]]></category>

		<category><![CDATA[Online Marketing]]></category>

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=129</guid>
		<description><![CDATA[
I just finished meeting with a client who told me that she had met with multiple other designers, and that I was the only one who provided any ideas for marketing her website. It&#8217;s pretty unbelievable.
She has a new product that is not yet launched &#8212; very under wraps &#8212; and wants to spread the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignnone size-full wp-image-130" src="http://katzwebdesign.files.wordpress.com/2008/05/picture-90.jpg?w=500&h=218" alt="The Burning Question" width="500" height="218" /><br />
I just finished meeting with a client who told me that she had met with multiple other designers, and that <strong>I was the only one who provided any ideas for marketing her website</strong>. It&#8217;s pretty unbelievable.</p>
<p>She has a new product that is not yet launched &#8212; very under wraps &#8212; and wants to spread the word once the product goes live. <strong>Other web designers only discussed her website</strong>. I talked about a web presence.</p>
<p>It&#8217;s hard for me to imagine doing what I do in Katz Web Design and NOT knowing about <a href="http://www.squidoo.com">Squidoo</a> or <a href="http://www.flickr.com">Flickr</a> and finding ways to integrate a community of users into your website.  If people want exposure, they know they need a website.  But that&#8217;s not all.  They need to be properly situated online, and that means SEO.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/129/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/129/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=129&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/06/what-is-a-web-designer-and-who-are-these-people/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/picture-90.jpg" medium="image">
			<media:title type="html">The Burning Question</media:title>
		</media:content>
	</item>
		<item>
		<title>Back at the office</title>
		<link>http://katzwebdesign.wordpress.com/2008/05/05/back-at-the-denver-office/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/05/05/back-at-the-denver-office/#comments</comments>
		<pubDate>Mon, 05 May 2008 16:22:29 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=127</guid>
		<description><![CDATA[
My wife and I are now back from our 1 week vacation.  We stayed at home, and were able to:

Paint!

The living room
My office
The kitchen


Buy!

A corner TV stand
A SolaTube (which has made our living room 300% more pleasant)
A new desk for my office
Gallons of paint (see &#8220;Paint!&#8221; above  )


Plumb

Our secondary sewer line collapsed. Ouch.



So, as you [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignnone size-full wp-image-128" src="http://katzwebdesign.files.wordpress.com/2008/05/img_4485.jpg?w=500&h=100" alt="My home's backyard" width="500" height="100" /><br />
My wife and I are now back from our 1 week vacation.  We stayed at home, and were able to:</p>
<ul>
<li>Paint!
<ul>
<li>The living room</li>
<li>My office</li>
<li>The kitchen</li>
</ul>
</li>
<li>Buy!
<ul>
<li>A corner TV stand</li>
<li>A <a href="http://www.skylightsofcolorado.com/">SolaTube</a> (which has made our living room 300% more pleasant)</li>
<li>A new desk for my office</li>
<li>Gallons of paint (see &#8220;Paint!&#8221; above <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> )</li>
</ul>
</li>
<li>Plumb
<ul>
<li>Our secondary sewer line collapsed. Ouch.</li>
</ul>
</li>
</ul>
<p>So, as you can see, it was quite the vacation.  It&#8217;s good to be back doing web design!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/127/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/127/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=127&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/05/05/back-at-the-denver-office/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/05/img_4485.jpg" medium="image">
			<media:title type="html">My home's backyard</media:title>
		</media:content>
	</item>
		<item>
		<title>Oy!  Vat I need is a vacation!</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/25/oy-vat-i-need-is-a-vacation/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/25/oy-vat-i-need-is-a-vacation/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 00:06:40 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[KWD]]></category>

		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=126</guid>
		<description><![CDATA[Sometimes my thoughts have a yiddish accent&#8230;
And sometimes, I do something about my thoughts &#8212; like go on vacation until May 5th.
So, the Webs, I&#8217;ll be not online.  Hope the Internet&#8217;s there when I get back 
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sometimes my thoughts have a yiddish accent&#8230;</p>
<p>And sometimes, I do something about my thoughts &#8212; like go <span class="Apple-style-span" style="font-weight:bold;">on vacation until May 5th.</span></p>
<p>So, the Webs, I&#8217;ll be not online.  Hope the Internet&#8217;s there when I get back <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/126/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/126/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=126&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/25/oy-vat-i-need-is-a-vacation/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting Far Futures Expires in ASP, Using ASP as CSS</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/24/setting-far-futures-expires-in-asp-using-asp-as-css/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/24/setting-far-futures-expires-in-asp-using-asp-as-css/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 00:30:15 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[ASP]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=125</guid>
		<description><![CDATA[I normally don&#8217;t work with ASP; I use PHP for my coding. Recently, I had to create a style.css.asp file, and I needed to find how to set a far-futures header in ASP. 
Here&#8217;s what I found in 5 minutes  :
 &#60;%
Response.ContentType = &#8220;text/css&#8221;
Response.ExpiresAbsolute=#May 05,2031 05:30:30#
%&#62;
I normally write code in PHP, where I have a standard [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I normally don&#8217;t work with ASP; I use PHP for my coding. Recently, I had to create a style.css.asp file, and I needed to find how to set a far-futures header in ASP. </p>
<p><strong>Here&#8217;s what I found in 5 minutes <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> :</strong><span id="more-125"></span><br />
<code> &lt;%<br />
Response.ContentType = &#8220;text/css&#8221;<br />
Response.ExpiresAbsolute=#May 05,2031 05:30:30#<br />
%&gt;</code><br />
I normally write code in PHP, where I have a standard piece of code I use to gzip my style.css.php files, set a far futures expire date, and declare them CSS, instead of PHP:<code><br />
&lt;?php<br />
header(&#8221;Content-type: text/css&#8221;);<br />
header(&#8217;ExpiresDefault &#8220;access plus 10 years&#8221;&#8216;);<br />
if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], &#8216;gzip&#8217;)) ob_start(&#8221;ob_gzhandler&#8221;); else ob_start();<br />
?&gt;</code><br />
This is kind of a note-to-self, but hopefully it helps you out! <strong>Anyone have better code they&#8217;d like to share?</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/125/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/125/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=125&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/24/setting-far-futures-expires-in-asp-using-asp-as-css/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>A web design testimonial from Todd Colchin</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/23/a-web-design-testimonial-from-todd-colchin/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/23/a-web-design-testimonial-from-todd-colchin/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 22:07:05 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[KWD]]></category>

		<category><![CDATA[client]]></category>

		<category><![CDATA[Clients]]></category>

		<category><![CDATA[Results]]></category>

		<category><![CDATA[testimonial]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=124</guid>
		<description><![CDATA[Today at the Westside Business Builders meeting, Todd Colchin of Colchin Automotive &#38; Diesel gave Katz Web Design a testimonial:
Our website is just barely up &#8212; and we&#8217;ve not done anything with it yet &#8212; and yesterday, we got two new customers who came into our shop who found us by our website! They were [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today at the <a href="http://westsidebusinessbuilders.clicksinaction.com/Katz_Web_Design.html">Westside Business Builders</a> meeting, Todd Colchin of <a href="http://www.colchinautomotive.com">Colchin Automotive &amp; Diesel</a> gave Katz Web Design a testimonial:</p>
<blockquote><p>Our website is just barely up &#8212; and we&#8217;ve not done anything with it yet &#8212; and yesterday, we got two new customers who came into our shop who found us by our website! They were both 18-25 years old.</p></blockquote>
<p>Having a website is vital, especially if you want to appeal to younger customer base.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/124/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/124/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=124&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/23/a-web-design-testimonial-from-todd-colchin/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Building a Real Estate Website in WordPress - Part 1</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/22/building-a-real-estate-website-in-wordpress-part-1/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/22/building-a-real-estate-website-in-wordpress-part-1/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 22:56:10 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Code]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[CMS]]></category>

		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Real Estate]]></category>

		<category><![CDATA[Real Estate CMS]]></category>

		<category><![CDATA[Real Estate Websites]]></category>

		<category><![CDATA[Realty]]></category>

		<category><![CDATA[Template]]></category>

		<category><![CDATA[Theme]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=122</guid>
		<description><![CDATA[
I am designing and creating a real estate website with WordPress, and I&#8217;m going to be writing a few articles that detail how it&#8217;s done.  This article will get you started &#8212; please leave feedback with any questions or topic requests for the next installment.
A little background &#8212; why use WordPress?
I&#8217;m working with a Denver [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignnone size-full wp-image-123" src="http://katzwebdesign.files.wordpress.com/2008/04/picture-86.jpg?w=500&h=160" alt="" width="500" height="160" /></p>
<p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fdesign%2FBuilding_a_Real_Estate_Website_in_WordPress_Part_1' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe>I am designing and creating a real estate website with WordPress, and I&#8217;m going to be writing a few articles that detail how it&#8217;s done.  This article will get you started &#8212; please leave feedback with any questions or topic requests for the next installment.</p>
<h3>A little background &#8212; why use WordPress?</h3>
<p>I&#8217;m working with a Denver company on a real estate website. Their goal is to showcase their listings in an easy-to-update <acronym title="Content Management System">CMS</acronym>.</p>
<p>I&#8217;ve worked with <a title="Open Realty's website" href="http://www.open-realty.org/">Open-Realty</a>, and &#8212; to say it bluntly &#8212; it&#8217;s a huge pain in the ass.  When you scratch the surface of OR, you begin to realize how cobbled together it is. Customizing the code to work as it should requires a steep learning curve.  The templates are relatively simple to work with, but the administration section is horrible.  <strong>The Open Realty user experience is just awful.</strong> </p>
<p>WordPress is my CMS of choice currently, and it&#8217;s so easy to develop for that I recommend it to many of my clients.<span id="more-122"></span></p>
<h3>Starting off in WordPress real estate websites</h3>
<p>So the obvious first step is this: <strong>real estate websites have a LOT of information on them</strong>.</p>
<h4>Real Estate websites have this basic content:</h4>
<p><em>(Alphabetized, none-the-less!)</em></p>
<ul>
<li>Address</li>
<li>Basement type</li>
<li>Basement finished %</li>
<li>Bathrooms</li>
<li>1/2 Bathrooms</li>
<li>Bedrooms</li>
<li>Brochure (PDF)</li>
<li>Car Storage Type</li>
<li># of Car Storage</li>
<li>City</li>
<li>Construction Type</li>
<li>County</li>
<li>Country</li>
<li>Latitude</li>
<li>Longitude</li>
<li>Lot Size</li>
<li>MLS #</li>
<li>Neighborhood Name &amp; Website</li>
<li>HOA Fees</li>
<li>HOA Includes</li>
<li>Price</li>
<li>Roofing Materials</li>
<li>Schools
<ul>
<li>High School Name &amp; Website</li>
<li>Middle School Name &amp; Website</li>
<li>Elementary School Name &amp; Website</li>
</ul>
</li>
<li>Status of Listing (Sold/Under Construction/Pending/Active)</li>
<li>Square Feet</li>
<li>Taxes</li>
<li>Utilities (Avg.)</li>
<li>Year Built</li>
<li>Zip Code</li>
</ul>
<p>It would be tough to ask your client to create <a href="http://codex.wordpress.org/Using_Custom_Fields">Custom Fields</a> manually for each listing for each one of those items. </p>
<h3><a href="http://freshout.us/goodies">FreshPost</a> to the rescque &#8212; easy real estate Custom Fields</h3>
<p>FreshPost is essentially a WordPress plugin that allows you to define custom sets of Custom Fields to be included in a post.</p>
<p>By using FreshPost, it&#8217;s simple to create an administration template for creating a new listing.  Just set up the fields above, and then use FreshPost&#8217;s super-simple code (ex: <code>echo get('zip code');</code> to insert that information into your template.</p>
<h3>Planning your Real Estate website in WordPress</h3>
<p>Once you&#8217;ve got the capabilities provided by FreshPost, a WordPress real estate website is more realistic, and less daunting.</p>
<p>The next phase is planning. Realty websites are an interesting challenge because users are going to be interested in finding a listing many different ways &#8212; and your client will want to be SEO friendly for searches about the neighborhoods they work in.</p>
<h4>Structuring the website: flexibility is key</h4>
<p>It&#8217;s important that the website will be able to handle listings in different counties, zip codes, cities, and potentially states.  As such, <strong>create a category structure that mirrors real life</strong>.</p>
<p>For example, let&#8217;s have the following sample listings:</p>
<ol>
<li>In Denver, Colorado&#8217;s Cherry Creek neighborhood - Zip code: 80023</li>
<li>In Littleton, Colorado (a suburb of Denver, CO) - Zip code: 80211 </li>
<li>In Albuquerque, NM&#8217;s Sandia Heights neighborhood - Zip code: 87101</li>
</ol>
<div>The website may be structured like so:</div>
<h4>Categories</h4>
<ul>
<li>USA
<ul>
<li>Colorado
<ul>
<li>Denver
<ul>
<li>Cherry Creek</li>
</ul>
</li>
<li>Littleton</li>
</ul>
</li>
<li>New Mexico
<ul>
<li>Albuquerque
<ul>
<li>Sandia Heights</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>ZIP Codes
<ul>
<li>80023</li>
<li>80211</li>
<li>87101</li>
</ul>
</li>
</ul>
<p>There are many ways of setting up the categories; you could have a Neighborhoods parent, rather than having the city as the parent.  The point is that once you set up categories, <strong>you can properly sort the listings.</strong></p>
<h3>Once basic capabilities are set up&#8230;</h3>
<p>Now that you can have tons of Custom Fields with <a href="http://freshout.us/goodies">FreshPost</a>, and have set up hierarchal category structure, you&#8217;re able to set up a basic Real Estate website.</p>
<p><strong>Some possible next steps:</strong></p>
<ul>
<li>Use the Category Description to create SEO-friendly Neighborhood and City pages</li>
<li>Download and install a plugin that lets you <a href="http://guff.szub.net/2006/04/21/search-custom-fields/">search Custom Fields</a>, allowing users to actually search all your listing data</li>
<li>Further optimize your site for search &#8212; write articles for each of your neighborhoods and have the articles displayed above your Multiple Listings [archives] view; write about events, local restaurants, etc. to build up a large amount of relevant information.
<ul>
<li>On a Single listing page, you could dynamically add those articles about the neighborhood</li>
</ul>
</li>
</ul>
<p>So, as you can see, using WordPress as a Real Estate CMS makes a lot of sense, and has fewer barriers than you might expect.</p>
<p>As my project continues, I will write another article detailing the process of creating the WordPress real estate website. </p>
<h4>Please let me know if you have questions or requests!</h4>
<p>If you&#8217;re having trouble making WordPress work for your RE website, please let me know in the comments &#8212; I&#8217;ll try to answer your questions.</p>
<p><strong>What topics do you want the next WordPress Real Estate article to cover?</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/122/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/122/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=122&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/22/building-a-real-estate-website-in-wordpress-part-1/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/04/picture-86.jpg" medium="image" />
	</item>
		<item>
		<title>Review: career day at Lakewood High School</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/22/review-career-day-at-lakewood-high-school/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/22/review-career-day-at-lakewood-high-school/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 15:54:34 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[KWD]]></category>

		<category><![CDATA[career day]]></category>

		<category><![CDATA[Events]]></category>

		<category><![CDATA[high school]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=120</guid>
		<description><![CDATA[It was my first career day at a high school (since being in high school), and it was fine.  I remembered that high schoolers are just kids and nowhere near adults yet.
There were some kids that had already started designing their own websites, one knew Ruby on Rails, one was very interested in design.
I&#8217;m glad [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://katzwebdesign.files.wordpress.com/2008/04/zack-at-lhs.jpg"><img class="alignright size-medium wp-image-121" src="http://katzwebdesign.files.wordpress.com/2008/04/zack-at-lhs.jpg?w=225&h=300" alt="Representing Katz Web Design!" width="225" height="300" style="float:right;margin-left:5px;margin-bottom:5px;display:block;" /></a>It was my first career day at a high school (since being in high school), and it was fine.  I remembered that high schoolers are just kids and nowhere near adults yet.</p>
<p>There were some kids that had already started designing their own websites, one knew <a href="http://www.rubyonrails.org/">Ruby on Rails</a>, one was very interested in design.</p>
<p>I&#8217;m glad I represented KWD there; it&#8217;s important that high schoolers know that you can make it in web design &#8212; or any business &#8212; if you work hard enough. </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/120/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/120/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=120&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/22/review-career-day-at-lakewood-high-school/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/04/zack-at-lhs.jpg?w=225" medium="image">
			<media:title type="html">Representing Katz Web Design!</media:title>
		</media:content>
	</item>
		<item>
		<title>Making technology that is more human</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/21/making-technology-that-is-more-human/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/21/making-technology-that-is-more-human/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 16:29:04 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<category><![CDATA[cars]]></category>

		<category><![CDATA[communication]]></category>

		<category><![CDATA[future]]></category>

		<category><![CDATA[interface]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=119</guid>
		<description><![CDATA[There&#8217;s a problem with technology: it&#8217;s not human.  Technology often can&#8217;t express when there are problems, especially when it doesn&#8217;t know problems exist. There&#8217;s a gap between the consumer and the product that can often only be bridged by a middle-man repair shop.
Creating products that communicate their problems effectively is one of the next major [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>There&#8217;s a problem with technology: it&#8217;s not human.</strong>  Technology often can&#8217;t express when there are problems, especially when it doesn&#8217;t know problems exist. There&#8217;s a gap between the consumer and the product that can often only be bridged by a middle-man repair shop.</p>
<p><strong>Creating products that communicate their problems</strong> effectively is one of the next major steps in user-friendliness.</p>
<p><span id="more-119"></span>Nowadays you have Bluetooth, WiFi, email, IM, SMS, and endless other ways of wirelessly connecting and communicating. The chips are small, inexpensive, and easy to integrate; there are <a href="http://www.google.com/products?q=memory+card+wifi&amp;um=1&amp;ie=UTF-8">WiFi memory cards for cameras</a> that fit on a postage-stamp size product.</p>
<h3>So why can&#8217;t my car send me an email?</h3>
<p>Instead of having to guess when my car actually needs an oil change, brakes changed, etc., why can&#8217;t my car tell me myself?</p>
<p>My wife and I were talking over the weekend about cars, and how annoying and discouraging it is when your car needs repairs.  Sometimes, the only way you know your car needs work is when the mechanic breaks the news: your car needs work done. </p>
<p>How to tell your car is in trouble:</p>
<ul>
<li>You have a sticker on your windshield that gives you a hint when your next oil change is due &#8212; but that sticker might fade, peel, or be replaced.</li>
<li>Your car might have a computer that knows exactly what&#8217;s wrong, but won&#8217;t tell you unless it&#8217;s hooked up to a special diagnostic machine.</li>
<li>You may hear, feel, or smell something is wrong with your car and take it in</li>
<li>A mechanic, who may or may not properly identify and diagnose problems</li>
</ul>
<h3>My car&#8217;s name is Boomer.</h3>
<p>People already anthropomorphize their cars: we give them names, recognize them as cute/strong/fast/smart. Cars are more than a tool; they often mirror their owner&#8217;s personality. </p>
<p>Since cars already provoke an emotional response, I want to propose something: have my car tell me what&#8217;s wrong.  <strong>I&#8217;d rather hear that my car needs a repair </strong><em><strong>from</strong></em><strong> my car.</strong></p>
<h4>I would like to get an email from my car like this:</h4>
<blockquote><p>Dear Zack,</p>
<p>It&#8217;s been around 4,500 miles since my last oil change, and I&#8217;ve been doing really well &#8212; even though the oil people tell you to change oil every 3,000 miles.  But recently, I&#8217;ve noticed I&#8217;m not feeling as good while accelerating, and I think it&#8217;s because I need new oil.</p>
<p>Could you please change my oil?  Here are a few nearby places:</p>
<ul>
<li>Option 1 - 1.3 miles away</li>
<li>Option 2 - 1.5 miles away </li>
<li>Option 3 - 2.1 miles away ( I found a coupon online for 30% off!)</li>
</ul>
<div>I&#8217;ll let you know if anything changes, but I will definitely need my oil changed within 1 week. </div>
<div>Thanks!</div>
<div>Boomer, your VW Passat Wagon</div>
</blockquote>
<h3>How about getting a text message from your DVD player?</h3>
<p>What other technology would you like to hear from? What obstacles are there to better communication by our products?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/119/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/119/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=119&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/21/making-technology-that-is-more-human/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>
	</item>
		<item>
		<title>Warning: SEO companies charge too much and take too long</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/18/warning-seo-companies-charge-too-much-and-take-too-long/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/18/warning-seo-companies-charge-too-much-and-take-too-long/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 16:59:35 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Advertising]]></category>

		<category><![CDATA[AdWords]]></category>

		<category><![CDATA[Competition]]></category>

		<category><![CDATA[Denver]]></category>

		<category><![CDATA[Denver SEO]]></category>

		<category><![CDATA[Growth]]></category>

		<category><![CDATA[Link Building]]></category>

		<category><![CDATA[Linkbuilding]]></category>

		<category><![CDATA[Marketing]]></category>

		<category><![CDATA[ranking]]></category>

		<category><![CDATA[search engine optimization]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=117</guid>
		<description><![CDATA[
A man called yesterday wanting to have his Denver IT Services website optimized.  He had called multiple search engine optimization specialists in Denver, and each one had given him the same proposal: spend thousands of dollars per month, and take a long time.
Check out what the SEO companies said
He had been told the following by multiple companies:
In [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignnone size-full wp-image-118" src="http://katzwebdesign.files.wordpress.com/2008/04/picture-84.jpg?w=500&h=208" alt="" width="500" height="208" /></p>
<p><iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Fdesign%2FWarning_SEO_companies_charge_too_much_and_take_too_long' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe>A man called yesterday wanting to have his <a href="http://noynim.com/">Denver IT Services</a> website optimized.  He had called multiple search engine optimization specialists in Denver, and each one had given him the same proposal: spend thousands of dollars per month, and take a long time.</p>
<h3>Check out what the SEO companies said</h3>
<p><strong>He had been told the following by multiple companies:</strong></p>
<blockquote><p>In order to get your website ranked well, it will take 6 months to a year, and will cost $1,000.00 per month.</p>
<p>- Random Denver SEO companies</p></blockquote>
<p><strong>That means he will have paid $6,000 to $12,000</strong> to have his site ranked well in search engines. I was taken aback; <strong>spending that much money each month on SEO is ridiculous</strong> for many reasons, but here are a few:<span id="more-117"></span></p>
<h4>Steps to take before spending too much on SEO</h4>
<ol>
<li>If you&#8217;re a small company spending thousands of dollars a month,<strong> spend it on online advertising!</strong>
<ul>
<li>With AdWords and other online advertising, you can <strong>create targeted landing pages</strong> that meet the specific needs of the keyword-targeted audience</li>
<li>You know exactly where your money is going</li>
<li>You get guaranteed placement if you&#8217;re willing to pay for it</li>
</ul>
</li>
<li><strong>First things first:</strong> try some simple SEO upgrades in the code 
<ul>
<li>Did any other company notice all the other pages have the same badly crafted Title tag&#8211;the most important for SEO?</li>
<li>Basic changes can improve your rank dramatically, instantly, and simple structural updates will make the content you have count for more</li>
<li>Set up a <a href="https://www.google.com/webmasters/tools/docs/en/protocol.html">general XML site map</a></li>
</ul>
</li>
<li><strong>After you&#8217;ve improved the code base</strong>, then you track the results, reassess your position, then move to the next steps
<ul>
<li>Setting up a blog for <a href="http://www.leftclick.com/blog/chasing-the-long-tail">the Long Tail</a></li>
<li>Make sure you&#8217;re in all the local search engine results</li>
<li>Getting a presence in the <a href="http://katzwebdesign.wordpress.com/2008/04/16/how-to-increase-online-exposure-of-your-articles/">social websites</a></li>
<li>Consider writing guest articles/press releases</li>
<li>Set up a <a href="http://www.squidoo.com">Squidoo lens</a> and a <a href="http://www.facebook.com">Facebook</a> page</li>
</ul>
</li>
</ol>
<p>These SEO solutions probably <strong>would not cost $1,000</strong>, let alone $1,000 a month. </p>
<h3>SEO also depends on your competition</h3>
<p>There&#8217;s an article on <a href="http://www.seobook.com/how-long-does-it-take-rank-google-how-many-hours-do-i-have-work-each-day">SEO Book</a> that attempts to answer how long it will take to rank well. Their conclusion? The same as mine: it depends.</p>
<blockquote><p>If the search results are uncompetitive (use <a href="http://tools.seobook.com/firefox/seo-for-firefox.html">SEO for Firefox</a> to survey the competitive landscape) you might be able to rank in a month even if your site is brand new.</p></blockquote>
<p>I use two programs to check how tough the competition is: <a href="http://tools.seobook.com/firefox/seo-for-firefox.html">SEO for Firefox</a> and <a href="http://www.plimus.com/jsp/redirect.jsp?contractId=1679787&amp;referrer=303zachary">SEO SpyGlass</a>. If your search competition is standing still / not established / not optimized, then <strong>moving up will be a piece of cake</strong>. If your field is crowded with many well maintained and optimized sites, then it will be harder to move up quickly, and it will take a longer time.</p>
<h3>Make sure the SEO companies explain what their plan is, and why</h3>
<p>Having heard what other SEO companies were proposing, it was shocking. $1,000 a month for building links using a software program?  If you are paying for SEO, it&#8217;s worth your money to have quality relationships built &#8212; not spammed links.</p>
<p>I propose <strong>solid steps to improving rank</strong>, and recommend consistent, focused SEO. I believe having a plan that starts from the ground gets better results for less money.  I hope other companies do as well.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/117/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/117/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=117&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/18/warning-seo-companies-charge-too-much-and-take-too-long/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>

		<media:content url="http://katzwebdesign.files.wordpress.com/2008/04/picture-84.jpg" medium="image" />
	</item>
		<item>
		<title>Protected: Listening, clients, and websites&#8230;the low-down</title>
		<link>http://katzwebdesign.wordpress.com/2008/04/17/how-listening-to-your-clients-hurts-their-websites-and-wastes-your-time/</link>
		<comments>http://katzwebdesign.wordpress.com/2008/04/17/how-listening-to-your-clients-hurts-their-websites-and-wastes-your-time/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 17:18:58 +0000</pubDate>
		<dc:creator>Zack Katz</dc:creator>
		
		<category><![CDATA[KWD]]></category>

		<guid isPermaLink="false">http://katzwebdesign.wordpress.com/?p=116</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><form action="http://katzwebdesign.wordpress.com/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-116">Password:<br />
<input name="post_password" id="pwbox-116" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/katzwebdesign.wordpress.com/116/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/katzwebdesign.wordpress.com/116/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/katzwebdesign.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/katzwebdesign.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/katzwebdesign.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/katzwebdesign.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/katzwebdesign.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/katzwebdesign.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/katzwebdesign.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/katzwebdesign.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/katzwebdesign.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/katzwebdesign.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=katzwebdesign.wordpress.com&blog=2600029&post=116&subd=katzwebdesign&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://katzwebdesign.wordpress.com/2008/04/17/how-listening-to-your-clients-hurts-their-websites-and-wastes-your-time/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/katzwebdesign-128.jpg" medium="image">
			<media:title type="html">katzwebdesign</media:title>
		</media:content>
	</item>
	</channel>
</rss>