<?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>Outward Focus Design</title>
	<atom:link href="http://outwardfocusdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://outwardfocusdesign.com</link>
	<description>Freelance Web Design in Seattle, Wa</description>
	<lastBuildDate>Fri, 27 Aug 2010 20:21:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Figuring out if a WordPress page is descendant from another</title>
		<link>http://outwardfocusdesign.com/web-design-blog/web-design-professionals/wordpress-tips-and-tricks/figuring-out-if-a-wordpress-page-is-descendant-from-another/</link>
		<comments>http://outwardfocusdesign.com/web-design-blog/web-design-professionals/wordpress-tips-and-tricks/figuring-out-if-a-wordpress-page-is-descendant-from-another/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 20:14:45 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Wordpress Tips and Tricks]]></category>
		<category><![CDATA[conditional tag]]></category>
		<category><![CDATA[descendant page]]></category>
		<category><![CDATA[is child]]></category>
		<category><![CDATA[is tree]]></category>
		<category><![CDATA[parent page]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=252</guid>
		<description><![CDATA[Parent pages and descendant pages in Wordpress, and different ways to use conditional logic to differentiate them for your needs.]]></description>
			<content:encoded><![CDATA[<p>In WordPress, there is no conditional tag for &#8220;is_child()&#8221; or &#8220;is_descendant()&#8221;, though I imagine there eventually will be, as this is a fairly common need for making logical demands within the WordPress templates. A reason I use this is to give different sections of a website, based on specific pages and their descendants, a different look (new background or header) than other sections. I&#8217;m sure there are many other reasons you&#8217;d want to do this.</p>
<p>For example, in a college website, you might need one header for the engineering department, and a separate one for the athletic department. Within WordPress, we are saying, if the current page is the descendant of the engineering department homepage, use header #1. If the current page is the descendant of the athletic department homepage, use header #2.</p>
<p>In WordPress, when creating a page, you have the option (in the righthand sidebar) to declare a parent page for your new page. This is WordPress&#8217;s way to create hierarchies similar to folder structures in static websites. There is no limit to how many descendants a page might have, allowing you to create child pages, child of child pages, etc. </p>
<p>A common way, in your template, to check if a page is descendant from another page, is to use this piece of code (which can be <a href="http://codex.wordpress.org/Conditional_Tags">found in the WordPress codex</a>), where &#8216;id&#8217; is the numerical id of the page in WordPress:</p>
<div class="code">
<code>if ( $post->post_parent == 'id' ) { <em>then do some action</em> }</code>
</div>
<p>However, the above code only works if the tested page is a <em>direct</em> parent of the current page. Well, what if you have a whole bunch of nested pages in the engineering department of your college?</p>
<p>There is another piece of code <a href="http://codex.wordpress.org/Conditional_Tags">on that same WordPress codex page</a> that will check if the current page is a descendant, now matter how deeply nested, of another page:</p>
<div class="code">
<code>function is_tree($pid) {<br />
&#47;&#47; $pid = The ID of the ancestor page<br />
	global $post;         &#47;&#47; load details about this page<br />
	$anc = get_post_ancestors( $post->ID );<br />
	foreach($anc as $ancestor) {<br />
		if(is_page() &#038;&#038; $ancestor == $pid) {<br />
			return true;<br />
		}<br />
	}<br />
	if(is_page()&#038;&#038;(is_page($pid)))<br />
               return true;   &#47;&#47; we're at the page or at a sub page<br />
	else<br />
               return false;  &#47;&#47; we're elsewhere<br />
};<br />
</code>
</div>
<p>This function needs to be placed in the <code>functions.php</code> file of your theme. Then, you call this function when you need to test the ancestry of a page:</p>
<div class="code">
<code>if ( is_tree( 'id' ) ) { <em>then do some action</em> }</code>
</div>
<p>This function essentially says, if this page is anywhere in the family tree of the tested page (including being the tested page itself), <em>then do something</em>.</p>
<p>There is one last detail that might come in handy, though. To check whether the current page is descended from another page, but is not that other page, you might do something like this:</p>
<div class="code">
<code>if ( !is_page('id') &#038;&#038; is_tree( 'id' ) ) { <em>then do some action</em> }</code>
</div>
<p>That&#8217;s clunky, though. If you&#8217;ll use this test somewhat regularly, just create another function in your <code>functions.php</code> file. You might call it &#8220;is_child()&#8221;. It&#8217;s exactly the same as &#8220;is_tree()&#8221; but without the last <em>if</em> statement:</p>
<div class="code">
<code><br />
function is_child($pid) {<br />
&#47;&#47; $pid = The ID of the ancestor page<br />
	global $post;         &#47;&#47; load details about this page<br />
	$anc = get_post_ancestors( $post->ID );<br />
	foreach($anc as $ancestor) {<br />
		if(is_page() &#038;&#038; $ancestor == $pid) {<br />
			return true;<br />
		}<br />
	}<br />
return false;  &#47;&#47; we're elsewhere<br />
};<br />
</code>
</div>
<p>Now, if you need to determine if the current page is the child/descendant of another page, but is not that other page, you use this:</p>
<div class="code">
<code>if ( is_child( 'id' ) ) { <em>then do some action</em> }</code>
</div>
<p>I seriously hope &#8220;is_child()&#8221; and &#8220;is_tree()&#8221; make it into the core functionality of WordPress one of these days, so I can stop having to add them to my <code>functions.php</code> file. </p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/web-design-blog/web-design-professionals/wordpress-tips-and-tricks/figuring-out-if-a-wordpress-page-is-descendant-from-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross Browser Testing</title>
		<link>http://outwardfocusdesign.com/web-design-blog/cross-browser-testing/</link>
		<comments>http://outwardfocusdesign.com/web-design-blog/cross-browser-testing/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 18:58:33 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[For Users and Site Owners]]></category>
		<category><![CDATA[Web Design Blog]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=70</guid>
		<description><![CDATA[Have you ever had a customer mention that your website doesn&#8217;t look right to them, but when you look it&#8217;s fine? Or been searching the web on a friend&#8217;s computer, looked at your website, and it doesn&#8217;t look right there? Chances are your web designer did not thoroughly test the website in all browsers before [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had a customer mention that your website doesn&#8217;t look right to them, but when you look it&#8217;s fine? Or been searching the web on a friend&#8217;s computer, looked at your website, and it doesn&#8217;t look right there? Chances are your web designer did not thoroughly test the website in all browsers before launching your site, and your site looks a bit different in the different browsers. This is a detail commonly overlooked by amateurs and novice (or lazy!) designers.</p>
<p>Websites are different from printed materials in that the design is subject to rendering by applications (browsers) that don&#8217;t necessarily treat all code the same way. Once printed, a brochure&#8217;s layout will always look exactly as the designer intended. However, website layouts can easily be &#8220;broken&#8221; if the code is not understood correctly by the browser that&#8217;s interpreting it. </p>
<p>There are dozens of browsers in use, but something like 98% of folks online use one of four browsers: Internet Explorer, Firefox, Chrome, or Safari. </p>
<p>Of those, Internet Explorer is the one that causes the most difficulty for web designers, as Microsoft has only very slowly implemented standards that the other browsers adopted from square one. However, all of the browsers have certain quirks, and tend to exploit subtle mistakes in a website&#8217;s code differently. </p>
<p>Let me give you an example from my own experience. I recently completed a redesign for <a href="http://mixedgreensblog.com">Mixed Greens Blog</a>, a high wattage food and photography blog written by two amazing women here in Seattle. One of the features on their homepage displays a photo by each of them, side by side, as an introduction to their photo gallery. </p>
<p>Now, I work on a Mac, so as I build websites I am constantly checking them in the Mac versions of Firefox and Safari. Here&#8217;s what that Mixed Greens feature is supposed to look like, and does on Firefox and Safari:</p>
<p><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/02/mixedgreens-gallery.jpg" alt="Mixed Greens Blog photo gallery intro" title="Mixed Greens Blog photo gallery intro" width="479" height="388" class="aligncenter size-full wp-image-71" /></p>
<p>Looking at the site on a Windows computer, I realized that there was a problem. Here are screen shots of the same part of the website in two more browsers:</p>
<div id="attachment_72" class="wp-caption alignleft" style="width: 310px"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/02/mixedgreens-gallery-ie8-300x246.jpg" alt="Viewed in Internet Explorer 8" title="Mixed Greens gallery intro in IE8" width="300" height="246" class="size-medium wp-image-72" /><p class="wp-caption-text">Viewed in Internet Explorer 8</p></div>
<div id="attachment_73" class="wp-caption alignleft" style="width: 310px"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/02/mixedgreens-gallery-opera-300x241.jpg" alt="Viewed in Opera on Windows XP" title="Mixed Greens gallery viewed in the Opera browser" width="300" height="241" class="size-medium wp-image-73" /><p class="wp-caption-text">Viewed in Opera on Windows XP</p></div>
<p>Whoops! What happened to the photo on the left? As it turns out, I had allotted a certain amount of space for the two photos, however the photos actually took up 4 pixels more space than I&#8217;d calculated, due to a margin and border (web designers, whether they like it or not, have to become pretty good at measuring and calculating pixels!). </p>
<p>Firefox and Safari rendered the layout fine, being a bit more forgiving in this instance than Internet Explorer or Opera. However, since approximately 50% of the viewing public uses Internet Explorer (only 1% uses Opera, though it&#8217;s by all reports a great browser), getting the layout right for Internet Explorer is crucial.</p>
<p>So what&#8217;s a web designer to do? Or what are you, as the owner of a website, going to suggest to your web designer to make sure it&#8217;s right?</p>
<p>It is actually quite a chore to check a website design in all of the browsers. For example, though I use a Windows laptop, I am only able to use it to check my designs in the most recent versions of Internet Explorer (8, as of this writing), Firefox, and Chrome. It would take <em>another laptop</em> with older software to check in the other browsers, and that&#8217;s simply not within my budget or realm of patience. <em>(Note to tech geeks: I realize it&#8217;s possible to run multiple versions of the browsers on one machine, but it&#8217;s not practical for the average user such as myself to set up.)</em></p>
<p>There is now, though, a solution I&#8217;m using that works really well. There&#8217;s a new company called Cross Browser Testing, <a href="http://crossbrowsertesting.com">www.crossbrowsertesting.com</a>, that allows the visitor to check their website in dozens of browsers across mulitple platforms. </p>
<p>It&#8217;s geared toward professional designers, and there is an offer to use it for free for a limited number of tests. To continue using it, the cheapest registration is $20 bucks a month, which allows you 150 minutes of testing per month. There are of course more expensive options available. You can use this service to take screenshots of a website in the different browsers, and you can also do a &#8220;live test&#8221; in an environment that is a bit slow and awkward, but is still very useful.</p>
<p>I would highly recommend this site to any web designer. For you site owners who&#8217;d like reassurance that your designer is checking cross browser, you can ask him or her to send you screenshots from the different browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/web-design-blog/cross-browser-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classic Hardwood Floors</title>
		<link>http://outwardfocusdesign.com/projects/websites/classic-hardwood-floors/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/classic-hardwood-floors/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 23:26:00 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[custom Wordpress]]></category>
		<category><![CDATA[photo gallery]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=194</guid>
		<description><![CDATA[Classic Hardwood Floors was in a common position: the company had a homemade website which was fine when the company was just getting going, but after several years of growth, the site looked a bit amateur for the caliber of work the company performs. The goal for the site was of course to show how [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2010/07/classichf.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/07/classichf-500x420.jpg" alt="Classic Hardwood Floors website" title="Classic Hardwood Floors website" width="500" height="420" class="aligncenter size-large wp-image-224" /></a></p>
<p>Classic Hardwood Floors was in a common position: the company had a homemade website which was fine when the company was just getting going, but after several years of growth, the site looked a bit amateur for the caliber of work the company performs. </p>
<p>The goal for the site was of course to show how beautiful hardwood floors looked, achieved through the company&#8217;s own project photos, as well as several carefully chosen stock photos. Additionally, the owner would like to start blogging about his industry and projects, which is a great way to build stronger search engine results, and provide a more informative website at the same time. Having the site built in WordPress of course makes blogging on the site very easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/classic-hardwood-floors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TableTalk Radio</title>
		<link>http://outwardfocusdesign.com/projects/websites/tabletalk-radio/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/tabletalk-radio/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 23:48:11 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[custom Wordpress template]]></category>
		<category><![CDATA[event manager]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=203</guid>
		<description><![CDATA[Jamie Peha and Anne Nisbet have a radio show called &#8220;TableTalk&#8221; that airs once per month locally in Seattle. The focus is on wine and food: home cooking, restaurants, and foodie events in the Seattle area. The site primarily is a vehicle for three blogs: one about home cooking, one about events, and one a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2010/06/tabletalk.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/06/tabletalk-500x420.jpg" alt="TableTalk Radio website" title="TableTalk Radio website" width="500" height="420" class="aligncenter size-large wp-image-227" /></a></p>
<p>Jamie Peha and Anne Nisbet have a radio show called &#8220;TableTalk&#8221; that airs once per month locally in Seattle. The focus is on wine and food: home cooking, restaurants, and foodie events in the Seattle area. </p>
<p>The site primarily is a vehicle for three blogs: one about home cooking, one about events, and one a sort of catch all foodie blog. It would have been quite possible to mash these up into one blog, but we decided to provide the author of each with a slot on the homepage by using a tabbed interface. </p>
<p>In addition to the blogging essentials, the site uses an event manager plugin which I customized to display the information the hosts wanted. </p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/tabletalk-radio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MistralKitchen</title>
		<link>http://outwardfocusdesign.com/projects/websites/mistralkitchen/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/mistralkitchen/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 18:48:38 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=173</guid>
		<description><![CDATA[Mistral-Kitchen is a fine dining restaurant in Seattle. The feel of the restaurant is distinctly modern, having been designed by an architect. The owner wanted the website to feel modern and clean, yet dark and moody. The site is built on WordPress, with a custom back end allowing restaurant staff to easily be able to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2010/06/mistral.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/06/mistral-500x420.jpg" alt="MistralKitchen website" title="MistralKitchen website" width="500" height="420" class="aligncenter size-large wp-image-229" /></a></p>
<p>Mistral-Kitchen is a fine dining restaurant in Seattle. The feel of the restaurant is distinctly modern, having been designed by an architect. The owner wanted the website to feel modern and clean, yet dark and moody. </p>
<p>The site is built on WordPress, with a custom back end allowing restaurant staff to easily be able to update menu items.</p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/mistralkitchen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Belle Femme</title>
		<link>http://outwardfocusdesign.com/projects/websites/belle-femme/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/belle-femme/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 15:35:57 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=168</guid>
		<description><![CDATA[Belle Femme is an independent salon offering organic skin care in a luxuriant atmosphere. The owner wanted a site that offered a feeling of European luxury and abundance. The salon also sells jewelry, and the new website offers rich detail for each piece, as well as a way to cross reference other pieces of jewelry [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2010/06/bellefemme.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/06/bellefemme-500x420.jpg" alt="Belle Femme of Seattle website" title="Belle Femme of Seattle website" width="500" height="420" class="aligncenter size-large wp-image-232" /></a></p>
<p>Belle Femme is an independent salon offering organic skin care in a luxuriant atmosphere. The owner wanted a site that offered a feeling of European luxury and abundance. </p>
<p>The salon also sells jewelry, and the new website offers rich detail for each piece, as well as a way to cross reference other pieces of jewelry that feature the same semi-precious stones. </p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/belle-femme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Serafina and Cicchetti</title>
		<link>http://outwardfocusdesign.com/projects/websites/serafina-and-cicchetti/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/serafina-and-cicchetti/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 08:25:22 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=98</guid>
		<description><![CDATA[This was an interesting one! Having designed an individual restaurant site for Serafina and Cicchetti separately, both under the same ownership and management, the owner now wanted an &#8220;umbrella&#8221; to wrap the two sites together. This was useful especially given that much of the information, such as contact info, is shared between the two restaurants. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2010/01/serafina-cicchetti.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2010/01/serafina-cicchetti-500x420.jpg" alt="Serafina and Cicchetti event page" title="Serafina and Cicchetti website" width="500" height="420" class="aligncenter size-large wp-image-234" /></a></p>
<p>This was an interesting one! </p>
<p>Having designed an individual restaurant site for Serafina and Cicchetti separately, both under the same ownership and management, the owner now wanted an &#8220;umbrella&#8221; to wrap the two sites together. This was useful especially given that much of the information, such as contact info, is shared between the two restaurants.</p>
<p>I opted for a design that would allow the branding information to stay fixed at the top of each page, not scrolling out of view on longer pages. To achieve this, I implemented a custom scrollbar, allowing only the content area of longer pages to scroll. You have to <a href="http://serafinaseattle.com/contact/">see it in action</a> to appreciate this function (Note: if you have a large monitor, you might need to size your monitor down to initialize the scrollbars).</p>
<p>There is also a persistent navigation menu that is available on every page of the umbrella site, Serafina&#8217;s site, and Cicchetti&#8217;s site, while the two restaurants each have their own navigation menu as well. The idea with this was to make it styled simply (a black vertical bar with white text), both so it would create good contrast with the other sites, yet not clash.</p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/serafina-and-cicchetti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mixed Greens</title>
		<link>http://outwardfocusdesign.com/projects/websites/mixed-greens/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/mixed-greens/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 09:01:23 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=116</guid>
		<description><![CDATA[Mixed Greens is run by two serious photographers and foodies, and they are competing with some pretty sophisticated websites for attention on the internet. There old format wasn&#8217;t cutting it, so they asked me to redesign it. We kept enough flavor from the old design (same logo and masthead, white background, bright green links) to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2009/11/mixedgreens.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2009/11/mixedgreens-500x420.jpg" alt="Mixed Greens Blog" title="Mixed Greens Blog" width="500" height="420" class="aligncenter size-large wp-image-213" /></a></p>
<p>Mixed Greens is run by two serious photographers and foodies, and they are competing with some pretty sophisticated websites for attention on the internet. There old format wasn&#8217;t cutting it, so they asked me to redesign it. </p>
<p>We kept enough flavor from the old design (same logo and masthead, white background, bright green links) to make sure their existing readership would not be overly shocked by the new layout. However, we added some features that simply did not exist before. </p>
<p>Previously, the website had a typical blog structure, where the 10 most recent stories simply chained up on the homepage, creating a <em>very</em> long page, and access to only 10 of hundreds of articles the owners have written on local, sustainable food. The new design creates an engaging way to present dense amounts of information as is typical of newspaper and magazine websites: there is a short teaser and thumbnail for many of the stories, with a headline for dozens of others. This allows access to 39 stories on the homepage, while still not feeling visually overwhelming.</p>
<p>The new site also features a slick photo gallery to show off their work. The site owners have the ability to upload their own photos to the gallery. Since this is accomplished with WordPress, they have no fear of &#8220;breaking&#8221; the layout.</p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/mixed-greens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cicchetti Kitchen and Bar</title>
		<link>http://outwardfocusdesign.com/projects/websites/cicchetti-kitchen-and-bar/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/cicchetti-kitchen-and-bar/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 08:44:52 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=112</guid>
		<description><![CDATA[Cicchetti is the sibling restaurant to Serafina, whose website I also designed. The owner wanted a very different feel for this restaurant, as it is a more casual yet modern style of establishment. Cicchetti&#8217;s site features striking photography which expands to fill the background of each page, no matter the size of the viewer&#8217;s monitor. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2009/11/cicchetti-food.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2009/11/cicchetti-food-500x420.jpg" alt="Cicchetti Kitchen and Bar website" title="Cicchetti Kitchen and Bar website" width="500" height="420" class="aligncenter size-large wp-image-215" /></a></p>
<p>Cicchetti is the sibling restaurant to Serafina, whose website I <a href="/projects/websites/serafina/">also designed</a>. The owner wanted a very different feel for this restaurant, as it is a more casual yet modern style of establishment.</p>
<p>Cicchetti&#8217;s site features striking photography which expands to fill the background of each page, no matter the size of the viewer&#8217;s monitor. The branding at the top is fixed in place by implementing a scrollbar to allow only the content to be scrolled out of view. </p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/cicchetti-kitchen-and-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>U.S. Visas Seattle</title>
		<link>http://outwardfocusdesign.com/projects/websites/us-visas-seattle/</link>
		<comments>http://outwardfocusdesign.com/projects/websites/us-visas-seattle/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 19:21:06 +0000</pubDate>
		<dc:creator>christopher</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://outwardfocusdesign.com/?p=66</guid>
		<description><![CDATA[Fred Arcala is partner in a Seattle law firm that specializes in immigration law. He wanted a site that had iconic American motifs, yet still appeared professional. I designed a masthead with the Statue of Liberty, and infused the palette of the site with blues and burgundies. Fred also wanted to be able to add [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://outwardfocusdesign.com/wp-content/uploads/2009/11/usvisasseattle.jpg"><img src="http://outwardfocusdesign.com/wp-content/uploads/2009/11/usvisasseattle-500x420.jpg" alt="Arcala and Zwerin website" title="Arcala and Zwerin website" width="500" height="420" class="aligncenter size-large wp-image-219" /></a></p>
<p>Fred Arcala is partner in a Seattle law firm that specializes in immigration law. He wanted a site that had iconic American motifs, yet still appeared professional. I designed a masthead with the Statue of Liberty, and infused the palette of the site with blues and burgundies. </p>
<p>Fred also wanted to be able to add content himself, especially to add informative articles in the form of Frequently Asked Questions, and to be able to create links to sites he found that would be useful for his clients. I set up the site on WordPress, making it very easy for Fred to add his own content.</p>
]]></content:encoded>
			<wfw:commentRss>http://outwardfocusdesign.com/projects/websites/us-visas-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
