<?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>Meredith Dodge</title>
	<atom:link href="http://www.meredithdodge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.meredithdodge.com</link>
	<description>Designer / Developer</description>
	<lastBuildDate>Tue, 17 Jan 2012 01:20:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>I&#8217;m turning 30!</title>
		<link>http://www.meredithdodge.com/2012/01/16/im-turning-30/</link>
		<comments>http://www.meredithdodge.com/2012/01/16/im-turning-30/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 00:24:49 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=549</guid>
		<description><![CDATA[Hi Folks! Come help me celebrate the sunset of my twenties in Santa Cruz, the city where it all began. At 1pm we&#8217;ll hit up the rides at the Boardwalk and consume inappropriate amounts of the following foods: Cotton candy Corndogs French fries Chocolate-dipped soft-serve ice cream cones Then at 5pm we&#8217;ll set up a [...]]]></description>
			<content:encoded><![CDATA[<p><a title="View Facebook Invite" href="http://www.facebook.com/events/193924684038473" target="_blank"><img class="size-full wp-image-550 alignnone" title="invite" src="http://www.meredithdodge.com/wp-content/uploads/invite.jpg" alt="" width="820" height="612" /></a></p>
<p>Hi Folks!</p>
<p>Come help me celebrate the sunset of my twenties in Santa Cruz, the city where it all began.</p>
<p>At 1pm we&#8217;ll hit up the rides at the Boardwalk and consume inappropriate amounts of the following foods:</p>
<ul>
<li>Cotton candy</li>
<li>Corndogs</li>
<li>French fries</li>
<li>Chocolate-dipped soft-serve ice cream cones</li>
</ul>
<p>Then at 5pm we&#8217;ll set up a BONFIRE at Twin Lakes Beach and partake in some or all of the following activities:</p>
<ul>
<li>Tossing a ball around</li>
<li>Roasting marshmallows</li>
<li>Playing instruments and singing loudly</li>
<li>Skinny dipping???</li>
</ul>
<p>It would make me so happy to spend my 30th birthday with each and every one of you. And your significant other! If you can&#8217;t make it to either of the above activities, I&#8217;ll be in SC for most of the weekend so there may well be another opportunity for you to gaze upon my 30-year-old face. <img src='http://www.meredithdodge.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>RSVP on the <a href="http://www.facebook.com/events/create/?eid=193924684038473" target="_blank">Facebook event page</a> or by commenting below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2012/01/16/im-turning-30/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>@font-face problem with Facebook in IE8</title>
		<link>http://www.meredithdodge.com/2011/12/16/font-face-problem-with-facebook-in-ie8/</link>
		<comments>http://www.meredithdodge.com/2011/12/16/font-face-problem-with-facebook-in-ie8/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 23:23:09 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[@font-face]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=537</guid>
		<description><![CDATA[While working on a Facebook app that uses web fonts through an @font-face declaration created with Font Squirrel, I noticed a bizarre bug in IE8 in which all the text in the parent frame (ie Facebook) takes on one of the custom fonts supported with an EOT file. Despite the fact that it&#8217;s rather amusing [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a Facebook app that uses web fonts through an @font-face declaration created with Font Squirrel, I noticed a bizarre bug in IE8 in which <em>all the text</em> in the parent frame (ie Facebook) takes on one of the custom fonts supported with an EOT file. Despite the fact that it&#8217;s rather amusing to see all of Facebook rendered in a fancy display font, it would be very wrong and shocking for a user to see this.</p>
<p>Searching for a workaround, I came across a <a href="http://www.samiam.org/blog/20110619.html">few</a> <a href="http://kenneth.kufluk.com/blog/2010/02/losing-face-with-ie8/">different</a> <a href="http://stackoverflow.com/questions/7768029/ie8-web-font-iframe-bug-workarounds">posts</a> that helped me understand the issue better, but didn&#8217;t quite work in the context of a Facebook app.</p>
<p>The heart of the issue is this: the parent frame will take on the EOT font when that EOT loads for the iframe, <em>if</em> the parent frame has not already finished loading at the time.</p>
<p>The solution needs to be this: load the EOT for the font <em>after </em>the parent frame has finished loading.</p>
<p>To do this, we need to perform a little bit of javascript trickery (I&#8217;m using <a href="http://jquery.com/">jQuery </a>and <a href="http://developers.facebook.com/docs/reference/javascript/">Facebook Javascript SDK</a> here).</p>
<ol>
<li>Remove any EOT fonts from the CSS properties for all elements in your (iframed) page, but keep the @font-face declaration in your CSS file. Create a unique class for each EOT font. For example:
<p><code>@font-face {<br />
font-family: 'CairoRegular';<br />
src: url('cairo-webfont.eot');<br />
src: url('cairo-webfont.eot?#iefix') format('embedded-opentype'),<br />
url('cairo-webfont.woff') format('woff'),<br />
url('cairo-webfont.ttf') format('truetype'),<br />
url('cairo-webfont.svg#CairoRegular') format('svg');<br />
font-weight: normal;<br />
font-style: normal;<br />
}</p>
<p>.CairoRegular {<br />
font-family: 'CairoRegular';<br />
}</code></li>
<li>Next, create a function that adds this class to the elements that need it:
<p><code>function addfonts(){<br />
$("#header h1,#content h3,#content h6,.cssbutton").addClass("CairoRegular");<br />
$("#header h4,#header h2,#header h3").addClass("BallparkWeiner");<br />
}</code></li>
<li>And finally, add the FB.Canvas.getPageInfo() function somewhere after your FB.init function and put your font function inside the callback:
<p><code>FB.Canvas.getPageInfo(function() {<br />
addfonts();<br />
});</code></p>
<p>The getPageInfo() function was the closest thing I could find to a listener for the parent page load completion. If you can find something better, by all means use that.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/12/16/font-face-problem-with-facebook-in-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrollbars on Facebook Canvas iframe</title>
		<link>http://www.meredithdodge.com/2011/10/03/scrollbars-on-facebook-canvas-iframe/</link>
		<comments>http://www.meredithdodge.com/2011/10/03/scrollbars-on-facebook-canvas-iframe/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 20:02:37 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=534</guid>
		<description><![CDATA[Just a quick heads up for anyone out there who is confounded by the existence of disabled scrollbars on their Facebook app canvas page. In your application&#8217;s advanced settings, checking Canvas Height: Fluid will add scrolling=&#8221;yes&#8221; to the iframe code, so select Settable to get rid of the scrollbars.]]></description>
			<content:encoded><![CDATA[<p>Just a quick heads up for anyone out there who is confounded by the existence of disabled scrollbars on their Facebook app canvas page. In your application&#8217;s advanced settings, checking <strong>Canvas Height: Fluid</strong> will add <strong>scrolling=&#8221;yes&#8221;</strong> to the iframe code, so select <strong>Settable </strong>to get rid of the scrollbars.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/10/03/scrollbars-on-facebook-canvas-iframe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Hobart Building</title>
		<link>http://www.meredithdodge.com/2011/07/26/the-hobart-building/</link>
		<comments>http://www.meredithdodge.com/2011/07/26/the-hobart-building/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 05:37:19 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=527</guid>
		<description><![CDATA[Fisher Hill Properties, which manages the historic Hobart Building in downtown San Francisco, had a very outdated website in terms of both design and maintenance, so they hired me to do a revamp of not only hobartbuilding.com but also they&#8217;re simple company profile website, fisherhillproperties.com. In addition to a redesign, the project included setting up [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="prettyPhoto" href="http://www.meredithdodge.com/wp-content/uploads/hobartbuilding_web.jpg"><img class="alignleft size-medium wp-image-528" title="Hobart Building website" src="http://www.meredithdodge.com/wp-content/uploads/hobartbuilding_web-458x362.jpg" alt="Hobart Building website" width="458" height="362" /></a>Fisher Hill Properties, which manages the historic Hobart Building in downtown San Francisco, had a very outdated website in terms of both design and maintenance, so they hired me to do a revamp of not only hobartbuilding.com but also they&#8217;re simple company profile website, fisherhillproperties.com. In addition to a redesign, the project included setting up WordPress on both sites, so that the non-technical could update the site easily.</p>
<p>FHP was looking for a design that was elegant and classy, yet simple. Since their letterhead was done in Bembo, I settled on Times New Roman as the closest/easiest match for a web font. I chose a blend of patterns, soft gradients, and subtle drop shadows to keep the eye moving around the page. In the development phase, my goal was to take advantage of the new capabilities of CSS3 as much as possible. I was very satisfied with the result in the modern browsers, but, of course, even IE9 left me disappointed. Someday.</p>
<p>Go-live was not, of course, without a few hitches. A few words to the wise:</p>
<ul>
<li>Before launching, check your server&#8217;s installed PHP version. If it&#8217;s less than 5, be prepared to turn off any fancy .htaccess tricks that your theme&#8217;s functions.php file contains. Otherwise you&#8217;ll get a 500 Internal Server Error.</li>
<li>Stay away from Yahoo Small Business hosting if possible. They suck in the following ways:</li>
<li>.htaccess file is not supported (no pretty permalinks)
<ul>
<li>Performance is poor</li>
<li>Mail can only be sent from the same domain (for Contact Form 7)</li>
<li>The MySQL database host is mysql instead of localhost as it appears to be</li>
<li>phpMyAdmin has to be installed in a directory within your site&#8217;s root. It is s-l-o-w</li>
</ul>
</li>
</ul>
<p>My role: <strong>Design</strong> — 100% <strong> Code</strong> — 100%</p>
<p><a title="The Hobart Building Website" href="http://www.hobartbuilding.com" target="_blank">Visit site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/07/26/the-hobart-building/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting my Flash game into an Android app</title>
		<link>http://www.meredithdodge.com/2011/07/14/converting-my-flash-game-into-an-android-app/</link>
		<comments>http://www.meredithdodge.com/2011/07/14/converting-my-flash-game-into-an-android-app/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 19:41:40 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=494</guid>
		<description><![CDATA[We all know the story about Flash and the iPhone, but with Android phones there is no such obstacle. So with the help of Paul Trani&#8217;s tutorial on Lynda.com, I was able to convert my Cupcake Invaders Flash game into an Adobe AIR application for Android. The key steps in the conversion: Instead of walking [...]]]></description>
			<content:encoded><![CDATA[<p>We all know the story about Flash and the iPhone, but with Android phones there is no such obstacle. So with the help of <a href="http://www.lynda.com/Flash-CS5-tutorials/flash-professional-cs5-creating-a-simple-game-for-android-devices/74928-2.html">Paul Trani&#8217;s tutorial on Lynda.com</a>, I was able to convert my <a title="Cupcake Invaders game" href="http://www.meredithdodge.com/2011/05/27/cupcake-invaders-game/">Cupcake Invaders Flash game</a> into an Adobe AIR application for Android.</p>
<p><strong>The key steps in the conversion:</strong></p>
<ol>
<li>Instead of walking the character on an arrow button hover or arrow keydown, I used the accelerometer&#8217;s horizontal acceleration. Thus when the player tilts the device to the left or right, the character walks in that direction.</li>
<li>I converted most of the graphics from Flash vector drawings into PNGs. While a PC has the processor power to scale and move vector graphics quickly, phone processors are less beefy and have an easier time with bitmap graphics.</li>
<li>I downloaded the <a title="Download the Adobe AIR SDK" href="http://www.adobe.com/products/air/sdk/">Adobe AIR SDK</a> to compile the APK file and then downloaded the <a title="Download the Android SDK" href="http://developer.android.com/sdk/index.html">Android SDK</a> to push the file to my DroidX for testing.</li>
</ol>
<p>I haven&#8217;t published to the Android Market yet, but you can download and install the <a title="Cupcake Invaders Android app" href="/wp-content/uploads/other/cupcake_invaders.apk">Cupcake Invaders app here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/07/14/converting-my-flash-game-into-an-android-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dainese D-Store San Francisco</title>
		<link>http://www.meredithdodge.com/2011/07/05/dainese-d-store-san-francisco/</link>
		<comments>http://www.meredithdodge.com/2011/07/05/dainese-d-store-san-francisco/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 23:04:53 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=485</guid>
		<description><![CDATA[The Dainese D-Store San Francisco is the flagship retail location for the Italian Dainese brand of motorcycle protective clothing and gear. This website echos the look and feel of the Dainese corporate site, but with a greater design emphasis on information and social networking. The site was built with WordPress. My role: Design — 100% [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="prettyPhoto" href="/wp-content/uploads/Dainese_DStore_SanFrancisco_Website_lg.jpg"><img class="alignleft size-full wp-image-486" title="Dainese_DStore_SanFrancisco_Website" src="http://www.meredithdodge.com/wp-content/uploads/Dainese_DStore_SanFrancisco_Website.jpg" alt="" width="458" height="593" /></a>The Dainese D-Store San Francisco is the flagship retail location for the Italian Dainese brand of motorcycle protective clothing and gear.</p>
<p>This website echos the look and feel of the Dainese corporate site, but with a greater design emphasis on information and social networking. The site was built with WordPress.</p>
<p>My role: <strong>Design</strong> — 100% <strong>Code </strong>— 100%</p>
<p><a href="http://www.dstoresanfrancisco.com/" target="_blank">Visit site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/07/05/dainese-d-store-san-francisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Ways to See Red</title>
		<link>http://www.meredithdodge.com/2011/06/24/52-ways-to-see-red/</link>
		<comments>http://www.meredithdodge.com/2011/06/24/52-ways-to-see-red/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 17:44:57 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=479</guid>
		<description><![CDATA[52 Ways to See Red is a deck of cards that plays on the idea that red objects or experiences have strong emotions tied to them. This project took me into unfamiliar territory of combining digital and analog design. Here is the process I used to create the cards: Find images on the web Print [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-480" title="52ways_to_see_red" src="http://www.meredithdodge.com/wp-content/uploads/52ways_to_see_red.jpg" alt="" width="458" height="318" />52 Ways to See Red is a deck of cards that plays on the idea that red objects or experiences have strong emotions tied to them. This project took me into unfamiliar territory of combining digital and analog design. Here is the process I used to create the cards:</p>
<ol>
<li>Find images on the web</li>
<li>Print the images</li>
<li>Trace the images on tracing paper with black ink</li>
<li>Scan the traced sketches into my computer</li>
<li>Print the traced sketches onto water-color paper</li>
<li>Add color to the sketches using paint</li>
<li>Scan the painted sketches into my computer</li>
<li>Arrange the scanned images for printing on perforated playing-card sheets</li>
<li>Print and detach the cards; smooth edges with sandpaper</li>
</ol>
<p>To purchase a deck, please <a href="/contact">contact me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/06/24/52-ways-to-see-red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple jQuery UI dialogs in a dynamically page</title>
		<link>http://www.meredithdodge.com/2011/06/21/multiple-jquery-ui-dialogs-in-a-dynamically-page/</link>
		<comments>http://www.meredithdodge.com/2011/06/21/multiple-jquery-ui-dialogs-in-a-dynamically-page/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 23:11:54 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=470</guid>
		<description><![CDATA[Recently I was doing the front-end dev for a dynamically generated page that needed to have a large number of popups. I found the following script to help me enable the dialogs in a way that would be easy to integrate with dynamically generated code. The original script My version: $(function() { var options = [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was doing the front-end dev for a dynamically generated page that needed to have a large number of popups. I found the following script to help me enable the dialogs in a way that would be easy to integrate with dynamically generated code.</p>
<p><a title="Multiple Dialogs (Modal Box)" href="http://forum.jquery.com/topic/multiple-dialogs-modal-box#14737000000517603">The original script</a></p>
<p><strong>My version:</strong></p>
<p><code>
<pre>$(function() {
    var options = {
		autoOpen: false,
		resizable: false,
		width: 462,
		height: 373,
		open: function() {
    		$(this).dialog("widget").find(".ui-dialog-titlebar").hide();
		}
    };
    var n = 1;
    $(".popup").each(function(i) {
        var dlg = $('#popup-' + n).dialog(options);
        $('.opener-' + n).click(function() {
            dlg.dialog("open");
            return false;
        });
        $('#closer-' + n).click(function() {
            dlg.dialog("close");
            return false;
        });
        n++;
    });
});</pre>
<p></code><br />
<strong>What I changed:</strong></p>
<ul>
<li>In the options I added a function on open to remove the title bar.</li>
<li>I used the a class on the dialog div instead of the opener link to run the each loop, because there would be multiple opener links for each dialog.</li>
<li>I added a close function on a closer button.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/06/21/multiple-jquery-ui-dialogs-in-a-dynamically-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cupcake Invaders game</title>
		<link>http://www.meredithdodge.com/2011/05/27/cupcake-invaders-game/</link>
		<comments>http://www.meredithdodge.com/2011/05/27/cupcake-invaders-game/#comments</comments>
		<pubDate>Fri, 27 May 2011 06:03:29 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Animation]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=461</guid>
		<description><![CDATA[I created this game to be the cupcake version of the classic arcade game Space Invaders, in which the player controls a laser cannon to shoot alien spaceships. In my version, the player controls a pastry bag character with left and right arrows (on the stage or the keyboard) and clicks the mouse to shoot [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Cupcake Invaders Flash game" rel="prettyPhoto[flash]" href="/wp-content/uploads/cupcake_invaders_3.swf?width=800&amp;height=400&amp;flashvars=linkurl=&amp;phpMyAdmin=1ad2f2b5d1ae44c357632753db1ec06c#"><img class="alignleft size-full wp-image-464" title="frost_the_cupcakes_game" src="http://www.meredithdodge.com/wp-content/uploads/frost_the_cupcakes_game.jpg" alt="" width="458" height="229" /></a>I created this game to be the cupcake version of the classic arcade game Space Invaders, in which the player controls a laser cannon to shoot alien spaceships. In my version, the player controls a pastry bag character with left and right arrows (on the stage or the keyboard) and clicks the mouse to shoot frosting.</p>
<p>With the use of some physics, I was able to get the frosting to follow a trajectory based on the angle of the mouse click in relation to the position of the pastry bag. The player gains points by frosting the cupcake on the correct side (top).</p>
<p>Read about how I <a title="Converting my Flash game into an Android app" href="http://www.meredithdodge.com/2011/07/14/converting-my-flash-game-into-an-android-app/">converted the game to an Android app</a> or download the <a title="Download the Cupcake Invaders Android app" href="/wp-content/uploads/other/cupcake_invaders.apk">app file itself</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/05/27/cupcake-invaders-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>National Geographic Cover (school project)</title>
		<link>http://www.meredithdodge.com/2011/05/26/national-geographic-cover-school-project/</link>
		<comments>http://www.meredithdodge.com/2011/05/26/national-geographic-cover-school-project/#comments</comments>
		<pubDate>Fri, 27 May 2011 03:41:53 +0000</pubDate>
		<dc:creator>Meredith</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.meredithdodge.com/?p=452</guid>
		<description><![CDATA[My idea for this project was to build a human form out of a landscape. Using an image of a swimmer doing the butterfly stroke, I composited sections of a mountainous Middle-Eastern desert image to form the muscles of a human back. For the backdrop I used a photo of the Mojave Desert, and the [...]]]></description>
			<content:encoded><![CDATA[<p><a title="National Geographic Cover Concept" rel="prettyPhoto" href="/wp-content/uploads/Dodge_Final_Cover_Concept_lg.jpg"><img class="alignleft size-full wp-image-453" title="Dodge_Final_Cover_Concept" src="http://www.meredithdodge.com/wp-content/uploads/Dodge_Final_Cover_Concept.jpg" alt="" width="458" height="541" /></a></p>
<p>My idea for this project was to build a human form out of a landscape. Using an image of a swimmer doing the butterfly stroke, I composited sections of a mountainous Middle-Eastern desert image to form the muscles of a human back. For the backdrop I used a photo of the Mojave Desert, and the head was created from an image of a desert butte.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.meredithdodge.com/2011/05/26/national-geographic-cover-school-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

