<?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>Helene McCarron PortfolioHelene McCarron&#8217;s Portfolio | </title>
	<atom:link href="http://dreamscraps.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://dreamscraps.net</link>
	<description>Web Design, Fresh and Alive!</description>
	<lastBuildDate>Wed, 28 Sep 2011 12:24:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to get back on your feet</title>
		<link>http://dreamscraps.net/2011/09/how-to-get-back-on-your-feet/</link>
		<comments>http://dreamscraps.net/2011/09/how-to-get-back-on-your-feet/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 13:40:40 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[browser compatibility]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://dreamscraps.net/?p=953</guid>
		<description><![CDATA[Coding is fun. You set out with an idea, look around or dig in your memory for a way of executing it. A few minutes (or hours) later and you have a brand new object shining on the Web! Until that glorious glow is dimmed by a bug (no I&#8217;m not naming Internet Explorer, Internet [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dreamscraps.net/2011/09/how-to-get-back-on-your-feet/jquerylong/" rel="attachment wp-att-965"><img class="aligncenter size-full wp-image-965" title="jquerylong" src="http://dreamscraps.net/wp-content/uploads/2011/09/jquerylong.png" alt="" width="480" height="197" /></a>Coding is fun. You set out with an idea, look around or dig in your memory for a way of executing it. A few minutes (or hours) later and you have a brand new object shining on the Web! Until that glorious glow is dimmed by a bug (no I&#8217;m not naming Internet Explorer, Internet Explorer never spoils my fun, what am I saying?). All that hard excitement and it&#8217;s not working.</p>
<p>For example, on my <a title="Web design" href="http://dreamscraps.net/web/">Web </a>and <a title="Flash" href="http://dreamscraps.net/flash-actionscript-2-0-3-0/">Flash </a>pages, I wanted a sleek mouse-over on my images to display more information about my work without taking away from the visual appeal of an image gallery. A few moments later, I had a simple hover effect in JQuery for it. Easy, simply toggle the visibility of my CSS class as follows:</p>
<p>First, to set my div to hidden: <code>$("div.iFade").css("visibility", "hidden");</code>.</p>
<p>Second, simply reveal it with a simple function:<br />
<code>$(".rollMe").hover(<br />
function(){<br />
$(this).find("div.iFade").fadeIn(500).css("visibility", "visible");<br />
},<br />
function(){<br />
$(this).find("div.iFade").fadeOut(500).css("visibility", "hidden");<br />
}<br />
);}</code></p>
<p>Nothing to it. Now you see me &#8211; now you don&#8217;t, type of scenario with a fade thrown in for shows.</p>
<p>All happy, I test it in Firefox, as usual and it works like a charm. I then test it on IE8, fearing the worst but it works like charm also! Wonderful &#8211; I can&#8217;t believe it! And then I try IE9&#8230; and then Chrome&#8230; and finally Safari&#8230; and discover that the hidden visibility property is not working while using inline styles with those browsers. The only way to make it work was to use the property in my external style sheet, which, in this example, would not work.</p>
<p>This is XHTML, after all, and for a second, I forgot that even if I am not directly typing my style in my div tag, I am still committing the cardinal sin of adding mark-up to my XHTML instead of sending it to it&#8217;s happy style-sheet. Bad Jquery!</p>
<p>As a result, instead of switching visibility on and off, I can achieve the same effect, without the browser freaking out, by switching the classes instead.</p>
<p><code>$(".rollMe").hover(<br />
function(){<br />
$(this).find("div.iFade").fadeIn(500).removeClass("iFade").addClass("IShow");<br />
},<br />
function(){<br />
$(this).find("div.IShow").fadeOut(500).removeClass("IShow").addClass("iFade");<br />
}<br />
);</code></p>
<p>In my CSS, iFade is set to hidden, IShow is set to visible et voila!</p>
<p>This is a little longer, requires a second class in CSS to avoid inline style but it is well worth it! And next time, I will remember that JQuery does not justify to forget how to code in XHTML!</p>
<p>&nbsp;</p>
<p>Further reading:</p>
<p><a href="http://tympanus.net/codrops/2011/08/31/html-only-the-significance-of-proper-markup/" target="_blank">The significance of proper markup</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/09/how-to-get-back-on-your-feet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing in a hurry</title>
		<link>http://dreamscraps.net/2011/09/designing-in-a-hurry/</link>
		<comments>http://dreamscraps.net/2011/09/designing-in-a-hurry/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 12:40:51 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[creation]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[working with clients]]></category>

		<guid isPermaLink="false">http://dreamscraps.net/?p=790</guid>
		<description><![CDATA[Sometimes, time constraints are a big factor in design. Usually, I will receive a project, do some research for inspiration, throw something together and mop over it for a while. In some case, it just works and I end up with a nice design. Other times, when inspiration is nowhere to be seen, I&#8217;ll scratch [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dreamscraps.net/2011/09/designing-in-a-hurry/hurry/" rel="attachment wp-att-803"><img class="aligncenter size-full wp-image-803" title="hurry" src="http://dreamscraps.net/wp-content/uploads/2011/09/hurry.png" alt="" width="480" height="197" /></a></p>
<p>Sometimes, time constraints are a big factor in design.</p>
<p>Usually, I will receive a project, do some research for inspiration, throw something together and mop over it for a while. In some case, it just works and I end up with a nice design. Other times, when inspiration is nowhere to be seen, I&#8217;ll scratch the idea, restart, try another concept, do some more research until eventually, I figure something out.</p>
<p>But none of that is possible when you have a very tight deadline. It&#8217;s happened to every designer. For one reason or another, the client needs the finished product for yesterday, and there you are, scrambling to get your wits together, it&#8217;s crunch time. All the procrastinating and thinking goes out the window. So does you sitting back on your chair sipping coffee and browsing for ideas.</p>
<p>All that is left is pure creativity and experience. You sit down very straight, not tasting that gallon of coffee and all the sudden it just happens. You set up your file without thinking, it just happens. You never designed a CD, or this specific poster size? Not to worry, you have the basics and use just that. All the worries that you may have are irrelevant. You don&#8217;t think, you just keep moving.</p>
<p><a style="float: left; padding-right: 20px;" title="Bokeh" href="http://dreamscraps.net/2011/07/having-fun-with-wordpress/brokeh/" rel="attachment wp-att-789"><img title="bokeh" src="http://dreamscraps.net/wp-content/uploads/2011/07/brokeh.png" alt="" width="194" height="194" /></a>The essential is to get something decent that can be worked on and modified quickly. I find the best way is to use some old fractal or graphic element I have laying around, or even a bokeh I did for another project. I know I can always republish an old render or tweak the bokeh if the client likes it. Now is not the time to try to re-invent the wheel. I&#8217;ll test my square peg in a round hole next time!</p>
<p>I use any material the client sent for inspiration, everything is useful. This also when working with another designer becomes a huge asset.</p>
<p>Sure, I can do it myself but it&#8217;s always faster to show a half finished product to a fellow designer. Why deprive myself of another eye and another sensibility? All I need is a quick critique, &#8220;I don&#8217;t like the layout, I think you should use another color scheme, make it pop more&#8221; etc&#8230; to adjust instantly and go beyond what I would have done in such a short amount of time.</p>
<p>The thought process isn&#8217;t the same under pressure. The adrenaline must be converted into creativity, not panic. It&#8217;s what makes you think faster, move faster and get things done. It should be used exactly for what it serves: keep you alive, and that applies to how fast you can create!  Sure, you could run faster, but would that keep you alive? probably not. There&#8217;s nothing more lethal than an unhappy client!</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/09/designing-in-a-hurry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seamless Solutions Video</title>
		<link>http://dreamscraps.net/2011/09/seamless-solutions-video/</link>
		<comments>http://dreamscraps.net/2011/09/seamless-solutions-video/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 17:59:37 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://lokialrune.net/?p=542</guid>
		<description><![CDATA[A flash animation designed for Seamless Solutions. This is truly a teamwork effort. I worked on the video itself, Jena Rodriguez did the voice over and Alex Rodriguez added the music. The result is what you see! Flash Animation Programs: Photoshop, Flash 2011 for AROD Web Design &#160;]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://dreamscraps.net/2011/09/seamless-solutions-video/seamless-4/" rel="attachment wp-att-867"><br />
</a><a href="http://seamlesssolutions.com/video/video.html" target="_blank"><img class="size-full wp-image-456 aligncenter" title="Seamless Solutions" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/seamlesslong.png" alt="" width="480" height="197" /></a></p>
<p style="text-align: left;">A flash animation designed for Seamless Solutions. This is truly a teamwork effort. I worked on the video itself, Jena Rodriguez did the voice over and Alex Rodriguez added the music. The result is what you see!</p>
<h3 style="text-align: left;">Flash Animation<br />
Programs: Photoshop, Flash<br />
2011 for AROD Web Design</h3>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/09/seamless-solutions-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sinful Delights</title>
		<link>http://dreamscraps.net/2011/08/sinful-delights/</link>
		<comments>http://dreamscraps.net/2011/08/sinful-delights/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 17:42:15 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[Indesign]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=322</guid>
		<description><![CDATA[This was the design concept and layout for one of my friends, Philippe Coupe. He is a chef and wanted to publish his recipes in a stylish way. We put together a rough preview in 12 days then he worked on completing the actual book. You can buy the book here! Programs used: Photoshop, InDesign [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://dreamscraps.net/wp-content/uploads/2011/08/cookbook-cover-front.jpg"><img class="size-full wp-image-323 aligncenter" title="cookbook" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/sinfullong.png" alt="" width="480" height="197" /></a> This was the design concept and layout for one of my friends, Philippe Coupe. He is a chef and wanted to publish his recipes in a stylish way. We put together a rough preview in 12 days then he worked on completing the actual book. You can buy the book <a href="http://www.frenchefusa.com/order.html#buyNow" target="_blank">here</a>!</p>
<p>Programs used: Photoshop, InDesign</p>
<p>2010 for Stella and Philippe Coupe</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/sinful-delights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metadigm</title>
		<link>http://dreamscraps.net/2011/08/metadigm-2/</link>
		<comments>http://dreamscraps.net/2011/08/metadigm-2/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 17:38:44 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[apophysis]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=319</guid>
		<description><![CDATA[A trade show booth design, complete with a set of flyers and a banner for Metadigm Services. This was a fun project, with a lot of different skills involved. Designing in such a big scale can be challenging but is always rewarding! Photoshop was my main tool for this project, but I also vectorized their [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/metabig.png"><img class="size-full wp-image-320 aligncenter" title="meta" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/metalong.png" alt="" width="480" height="197" /></a>A trade show booth design, complete with a set of flyers and a banner for Metadigm Services. This was a fun project, with a lot of different skills involved. Designing in such a big scale can be challenging but is always rewarding! Photoshop was my main tool for this project, but I also vectorized their logo in Illustrator and used Apophysis on the side of the display for added eye catching design.</p>
<p>Programs used: Photoshop, Illustrator, Apophysis</p>
<p>2011 for AROD Web Design</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/metadigm-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Murder by Chocolate</title>
		<link>http://dreamscraps.net/2011/08/murder-by-chocolate/</link>
		<comments>http://dreamscraps.net/2011/08/murder-by-chocolate/#comments</comments>
		<pubDate>Thu, 11 Aug 2011 17:34:22 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=315</guid>
		<description><![CDATA[A poster design for Murder by Chocolate performing at the House of Blues of Houston]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><ahttp://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/MBC_hob_poster.jpg"><img class="aligncenter" title="Murder by chocolate" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/murderlong.png" alt="" width="480" height="197" /></a></p>
<p style="text-align: left;">A poster design for Murder by Chocolate that is performing at the House of Blues of Houston. We are working on their website and handling their event ticketing. This was a special event and they needed to advertise so we designed a poster and used the concept for their banners, thumbnails etc. in various promotional objects. This was done entirely in Photoshop.</p>
<p>2011 for AROD Web Design</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/murder-by-chocolate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mort Subite</title>
		<link>http://dreamscraps.net/2011/08/mortsubite/</link>
		<comments>http://dreamscraps.net/2011/08/mortsubite/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 14:37:45 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=186</guid>
		<description><![CDATA[A fictitious Beer label for a design class. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/mortsubite.jpg"><img class="alignnone" title="Mort subite" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/mortlong.png" alt="" /></a></p>
<p>A fictitious Beer label, we had to design an alcoholic beverage label. I chose a Belgian Beer whose logo was not that interesting, and based on other labels for Belgian beers, came up with a Art Deco inspired design instead. I drew Death, traced it and Illustrator and colored it Photoshop. The background of the label is also a mix of of Photoshop and Illustrator.</p>
<p>Programs used: Photoshop and Illustrator</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/mortsubite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lawnkare Keepers</title>
		<link>http://dreamscraps.net/2011/08/lawnkare-keepers/</link>
		<comments>http://dreamscraps.net/2011/08/lawnkare-keepers/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:48:01 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=179</guid>
		<description><![CDATA[HTML site with flash animations "sprinkled" and a jquery image slider]]></description>
			<content:encoded><![CDATA[<p><a href="http://lawnkarekeepers.com/" target="_blank"><img class="aligncenter" title="lawn kare keepers" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/karelong.png" alt="" width="480" height="197" /></a><br />
An HTML site with flash animations &#8220;sprinkled&#8221; throughout the site and with a JQuery image slider.</p>
<p>This was a fun project. The client wanted something very colorful and cartoony to match their logo. I designed the layout in Photoshop. They also wanted a lot of pop so we added animated sprinklers designed in Flash in the header and on the irrigation page.</p>
<h3><em><em><br />
Interface Design<br />
Flash Animation<br />
Web Development<br />
Programs: Photoshop, Flash<br />
2011 for AROD Web Design</em></em></h3>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/lawnkare-keepers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tournaments to a Tee</title>
		<link>http://dreamscraps.net/2011/08/tournaments-to-a-tee/</link>
		<comments>http://dreamscraps.net/2011/08/tournaments-to-a-tee/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:46:22 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[apophysis]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=177</guid>
		<description><![CDATA[A wordpress site for Tournament to a Tee with a Jquery slider]]></description>
			<content:encoded><![CDATA[<p><a href="http://tournamentstoatee.com/" target="_blank"><img class="size-full wp-image-121 aligncenter" title="Tournaments to a tee" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/tttlong.png" alt="Tournaments to a tee" width="480" height="197" /></a></p>
<p style="text-align: left;">A WordPress site for Tournament to a Tee with a Jquery slider. I designed the interface as well, based on a very clean soft concept to match the colors of their logo. We also design their newsletters on a monthly basis.</p>
<h3><em><em><em><em>Interface Design<br />
Web Development<br />
Programs: Photoshop<br />
2011 for AROD Web Design</em></em></em></em></h3>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/tournaments-to-a-tee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stacy Queen of Cards</title>
		<link>http://dreamscraps.net/2011/08/stacy-queen-of-cards/</link>
		<comments>http://dreamscraps.net/2011/08/stacy-queen-of-cards/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:43:58 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=173</guid>
		<description><![CDATA[A Wordpress site for Stacy Queen Of Cards. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.stacyqueenofcards.com/" target="_blank"><img class="size-full wp-image-120 aligncenter" title="Stacy queen of cards" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/stacylong.png" alt="Stacy queen of cards" width="480" height="197" /></a><br />
A WordPress site for Stacy Queen Of Cards. We re-branded her identity and created a site that would match her bubbly personality. I designed the interface in all shades of red without making it too &#8220;girly&#8221;</p>
<h3><em><em><em><em>Interface Design<br />
Web Development<br />
Programs: Photoshop<br />
2011 for AROD Web Design</em></em></em></em></h3>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/stacy-queen-of-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wilma J. Brown</title>
		<link>http://dreamscraps.net/2011/08/wilma-j-brown/</link>
		<comments>http://dreamscraps.net/2011/08/wilma-j-brown/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:41:53 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=171</guid>
		<description><![CDATA[A wordpess site for Wilma J. Brown. I designed her interface keeping in mind her fiery personality and used a strong color combination of reds and oranges. I still wanted to keep a clean, white feel to match our company&#8217;s aesthetics. Interface Design Web Development Programs: Photoshop 2011 for AROD Web Design]]></description>
			<content:encoded><![CDATA[<h3><a href="http://wilmajbrown.com/"><img class="aligncenter size-full wp-image-856" title="wilmalong" src="http://dreamscraps.net/wp-content/uploads/2011/08/wilmalong.png" alt="" width="480" height="197" /></a><a href="http://dreamscraps.net/2011/08/wilma-j-brown/wilmalong/" rel="attachment wp-att-856"><br />
</a></h3>
<p style="text-align: left;">A wordpess site for Wilma J. Brown. I designed her interface keeping in mind her fiery personality and used a strong color combination of reds and oranges. I still wanted to keep a clean, white feel to match our company&#8217;s aesthetics.</p>
<h3><em><em><em><em>Interface Design<br />
Web Development<br />
Programs: Photoshop<br />
2011 for AROD Web Design</em></em></em></em></h3>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/wilma-j-brown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finance RX</title>
		<link>http://dreamscraps.net/2011/08/finance-rx/</link>
		<comments>http://dreamscraps.net/2011/08/finance-rx/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:26:38 +0000</pubDate>
		<dc:creator>Helene</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[apophysis]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://lokialrune.net/blog/?p=159</guid>
		<description><![CDATA[A WordPress website for Finance Rx. Jena redesigned their logo and I worked on the interface. They wanted something very clean but with a lot of visual appeal. I got another chance to use my favorite image generating program, Apophysis for the footer. Interface Design Web Development Programs: Photoshop, Apophysis 2011 for AROD Web Design]]></description>
			<content:encoded><![CDATA[<p><a href="http://finance-rx.com/" target="_blank"><img class="size-full wp-image-114 aligncenter" title="finance" src="http://dreamscraps.net/wp-content/themes/hybrid/library/images/galleries/financelong.png" alt="" /></a></p>
<p style="text-align: left;">A WordPress website for<a href="http://finance-rx.com/" target="_blank"> Finance Rx</a>. Jena redesigned their logo and I worked on the interface. They wanted something very clean but with a lot of visual appeal. I got another chance to use my favorite image generating program, Apophysis for the footer.</p>
<h3><em><em><em><em>Interface Design<br />
Web Development<br />
Programs: Photoshop, Apophysis<br />
2011 for AROD Web Design</em></em></em></em></h3>
]]></content:encoded>
			<wfw:commentRss>http://dreamscraps.net/2011/08/finance-rx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

