<?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>Superlative Internet &#187; All</title>
	<atom:link href="http://www.supint.com/portfolio/category/all/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supint.com</link>
	<description>WordPress Development &#124; Seattle Website Design &#124; Superlative Internet</description>
	<lastBuildDate>Thu, 27 Oct 2011 19:07:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress Times Out With Too Many Pages?</title>
		<link>http://www.supint.com/portfolio/wordpress-times-out-with-too-many-pages/</link>
		<comments>http://www.supint.com/portfolio/wordpress-times-out-with-too-many-pages/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 17:43:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=351</guid>
		<description><![CDATA[This one had me pulling my hair out for a few days.  I was developing a client site in WordPress.  This site had 500 products and I chose to use Pages (instead of Posts) for the products, mostly because it allowed for a better URL structure, especially because there were product categories and sub-categories.  The [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignleft size-full wp-image-355" title="bald-matt" src="http://www.supint.com/wp-content/uploads/2011/08/bald-matt.jpg" alt="wordpress permalinks caused me to pull out my hair!" width="276" height="183" />This one had me pulling my hair out for a few days.  </strong></p>
<p>I was developing a client site in WordPress.  This site had 500 products and I chose to use Pages (instead of Posts) for the products, mostly because it allowed for a better URL structure, especially because there were product categories and sub-categories.  The URLs would look nice &#8212; www.site.com/category/sub-category/product-name/</p>
<blockquote>
<p style="padding-left: 30px;"><strong>Spoiler!<br />
</strong><em>No time to read the entire post?</em>  Just update your permalinks to <strong>/%year%/%postname%/</strong> and that will fix the issue.  If your site is running too slowly to edit the permalinks, edit the database directly.  I use phpMyAdmin.  Search the wp_options table field name for %LIKE% = permalink and edit the value to /%year%/%postname%/<strong><br />
</strong></p>
</blockquote>
<p>All was going well in development until we hit around 400 pages.  Then the site started running <em>reaaaaaallllly</em> slowly, and even timing out with a PHP fatal error like this:</p>
<p><strong>Maximum execution time of 30 seconds exceeded in /wp-includes/rewrite.php on line 835</strong></p>
<p>WTF!  Could this be a plugin issue?  Or something wrong in our custom coded theme?  I didn&#8217;t think so&#8230; but what else could it be?  Surely WordPress can handle a website with thousands of pages, right?</p>
<p>My first thought was &#8220;there must be something wrong with the server.&#8221;  We did have a separate sub-domain for the site dev.site.com so that was a variable worth looking into.  Also, I had just started using a <a href="/hostgator" target="_blank">new VPS from Host Gator</a> running Fast CGI (I usually run PHP as an Apache module) so that could also be the cause.  Fun, I get to figure this out! [sarcasm]</p>
<p>No luck with tweaking the server settings, although Host Gator support does get an A for effort.  And I even updated the php.ini memory_limit from 64M to 128M thinking that this could be the root of the issue.  Nuts.</p>
<p>Turns out that good ol&#8217; permalinks is the cause of this problem.  For those that don&#8217;t know, permalinks allow you to customize the URL for your WordPress site.  Very useful for search engine optimization (SEO).  In classic obscure fashion that us web developers have grown used to (thanks to IE6 debugging and for the truly old skool, Netscape Navigator 4 hacking), the solution is to add something <strong>other than /%postname%/</strong> to the start of your site&#8217;s permalinks.</p>
<p>I&#8217;ve found that both of the following work equally well:</p>
<ul>
<li>/%year%/%postname%/</li>
<li>/blog/%year%/%monthnum%/%postname%/</li>
</ul>
<p>Not only will this bring your many-paged-Wordpress-website back to life, it will <strong>not</strong> affect your Pages URLs.  In this case, the permalink structure only applies to your Posts.  Yay!!!</p>
<p>Hopefully this breakdown will save a few hairs on your head.  I wish I had found out about it earlier <img src='http://www.supint.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Many thanks to the following which helped me out:</p>
<ul>
<li><a href="http://www.google.com/" target="_blank">www.google.com </a></li>
<li><a href="http://wordpress.org/support/topic/too-many-pages-custom-permalinks-fatal-error" target="_blank">http://wordpress.org/support/topic/too-many-pages-custom-permalinks-fatal-error</a></li>
<li><a href="http://wordpress.org/support/topic/permalinks-doesnt-scale" target="_blank">http://wordpress.org/support/topic/permalinks-doesnt-scale</a></li>
<li><a href="http://ottopress.com/2010/category-in-permalinks-considered-harmful/" target="_blank">http://ottopress.com/2010/category-in-permalinks-considered-harmful/</a> &#8211; <strong>great technical explanation here!</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/wordpress-times-out-with-too-many-pages/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Testing TourVista Shortcode</title>
		<link>http://www.supint.com/portfolio/testing-tourvista-shortcode/</link>
		<comments>http://www.supint.com/portfolio/testing-tourvista-shortcode/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 05:31:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=311</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<script src="http://www.tourvista.com/embed/account.php?id=559"></script>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/testing-tourvista-shortcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Your Website CMS (Content Management System)</title>
		<link>http://www.supint.com/portfolio/using-your-website-cms-content-management-system/</link>
		<comments>http://www.supint.com/portfolio/using-your-website-cms-content-management-system/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:46:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[photo gallery]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=284</guid>
		<description><![CDATA[The following video tutorials demonstrate using a CMS (Content Management System) to quickly and easily update your website as created by Superlative Internet. Edit a page on your website: Create a new blog post on your website/blog: Managing the photo gallery slideshow:]]></description>
			<content:encoded><![CDATA[<p>The following video tutorials demonstrate using a CMS (Content Management System) to quickly and easily update your website as created by Superlative Internet.</p>
<h1>Edit a page on your website:</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4Z7lboRYLJM&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/4Z7lboRYLJM&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Create a new blog post on your website/blog:</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YZ45nMRl3Yg&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/YZ45nMRl3Yg&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h1>Managing the photo gallery slideshow:</h1>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YcPSadjftUQ&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/YcPSadjftUQ&amp;hl=en&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/using-your-website-cms-content-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emails not showing up? They are probably being mistakenly tagged as Spam.</title>
		<link>http://www.supint.com/portfolio/emails-not-showing-up-they-are-probably-being-mistakenly-tagged-as-spam/</link>
		<comments>http://www.supint.com/portfolio/emails-not-showing-up-they-are-probably-being-mistakenly-tagged-as-spam/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:43:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=282</guid>
		<description><![CDATA[If your email is not coming through, check your Spam folder. This tutorial shows you how to check if Gmail Spam filters are mistakenly tagging valid emails as spam, and how to fix it.]]></description>
			<content:encoded><![CDATA[<div id="watch-video-details-inner-less">
<div><span>If your email is not coming through, check your Spam folder. This tutorial shows you how to check if Gmail Spam filters are mistakenly tagging valid emails as spam, and how to fix it. </span></div>
</div>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/-YP_xEjkUGU&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/-YP_xEjkUGU&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/emails-not-showing-up-they-are-probably-being-mistakenly-tagged-as-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TourVista Virtual Tours</title>
		<link>http://www.supint.com/portfolio/tourvista-virtual-tours/</link>
		<comments>http://www.supint.com/portfolio/tourvista-virtual-tours/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 18:47:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/new/?p=3</guid>
		<description><![CDATA[TourVista Virtual Tours www.tourvista.com TourVista is changing the way real estate is marketed online. Through the use of custom technology created by Superlative, TourVista&#8217;s users are able to generate a website for their property, including the extremely useful interactive floor plans. In addition, Superlative has created myriad customizations to TourVista&#8217;s website and administrative features, allowing [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.tourvista.com/"><img class="alignnone size-full wp-image-60" title="tourvista-virtual-tours" src="http://www.supint.com/wp-content/uploads/2009/07/tourvista-virtual-tours.jpg" alt="tourvista-virtual-tours" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">TourVista Virtual Tours</div>
<div class="portfolio-url"><a href="http://www.tourvista.com/">www.tourvista.com</a></div>
<div class="portfolio-description">TourVista is changing the way real estate is marketed online. Through the use of custom technology created by Superlative, TourVista&#8217;s users are able to generate a website for their property, including the extremely useful interactive floor plans.</div>
<div class="portfolio-description">In addition, Superlative has created myriad customizations to TourVista&#8217;s website and administrative features, allowing TourVista to better manage its customers and its business processes.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/tourvista-virtual-tours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scan Design Furniture</title>
		<link>http://www.supint.com/portfolio/scan-design-furniture/</link>
		<comments>http://www.supint.com/portfolio/scan-design-furniture/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 05:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=39</guid>
		<description><![CDATA[Scan Design Furniture www.scan-design.com Scan Design offers contemporary furniture at a variety of locations in the Pacific Northwest.  Their new website needed to better showcase their furniture online and drive traffic into their retail stores.  In addition, they also wanted to be able to manage the website content in-house for convenience and cost-savings. Our solution [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.scan-design.com/"><img class="alignnone size-full wp-image-50" title="scan-design-furniture" src="http://www.supint.com/wp-content/uploads/2009/07/scan-design-furniture.jpg" alt="scan-design-furniture" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Scan Design Furniture</div>
<div class="portfolio-url"><a href="http://www.scan-design.com/">www.scan-design.com</a></div>
<div class="portfolio-description">Scan Design offers contemporary furniture at a variety of locations in the Pacific Northwest.  Their new website needed to better showcase their furniture online and drive traffic into their retail stores.  In addition, they also wanted to be able to manage the website content in-house for convenience and cost-savings.</div>
<div class="portfolio-description">Our solution was to build their new website on an e-commerce platform, serving information from a database and allowing them to manage the content internally.  An email newsletter was also setup, enabling Scan Design to stay in close contact with their target audience on a monthly basis.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/scan-design-furniture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora Bracelet Builder</title>
		<link>http://www.supint.com/portfolio/pandora-bracelet-builder/</link>
		<comments>http://www.supint.com/portfolio/pandora-bracelet-builder/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 06:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=82</guid>
		<description><![CDATA[Pandora Bracelet Builder View the demo video c&#8217;est la Vie challenged Superlative with the Pandora Bracelet Builder.  The objective was to create an interactive tool where visitors could build a bracelet online and order it directly from c&#8217;est la Vie&#8217;s website. Superlative pushed Flash technology to the max, integrating it with a ColdFusion-powered shopping cart [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.supint.com/portfolio/pandora-bracelet-builder/"><img class="alignnone size-full wp-image-83" title="cest-la-vie-catalog-pandora-builder" src="http://www.supint.com/wp-content/uploads/2009/07/cest-la-vie-catalog-pandora-builder.jpg" alt="cest-la-vie-catalog-pandora-builder" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Pandora Bracelet Builder</div>
<div class="portfolio-url"><a href="http://www.supint.com/portfolio/pandora-bracelet-builder/">View the demo video</a></div>
<div class="portfolio-description">c&#8217;est la Vie challenged Superlative with the Pandora Bracelet Builder.  The objective was to create an interactive tool where visitors could build a bracelet online and order it directly from c&#8217;est la Vie&#8217;s website.</div>
<div class="portfolio-description">Superlative pushed Flash technology to the max, integrating it with a ColdFusion-powered shopping cart application. End users were able to create customized jewelry by simply dragging and dropping each item onto a virtual bracelet.</div>
</div>
<div style="clear:both;"></div>
<div style="margin:20px auto;">
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/i4L0cfvS-bI&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/i4L0cfvS-bI&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/pandora-bracelet-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trim Inc Clothing</title>
		<link>http://www.supint.com/portfolio/trim-inc-clothing/</link>
		<comments>http://www.supint.com/portfolio/trim-inc-clothing/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 04:37:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=260</guid>
		<description><![CDATA[Trim Inc Clothing www.trimincclothing.com Trim Inc is a Southern California based apparel company committed to bringing clothing and accessories with high quality, comfort and design. Trim has a strong commitment to the community by supporting programs such as youth physical fitness and music programs. Trim&#8217;s founding Partners believe in giving back to programs that have [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.trimincclothing.com/"><img class="alignnone size-full wp-image-50" title="trim-inc-clothing" src="http://www.supint.com/wp-content/uploads/2009/07/trim-inc-clothing.jpg" alt="trim-inc-clothing" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Trim Inc Clothing</div>
<div class="portfolio-url"><a href="http://www.trimincclothing.com/">www.trimincclothing.com</a></div>
<div class="portfolio-description">Trim Inc is a Southern California based apparel company committed to bringing clothing and accessories with high quality, comfort and design. Trim has a strong commitment to the community by supporting programs such as youth physical fitness and music programs. Trim&#8217;s founding Partners believe in giving back to programs that have influenced their lives.</div>
<div class="portfolio-description">Their e-commerce website was built to order with a focus on a simple user experience from shopping their virtual shelves through the checkout process.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/trim-inc-clothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skarbos Furniture</title>
		<link>http://www.supint.com/portfolio/skarbos-furniture/</link>
		<comments>http://www.supint.com/portfolio/skarbos-furniture/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 07:27:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=144</guid>
		<description><![CDATA[Skarbos Furniture www.skarbos.com Skarbos Furniture is beautiful and sleek and their website needed to be the same.  We delivered a custom design to match their brand and contemporary style furniture. The primary goals of this website were to display items online in such a manner that would generate requests for more information. These goals were [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.skarbos.com/"><img class="alignnone size-full wp-image-145" title="skarbos-furniture" src="http://www.supint.com/wp-content/uploads/2009/07/skarbos-furniture.jpg" alt="skarbos-furniture" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Skarbos Furniture</div>
<div class="portfolio-url"><a href="http://www.skarbos.com/">www.skarbos.com</a></div>
<div class="portfolio-description">Skarbos Furniture is beautiful and sleek and their website needed to be the same.  We delivered a custom design to match their brand and contemporary style furniture.</div>
<div class="portfolio-description">The primary goals of this website were to display items online in such a manner that would generate requests for more information. These goals were achieved using a &#8220;Request More Information&#8221; form that emails Skarbos and prints directly to the Sales Team for immediate follow up.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/skarbos-furniture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Normandy Park Community Club</title>
		<link>http://www.supint.com/portfolio/normandy-park-community-club/</link>
		<comments>http://www.supint.com/portfolio/normandy-park-community-club/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 07:14:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.supint.com/?p=122</guid>
		<description><![CDATA[Normandy Park Community Club www.npcove.org The Normandy Park Community Club serves a small town south of Seattle.  They desired a website for better communication with their members and the community. Superlative created a custom design to match their current brand and administrative features to managing the website content internally including a photo gallery, board meeting [...]]]></description>
			<content:encoded><![CDATA[<div class="portfolio-photo"><a href="http://www.npcove.org/"><img class="alignnone size-full wp-image-123" title="normandy-park-community-club" src="http://www.supint.com/wp-content/uploads/2009/07/normandy-park-community-club.jpg" alt="normandy-park-community-club" width="300" height="275" /></a></div>
<div class="portfolio-content">
<div class="portfolio-title">Normandy Park Community Club</div>
<div class="portfolio-url"><a href="http://www.npcove.org/">www.npcove.org</a></div>
<div class="portfolio-description">The Normandy Park Community Club serves a small town south of Seattle.  They desired a website for better communication with their members and the community.</div>
<div class="portfolio-description">Superlative created a custom design to match their current brand and administrative features to managing the website content internally including a photo gallery, board meeting minutes, and calendar of events.  Because the volunteer positions rotate every few years, we also created video tutorials for updating the website, ensuring that even non-techies would be able to keep the website updated into the future.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.supint.com/portfolio/normandy-park-community-club/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

