<?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>Purpleurbia.com &#187; Featured</title>
	<atom:link href="http://purpleurbia.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://purpleurbia.com</link>
	<description></description>
	<lastBuildDate>Wed, 26 May 2010 13:17:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finish your SilverStripe portfolio</title>
		<link>http://purpleurbia.com/finish-your-silverstripe-portfolio/</link>
		<comments>http://purpleurbia.com/finish-your-silverstripe-portfolio/#comments</comments>
		<pubDate>Wed, 26 May 2010 13:17:25 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[SilverStripe]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=580</guid>
		<description><![CDATA[We already finished the PHP and have a design, now let&#8217;s finish!

We need to create our templates in a special format, but it can be edited in any HTML editor. If you want Dreamweaver to recognize the .ss file extension as HTML you need to follow these instructions.
If putting together the HTML is not really [...]]]></description>
			<content:encoded><![CDATA[<p>We already <a href="http://purpleurbia.com/building-a-web-portfolio-using-silverstripe/">finished</a> the PHP and have <a href="http://originalmoxie.net">a design</a>, now let&#8217;s finish!</p>
<p><span id="more-580"></span></p>
<p>We need to create our templates in a special format, but it can be edited in any HTML editor. If you want Dreamweaver to recognize the .ss file extension as HTML you need to follow <a href="http://kb2.adobe.com/cps/164/tn_16410.html">these</a> instructions.</p>
<p>If putting together the HTML is not really your thing, I would suggest heading over to SmashingMagazine&#8217;s list of <a title="Free HTML templates from Smashing Magazine" href="http://www.smashingmagazine.com/2008/12/01/100-free-high-quality-xhtmlcss-templates/">free HTML templates</a>.</p>
<p>Also, I am not posting my CSS files. You can take this raw HTML and use CSS to do your own layout (or you can even just use the loops in the .SS file and use different HTML markup).</p>
<p>The .ss file is basically just an HTML file. There is one .ss file that holds the header and footer, and then various other files that handle the middle of the page. You can find better explanations of the templating language <a title="SilverStripe Documentation" href="http://doc.silverstripe.org/">here</a>.</p>
<p>We need to create only one page-specific template &#8211; the PortfolioHolder.ss template. We do not need a PortfolioPage template, as we are displaying all portfolio items on one page.</p>
<p>The PortfolioHolder.ss template is as follows:</p>
<pre class="brush: xml;">&lt;div class=&quot;hr grid_12 clearfix&quot;&gt;&amp;nbsp;&lt;/div&gt;

		&lt;!-- Catch Line and Link --&gt;
			&lt;h2 class=&quot;grid_12 caption clearfix&quot;&gt;My &lt;span&gt;portfolio&lt;/span&gt; is pretty darn awesome, don't you think?&lt;/h2&gt;

		&lt;div class=&quot;pr grid_12 clearfix&quot;&gt;&amp;nbsp;&lt;/div&gt;
        &lt;% control Children %&gt;
        	&lt;div class=&quot;grid_3 textright&quot; &gt;
				&lt;span class=&quot;meta&quot;&gt;$NavSubTitle&lt;/span&gt;
				&lt;h4 class=&quot;title &quot;&gt;$Title&lt;/h4&gt;
				&lt;div class=&quot;hr clearfix dotted&quot;&gt;&amp;nbsp;&lt;/div&gt;
				&lt;p&gt;$Content&lt;/p&gt;
			&lt;/div&gt;
            &lt;div class=&quot;grid_9&quot;&gt;
				&lt;% control PortfolioProjects %&gt;
				&lt;a class=&quot;portfolio_item float thickbox&quot; href=&quot;$Fullsize.URL&quot; title=&quot;$Caption&quot;&gt;
				&lt;em&gt;$Title&lt;/em&gt;
                &lt;img src=&quot;$Thumbnail.URL&quot; /&gt;
				&lt;/a&gt;
				&lt;% end_control %&gt; &lt;!--end PortfolioProjects --&gt;
            &lt;/div&gt;
            &lt;% end_control %&gt;&lt;!--end Children--&gt;
		&lt;/div&gt;</pre>
<p>What we are doing here is looping through the page&#8217;s children (the PortfolioPages), displaying their info and then looping through the dataobjects (PortfolioProjects) that we have associated with each of those pages. We use the $FullSize.URL method of retrieving the images, so that we can add alt text to our images.</p>
<p>This file goes in the Templates/Layout folder. I am leaving the rest of the theming to you, but now you know how to set up all the crucial bits for your portfolio.</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/finish-your-silverstripe-portfolio/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a web portfolio using SilverStripe</title>
		<link>http://purpleurbia.com/building-a-web-portfolio-using-silverstripe/</link>
		<comments>http://purpleurbia.com/building-a-web-portfolio-using-silverstripe/#comments</comments>
		<pubDate>Wed, 19 May 2010 14:19:04 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[SilverStripe]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[2.4]]></category>
		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=564</guid>
		<description><![CDATA[I know, we all love WordPress, but sometimes, you just need to try something else.
The inspiration for this post is OrigninalMoxie. It is my personal portfolio, and I built it in SilverStripe in about half the time it would have taken me in WordPress &#8211; and it is only the third SilverStripe site that I [...]]]></description>
			<content:encoded><![CDATA[<p>I know, we all love WordPress, but sometimes, you just need to try something else.</p>
<p><span id="more-564"></span>The inspiration for this post is <a href="http://originalmoxie.net/">OrigninalMoxie</a>. It is my personal portfolio, and I built it in SilverStripe in about half the time it would have taken me in WordPress &#8211; and it is only the third SilverStripe site that I have built. Now, I did get help from their community when building this site, but that is quite OK. I am going to pass their insights on to you.</p>
<p>What first needs to happen is you need to install SilverStripe. It is almost as easy to install as WordPress, but it actually requires a few extras.</p>
<p>To be able to run SilverStripe, you need to have PHP5 enabled on your server. And, you might need a little bit of patience.</p>
<p>First, download SilverStripe and upload it to your webhost. Navigate to yoursite.com and follow the install directions. For the record I am pretty sure that it always says that it cannot determine if Mod_Rewrite is enabled. (At least on MediaTemple).</p>
<p>Once you have your shiny new installation of SilverStripe up and running, it is time for the fun stuff&#8230;writing the PHP functions that make the site work. This is the beauty of SilverStripe &#8211; the ability to write custom data &amp; page types with a few lines of code.</p>
<p>You will also need to install the <a title="SilverStripe Dataobjectmanager" href="http://www.silverstripe.org/dataobjectmanager-module/">Dataobjectmanager</a> and <a title="SilverStripe SWF upload" href="http://www.silverstripe.org/swfuploadfield-module/">SWFupload</a> modules. To install, simply download them and upload them into your main directory and run yoursite.com/dev/build. You will need to rename them to dataobject_manager and swfupload before running the dev/build.</p>
<p>Now that those are installed, we can move on to building the site.  (I am also assuming that you have written your HTML/CSS and that your site is designed). I find it is always best to write the HTML/CSS before delving into the PHP. If it doesn&#8217;t work when the page is static, it is definitely not going to work once you start messing around with the theme.</p>
<p>Time for the PHP! (For this example, I am assuming that you have only one page for your portfolio, but that your work is divided into multiple categories)</p>
<p>We start by determining how we are going to display our data. In this example we want to break down our work into categories. But, the beauty of this is that we don&#8217;t have to go writing data types for each category. We are going to create the following files:</p>
<ul>
<li>PortfolioProject.php</li>
<li>PortfolioPage.php</li>
<li>PortfolioHolder.php</li>
</ul>
<p>PortfolioProject is not a page, it is a dataobject, and it is the most specific of our files. This file creates the live entry for each portfolio piece that appears on your site. PortfolioPage is essentially the category. This means that if you ever want to change your portfolio so that pieces for each category are on their own page, you can. PortfolioHolder is the page that will display the content from all of its children (the portfolio pages).</p>
<p>Confused yet?</p>
<p>Let&#8217;s start by creating the PortfolioProject.php file.</p>
<pre class="brush: php;">
&lt;?php
class PortfolioProject extends DataObject
{
static $db = array (
'Title' =&gt; 'Text',
'Caption' =&gt; 'Text'
);
static $has_one = array (
'PortfolioPage' =&gt; 'PortfolioPage',
'Thumbnail' =&gt; 'Image',
'FullSize' =&gt; 'Image'
);

static $summary_fields = array (
'Title' =&gt; 'Title',
'Caption' =&gt; 'Caption'
);

public function getCMSFields()
{
return new FieldSet(
new TextField('Title'),
new TextareaField('Caption'),
new ImageField('Thumbnail'),
new ImageField('FullSize','Full size image')
);
}
}
?&gt;
</pre>
<p>We just created a custom dataobject. Pretty cool, eh? We also told the system what fields we need to be able to edit on the front end. Copy your file to the mysite/code folder and go to yoursite.com/dev/build to create the page type in the database and make sure there are no errors.</p>
<p>Now the PortfolioPage (or category):</p>
<pre class="brush: php;">
&lt;?php
class PortfolioPage extends Page
{
static $has_many = array (
'PortfolioProjects' =&gt; 'PortfolioProject',
);

public function getCMSFields() {
$f = parent::getCMSFields();
$f-&gt;addFieldToTab(&quot;Root.Content.Portfolio Projects&quot;, new ImageDataObjectManager($this,'PortfolioProjects','PortfolioProject','Thumbnail', 'Category'));
return $f;
}
}

class PortfolioPage_Controller extends Page_Controller
{
}
?&gt;
</pre>
<p>Copy your file again to the mysite/code folder and go to yoursite.com/dev/build to create the page type in the database and make sure there are no errors.</p>
<p>And finally the Portfolio Holder. This page is going to aggregate the information from its child pages.</p>
<pre class="brush: php;">
&lt;?php
class PortfolioHolder extends Page
{
static $allowed_children = array(
	'PortfolioPage'
);
}

class PortfolioHolder_Controller extends Page_Controller
{ 

}
?&gt;
</pre>
<p>We have now written our &#8220;Holder&#8221; page.</p>
<p>Copy your file again to the mysite/code folder and go to yoursite.com/dev/build to create the page type in the database and make sure there are no errors.</p>
<p>Check back later this week for how to enter your data and then show it in a template.</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/building-a-web-portfolio-using-silverstripe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome back with Business Cards from UPrinting!</title>
		<link>http://purpleurbia.com/welcome-back-with-business-cards-from-uprinting/</link>
		<comments>http://purpleurbia.com/welcome-back-with-business-cards-from-uprinting/#comments</comments>
		<pubDate>Wed, 19 May 2010 13:14:49 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Contest]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=569</guid>
		<description><![CDATA[UPrinting is giving me some business cards to give away as a congrats on finishing design school. Pretty awesome, eh?
CONTEST IS CLOSED!
These are the folks who handle my printing services (and most of my clients&#8217; printing). I have never been disappointed with what arrived from them. They even have a picture of my business cards [...]]]></description>
			<content:encoded><![CDATA[<p>UPrinting is giving me some business cards to give away as a congrats on finishing design school. Pretty awesome, eh?<span id="more-569"></span></p>
<h3>CONTEST IS CLOSED!</h3>
<p>These are the folks who handle my <a href="http://www.uprinting.com/ ">printing services</a> (and most of my clients&#8217; printing). I have never been disappointed with what arrived from them. They even have a picture of my business cards on their Yelp! page&#8230;Their <a href="http://www.uprinting.com/Business-Cards.html ">color business cards</a> are always spot on with what I sent.</p>
<h3>To enter:</h3>
<p>Leave a comment here.<br />
Tweet this post with @purpleurbia and @uprinting mentioned.<br />
Leave a comment on our Facebook page.<br />
(you may enter once via each method for a total of three entries)</p>
<h3>Giveaway Prize:</h3>
<p>500 Business Cards<br />
2 x 3.5”, 2 x 2” (square card) or 1.75 x 3.5” (slim card)<br />
14 pt gloss cardstock, 14 pt matte cardstock or 13 pt recycled uncoated cardstock<br />
Full Color Both Sides; Offset Press; 3 Business Day Printing<br />
Shipping: FREE UPS Ground Shipping<br />
Eligibility: Limited to US Residents only. Must be 18 years old and up.</p>
<p><strong>Contest ends May 22.</strong><br />
<a href="http://www.uprinting.com/Business-Cards.html"><img class="aligncenter size-full wp-image-571" title="bcards" src="http://purpleurbia.com/wp-content/uploads/2010/05/bcards.png" alt="" width="550" height="314" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/welcome-back-with-business-cards-from-uprinting/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve seen it all before.</title>
		<link>http://purpleurbia.com/ive-seen-it-all-before/</link>
		<comments>http://purpleurbia.com/ive-seen-it-all-before/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 21:23:53 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=531</guid>
		<description><![CDATA[Web design galleries are starting to all look the same. Web sites featured for their &#8220;design&#8221; simply look like the &#8220;designer&#8221; followed a tutorial. I am starting to see a decrease in original ideas and an increase in copied design.

Please don&#8217;t hate me for calling these folks out. There is nothing inherently bad about their [...]]]></description>
			<content:encoded><![CDATA[<p>Web design galleries are starting to all look the same. Web sites featured for their &#8220;design&#8221; simply look like the &#8220;designer&#8221; followed a tutorial. I am starting to see a decrease in original ideas and an increase in copied design.</p>
<p><span id="more-531"></span></p>
<p>Please don&#8217;t hate me for calling these folks out. There is nothing inherently <em>bad</em> about their sites. However, the layots &amp; graphic elements are becoming all too common from one site to the next. These are all well put together examples, and to someone who doesn&#8217;t read 30 design blogs everyday, they look pretty darn good. But are they worthy of being showcased for their individuality? Probably not.</p>
<h3>&#8220;3 bar&#8221; layout</h3>
<p>Here are 5 sites with the &#8220;3 bar&#8221; layout &#8211; a top nav with a logo, a middle bar with headline content and main content below that. Usually the top nav is in a dark grey, the middle is a bright blue or green and the bottom is a light color.</p>
<p><a href="http://www.solidshops.com/"><img class="aligncenter size-full wp-image-533" title="solidshops" src="http://purpleurbia.com/wp-content/uploads/2010/01/solidshops.jpg" alt="Solid Shops" width="550" height="314" /></a></p>
<p><a href="http://www.solidshops.com/">http://www.solidshops.com/</a> &#8211; This layout has become ubiquitous with web apps. I could have filled 5 blog posts with web apps that use this style and layout. It looks clean and professional, but gets an F for layout originality.</p>
<p><a href="http://niagakit.com/"><img class="aligncenter size-full wp-image-532" title="nigakit" src="http://purpleurbia.com/wp-content/uploads/2010/01/nigakit.jpg" alt="nigakit" width="550" height="314" /></a></p>
<p><a href="http://niagakit.com/">http://niagakit.com/</a> &#8211; Same as above.</p>
<p><a href="?http://www.proudcloud.net/"><img class="aligncenter size-full wp-image-534" title="proudcloud" src="http://purpleurbia.com/wp-content/uploads/2010/01/proudcloud.jpg" alt="Proud Cloud" width="550" height="314" /></a></p>
<p>?<a href="http://www.proudcloud.net/">http://www.proudcloud.net/</a></p>
<p><a href="http://www.yaronschoen.com/"><img class="aligncenter size-full wp-image-536" title="yaron" src="http://purpleurbia.com/wp-content/uploads/2010/01/yaron.jpg" alt="Yaron Schoen" width="550" height="314" /></a></p>
<p><a href="http://www.yaronschoen.com/">http://www.yaronschoen.com/</a> &#8211; At least the illustrations and breaking of the grid make up for the standard layout used.</p>
<p><a href="http://www.nabru.co.uk/"><img class="aligncenter size-full wp-image-537" title="nabru" src="http://purpleurbia.com/wp-content/uploads/2010/01/nabru.jpg" alt="Nabru" width="550" height="314" /></a></p>
<p><a href="http://www.nabru.co.uk/">http://www.nabru.co.uk/</a> &#8211; Again, it looks clean and professional and the elements add a more organic feel, but the layout is still too out-of-the-box for me.</p>
<p>Here is where to go to learn how to do this effect:</p>
<p><a title="Tutorial at PSD tuts +" href="http://psd.tutsplus.com/news/new-plus-tutorial-designing-a-family-of-websites/">PSD Tuts+ &#8211; How to design a family of websites</a></p>
<p>And, here is how to do it right:</p>
<p><a href="http://madebygiant.com/"><img class="aligncenter size-full wp-image-541" title="giantcreative" src="http://purpleurbia.com/wp-content/uploads/2010/01/giantcreative.jpg" alt="Giant Creative" width="550" height="314" /></a></p>
<p><a href="http://madebygiant.com/">http://madebygiant.com/</a> &#8211; Giant Creative has taken this layot and made it their own simply by making their navigation &#8220;talk&#8221;. The bright colors contrast with the neutral background. The superb typography makes the design shine.</p>
<p><a href="http://www.stanleysolutions.in/"><img class="aligncenter size-full wp-image-542" title="stanleysolutions" src="http://purpleurbia.com/wp-content/uploads/2010/01/stanleysolutions.jpg" alt="Stanley Solutions" width="550" height="314" /></a></p>
<p><a href="http://www.stanleysolutions.in/">http://www.stanleysolutions.in/</a> &#8211; This site is broken into those same 3 visual sections, but the diagonal lines on the center text box as well as the lack of line dividing the nav and the feature area make this site own its design.</p>
<h3>The pinking shear effect.</h3>
<p>I like textured edges as much as the next guy. Heck, I probably like sewing and handmade edges more than the next guy. But it has become an over-used design trend. Evidence below:</p>
<p><a href="https://epicevent.com.au/"><img class="aligncenter size-full wp-image-540" title="epicevent" src="http://purpleurbia.com/wp-content/uploads/2010/01/epicevent.jpg" alt="Epic Event" width="550" height="314" /></a></p>
<p><a href="https://epicevent.com.au/">https://epicevent.com.au/</a> &#8211; To me this site is overdone and Photoshop heavy. The overall effect is nice, but there is just one too many effects here.</p>
<p><a href="http://www.stthomasartgallery.org/"><img class="aligncenter size-full wp-image-539" title="stthomas" src="http://purpleurbia.com/wp-content/uploads/2010/01/stthomas.jpg" alt="St. Thomas Art Gallery" width="550" height="314" /></a></p>
<p><a href="http://www.stthomasartgallery.org/">http://www.stthomasartgallery.org/</a> &#8211; You cannot take pinking shears to wood. The zig-zag line makes little to no sense here. No background behind the nav and darker text would have made more sense.</p>
<div id="attachment_543" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.culinaryculture.com/"><img class="size-full wp-image-543" title="culinaryculture" src="http://purpleurbia.com/wp-content/uploads/2010/01/culinaryculture.jpg" alt="" width="550" height="314" /></a><p class="wp-caption-text">Culinary Culture</p></div>
<p><a href="http://www.culinaryculture.com/">http://www.culinaryculture.com/</a>- This one has me on cute overload. This is another case where someone needed to turn off 30% of the Photoshop effects. It isn&#8217;t bad, but it isn&#8217;t terribly awesome either.</p>
<p>Here is where to go to learn how to do this effect:</p>
<p><a title="Tutorial on Grafpedia" href="http://www.grafpedia.com/tutorials/create-unique-wordpress-theme">Grafpedia &#8211; Design a unique WordPress theme</a></p>
<p><a title="Tutorial at Grafpedia" href="http://www.grafpedia.com/tutorials/create-gritty-website-layout">Grafpedia &#8211; Gritty website design</a></p>
<p>And here is how to do it right:</p>
<p><a href="http://analog.coop/"><img class="aligncenter size-full wp-image-538" title="analog" src="http://purpleurbia.com/wp-content/uploads/2010/01/analog.jpg" alt="Analog" width="550" height="314" /></a></p>
<p><a href="http://analog.coop/">http://analog.coop/</a> &#8211; The effect is used sparingly. And tastefully. It adds to the design without being an over-powering element.</p>
<p>In conclusion, the web design world is slowly being over taken by what is &#8220;trendy&#8221;. And, yes, it can still be good design even if it is &#8220;trendy&#8221;. What you want is a site that acknowledges the trends in the industry and then takes them and makes them their own, instead of letting the trends take control.</p>
<p>That being said, all of the websites here are designed well (I don&#8217;t like ugly websites, and don&#8217;t want to call out people for having terrible skills, just doing what is &#8220;trendy&#8221; or &#8220;typical&#8221;), some are just more original than others. These sites were all put together by designers with tremendous skill. Some are just a little too attached to the bandwagon.</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/ive-seen-it-all-before/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Effective launch pages</title>
		<link>http://purpleurbia.com/effective-launch-pages/</link>
		<comments>http://purpleurbia.com/effective-launch-pages/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:23:43 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=350</guid>
		<description><![CDATA[Your brand identity ready? Check. Marketing strategy in place? Check Ready to start selling products? Check. Well, sort of. Your website isn&#8217;t ready. You still have another 3-4 weeks before your scheduled completion date, but you have started mentioning your company or product (or heck, your project) to other people.
What should you do? You should [...]]]></description>
			<content:encoded><![CDATA[<p>Your brand identity ready? Check. Marketing strategy in place? Check Ready to start selling products? Check. Well, sort of. Your website isn&#8217;t ready. <span id="more-350"></span>You still have another 3-4 weeks before your scheduled completion date, but you have started mentioning your company or product (or heck, your project) to other people.</p>
<p>What should you do? You should have a landing page! One that lets people know that you are getting ready, and if you know a tentative launch date. You have probably purchased your domain name well in advance of your site, and having some information on the site will probably be handy if it comes up in a search.And with a launch page in place, you don&#8217;t need to be afraid of passing out your card with your yet to be unveiled site on it.</p>
<p>Things that you should include on your page:</p>
<ul>
<li>A way to contact you (e-mail, phone, etc. for those looking for your services or information quickly)</li>
<li>An e-mail sign-up list. E-mail marketing is critical, and a <a title="MailChimp E-mail Marketing" href="http://eepurl.com/exmD">MailChimp</a> account is free for up to 500 subscribers there is a pre-built subscribe form that you can style to your heart&#8217;s content.</li>
<li>Information about who you are and what you do. This is kind of basic, but a paragraph or two will do.</li>
<li>Social media links. Your Facebook, Twitter, LinkedIn, etc. profiles (if you have them) should all be hooked up here. It is time to find yourself some fans.</li>
<li>A look and feel that is similar to what you are going for on the final site. It doesn&#8217;t have to be exact, but it shouldn&#8217;t go from web 2.0 to grunge.</li>
</ul>
<p>There are a couple of free WordPress themes out there that do this (such as <a href="http://themeshaper.com/wordpress-domain-parking-theme/">LaunchPad</a> and <a href="http://wordprezzie.com/changing-room/">Changing Room</a>) to get you started.</p>
<p>To all you designers, this should be something you consider adding to your standard offering. Up your price by a couple hundred dollars, but add this to your package and explain the SEO benefits and marketing benefits to your clients, and they will appreciate your knowledge! And the extra hour it will take will pay off!</p>
<p>(header image credit : <a href="http://www.flickr.com/photos/denniswong/3582196958/">Dennis Wong</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/effective-launch-pages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thirsty Thursday: A roundup of beautiful brewery sites</title>
		<link>http://purpleurbia.com/a-roundup-of-beautiful-brewery-sites/</link>
		<comments>http://purpleurbia.com/a-roundup-of-beautiful-brewery-sites/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 07:46:58 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Inspiration. Design]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=297</guid>
		<description><![CDATA[Since I feel like Thursday is the hardest day of the week to go to work, I would love to buy you all a round.And since that really isn&#8217;t feasible, I thought I would bring you a round of well designed brewery websites for some design inspiration.
Brooklyn Brewery
This site is just like walking into my [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-297"></span>Since I feel like Thursday is the hardest day of the week to go to work, I would love to buy you all a round.And since that really isn&#8217;t feasible, I thought I would bring you a round of well designed brewery websites for some design inspiration.</p>
<p style="text-align: left;"><a href="http://www.brooklynbrewery.com/">Brooklyn Brewery</a></p>
<div id="attachment_298" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.brooklynbrewery.com/"><img class="size-full wp-image-298  " title="brooklyn" src="http://purpleurbia.com/wp-content/uploads/2009/10/brooklyn.jpg" alt="Brooklyn Brewery" width="550" height="314" /></a><p class="wp-caption-text">Brooklyn Brewery</p></div>
<p>This site is just like walking into my favorite pub, dark and green. The logo is even in the form of a neon sign. Well done.<br />
<a href="http://www.bridgeportbrew.com/">Bridgeport Brewing Co.</a></p>
<div id="attachment_299" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.bridgeportbrew.com/"><img class="size-full wp-image-299" title="bridgeport" src="http://purpleurbia.com/wp-content/uploads/2009/10/bridgeport.jpg" alt="Bridgeport Brewing Co" width="550" height="314" /></a><p class="wp-caption-text">Bridgeport Brewing Co</p></div>
<p>This site is gritty and collage-y with out being over-done or un-done. The animation flows seamlessly and the look is cohesive from top to bottom.<br />
<a href="http://www.bardsbeer.com/">Bard&#8217;s Beer</a></p>
<div id="attachment_300" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.bardsbeer.com/"><img class="size-full wp-image-300" title="bards" src="http://purpleurbia.com/wp-content/uploads/2009/10/bards.jpg" alt="Bard's Beer" width="550" height="314" /></a><p class="wp-caption-text">Bard&#39;s Beer</p></div>
<p style="text-align: left;">Here the look is completely different from the first two. Light and bright the site showcases the beer in the middle. The beer bottles act as navigation (some would call this mystery meat navigation, but the navigation is duplicated on the right of the screen so you can easily navigate if you don&#8217;t catch on to the bottles).<br />
<a href="http://www.macsbeer.com/">MacTarnahan&#8217;s</a></p>
<div id="attachment_301" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.macsbeer.com/"><img class="size-full wp-image-301" title="macs" src="http://purpleurbia.com/wp-content/uploads/2009/10/macs.jpg" alt="MacTarnahan's" width="550" height="314" /></a><p class="wp-caption-text">MacTarnahan&#39;s</p></div>
<p>Lovely, vintage-y and my second favorite color, green! The site has a retro feel and is just grungy enough to satisfy my need for web trends.<br />
<a href="http://www.motherearthbrewing.com/">Mother Earth Brewing</a></p>
<div id="attachment_302" class="wp-caption aligncenter" style="width: 560px"><a href="http://www.motherearthbrewing.com/"><img class="size-full wp-image-302 " title="motherearth" src="http://purpleurbia.com/wp-content/uploads/2009/10/motherearth.jpg" alt="Mother Earth Brewing" width="550" height="314" /></a><p class="wp-caption-text">Mother Earth Brewing</p></div>
<p>If life were as easy as peace love &amp; beer, the world would definitely be a better place. The site has a wonderfully clean layout, but the textured background and wheat make it feel natural, which is what I assume they were going for.</p>
<p>Hopefully the sites were inspirational. I know in researching this article, beers I know to have great labels have surprisingly terrible websites. It took a lot of digging to find these gems, mainly because I was looking for ones that were not big name sites.</p>
<p>(header image credit <a href="http://www.flickr.com/photos/tico24/16066110/sizes/l/in/photostream/">tico24</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/a-roundup-of-beautiful-brewery-sites/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jQuery UI tabs + Featured content = love</title>
		<link>http://purpleurbia.com/jquery-ui-tabs-featured-content-slider/</link>
		<comments>http://purpleurbia.com/jquery-ui-tabs-featured-content-slider/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 01:07:40 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=226</guid>
		<description><![CDATA[If I could, I might just marry jQuery. That&#8217;s right. I said it. I might just marry jQuery. Why? Because I can understand it. I can make it work. Although, it might have gotten me to the point where I can understand javascript. But, I digress. The point of today&#8217;s post? To teach you a [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-226"></span>If I could, I might just marry jQuery. That&#8217;s right. I said it. I might just marry jQuery. Why? Because I can understand it. I can make it work. Although, it might have gotten me to the point where I can understand javascript. But, I digress. The point of today&#8217;s post? To teach you a fun new trick!</p>
<p>Almost every website has a featured content slider or tabbed section of some sort, so today, we will make an auto-scrolling, fancy-schmancy featured tabbed content thingy. Which will be primed and ready for us to make add some WordPress code to next time.</p>
<p><a title="Our very cool slider thingy." href="http://purpleurbia.com/wp-content/demos/jquery-ui-tabs-slider/slider.html">Take a look at this bad boy!</a></p>
<p>We are going to start by downloading a couple of important files:</p>
<p><a title="Get jQuery" href="http://jquery.com/">jQuery</a></p>
<p><a title="Get jQuery UI" href="http://jqueryui.com/download">jQuery UI (the core and tabs)</a></p>
<p>Put these in your project folder/js.</p>
<p>Now create an HTML file in your root folder.</p>
<p>And create a blank stylesheet in your project folder /css.</p>
<p>Now, we need to make sure that we are calling the script files and css.</p>
<pre class="brush: xml;"> 		&lt;link type=&quot;text/css&quot; href=&quot;css/style.css&quot; rel=&quot;stylesheet&quot; /&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;js/ui.core.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;js/ui.tabs.js&quot;&gt;&lt;/script&gt;
</pre>
<p>The core and tabs js files can be found in the development folder of your download.<br />
Now, lets have some fun. In your HTML file, you will need to create an unordered list which will become the tabs, and a series of divs that will contain the corresponding content.</p>
<pre class="brush: xml;">
        &lt;div id=&quot;Container&quot;&gt;
            &lt;!-- Tabs --&gt;
            &lt;div id=&quot;tabs&quot;&gt;
                &lt;div id=&quot;tabs-1&quot; class=&quot;feature&quot;&gt;
                    &lt;h3&gt;my&lt;strong&gt;robot&lt;/strong&gt;&lt;/h3&gt;
                    &lt;p&gt;
                        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip x ea commodo consequat.
                    &lt;/p&gt;
                    &lt;img src=&quot;images/robot1-big.jpg&quot; alt=&quot;Featured Product&quot; class=&quot;bigIMG&quot; /&gt;
                &lt;/div&gt;
                &lt;div id=&quot;tabs-2&quot; class=&quot;feature&quot;&gt;
                    &lt;h3&gt;big&lt;strong&gt;robot&lt;/strong&gt;&lt;/h3&gt;
                    &lt;p&gt;
                        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquipx ea commodo consequat.
                    &lt;/p&gt;
                    &lt;img src=&quot;images/robot2-big.jpg&quot; alt=&quot;Featured Product&quot; class=&quot;bigIMG&quot; /&gt;
                &lt;/div&gt;
                &lt;div id=&quot;tabs-3&quot; class=&quot;feature&quot;&gt;
                    &lt;h3&gt;cool&lt;strong&gt;robot&lt;/strong&gt;&lt;/h3&gt;
                    &lt;p&gt;
                        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
                        dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip
                        x ea commodo consequat.
                    &lt;/p&gt;
                    &lt;img src=&quot;images/robot3-big.jpg&quot; alt=&quot;Featured Product&quot; class=&quot;bigIMG&quot; /&gt;
                &lt;/div&gt;
                &lt;ul id=&quot;tabby&quot;&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#tabs-1&quot;&gt;&lt;img src=&quot;images/robot1.jpg&quot; alt=&quot;robot&quot; /&gt;&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#tabs-2&quot;&gt;&lt;img src=&quot;images/robot2.jpg&quot; alt=&quot;robot&quot; /&gt;&lt;/a&gt;
                    &lt;/li&gt;
                    &lt;li&gt;
                        &lt;a href=&quot;#tabs-3&quot;&gt;&lt;img src=&quot;images/robot3.jpg&quot; alt=&quot;robot&quot; /&gt;&lt;/a&gt;
                    &lt;/li&gt;
                &lt;/ul&gt;
            &lt;/div&gt;
        &lt;/div&gt;&lt;!--end Container--&gt;</pre>
<p>This is where it gets fun! We are now going to make the slider look pretty and act the way it is supposed to.  I used Eric Meyer&#8217;s CSS reset to start with, and you probably should too.  It is followed by the styling telling the featured content how to look and finally the CSS telling the tabs how to behave.</p>
<pre class="brush: css;">
/*Reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: &quot;&quot;;
}
blockquote, q {
	quotes: &quot;&quot; &quot;&quot;;
}
/*End Reset*/
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height::21px;
}
#Container {
	width:960px;
	margin-left:auto;
	margin-right: auto;
	position:relative;
}
.clrBOTH {
	clear:both
}
img {
	border: none;
	}

#tabs {
	background-color: #6cb9c7;
	height:275px;
	padding-top: 25px;
}
.feature p {
	color: #ffffff;
	float:left;
	font-size: 1.166667em;
	margin-left:30px;
	margin-right:30px;
	line-height: 1.5em;
	width: 520px;
}
.feature h3 {
	color:#ffffff;
	float:left;
	font-size: 2em;
	font-weight:normal;
	line-height: 0.875em;
	margin-top:00px;
	margin-left:30px;
	margin-bottom:10px;
	width: 620px;
}

.bigIMG {
	margin-left:20px;
}
#tabby {
	position:absolute;
	left:0px;
	bottom:-75px;}
/* Tabs
----------------------------------*/
.ui-tabs {
    padding: 0em;
    zoom: 1;
	z-index: 100;
}

.ui-tabs .ui-tabs-nav {
    list-style: none;
    position: relative;
    padding: 0em 0em 0;
}

.ui-tabs .ui-tabs-nav li {
    position: relative;
    float: left;
    border-bottom-width: 0 !important;
    margin-top:5px;
	margin-left:0px;
	margin-right:0px;
	margin-bottom:0px;
    padding: 0;
}

.ui-tabs .ui-tabs-nav li a {
    float: left;
	text-align: center;
    text-decoration: none;
    padding-top:30px;
	width:320px;
	color: #ffffff;
	height:75px;
	font-size: 1.5em;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
	background-image: url('../images/arrow.png');
	background-repeat: no-repeat;
    padding-bottom: 0px;
    border-bottom-width: 0;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
    cursor: text;
}

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
    cursor: pointer;
}
 /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
    padding: 0em 0em;
    display: block;
    border-width: 0;
    background: none;
}

.ui-tabs .ui-tabs-hide {
    display: none !important;
}</pre>
<p>  Here&#8217;s why that is working: we positioned the div contianing the tabs below the content area, but allowed the padding (the area where the arrow is) to overlap. We set the arrow to be a background image on the selected li (the selected class will be applied by the jQuery. Pretty nifty, eh? Meh, that&#8217;s alright, but it is still lacking a little magic. We want it to cycle through the featured content automatically, all sexy and such. How do we do that? We add a little bit more javascript!</p>
<pre class="brush: jscript;">$(function(){
 
    $('#tabs').tabs({ fx: { opacity: 'toggle' } }).tabs('rotate', 2000);
    
   });</pre>
<p> Make sure to wrap that in &lt;script&gt; tags or put it in an external js file and link to it after your other files. And, voila! You have now made our slider! Hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/jquery-ui-tabs-featured-content-slider/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Get real.</title>
		<link>http://purpleurbia.com/get-real/</link>
		<comments>http://purpleurbia.com/get-real/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 02:53:47 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Hello]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Starting Up]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=151</guid>
		<description><![CDATA[Making it online means working it off line, and we are here to help.  This blog is an off-shoot of a wee little start-up outside Chicago and we are making that start-up work. It has a small staff of young professionals who didn&#8217;t have a vast professional network to tap into when they started. And, [...]]]></description>
			<content:encoded><![CDATA[<p>Making it online means working it off line, and we are here to help.  <span id="more-151"></span>This blog is an off-shoot of a wee little start-up outside Chicago and we are making that start-up work. It has a small staff of young professionals who didn&#8217;t have a vast professional network to tap into when they started. And, frankly, putting up a website and hoping that some good SEO and an AdWords campaign were going to be enough just wasn&#8217;t going to cut it.</p>
<p>No, we are not knocking those things, but we know that they are not <em>enough.</em> We understand the internet. We live on the internet. It is what we do. But it is not where our clients live. It is not what they do. We have to find them in a real world where there are real people in real business clothes with real business cards talking about real business things.</p>
<p>So, how do you go about bringing your virtual business to people in a not-so-virtual world? You start off virtually, of course. You need to make sure your LinkedIn profile is all snazzy&#8217;d up before you get going, because these not so virtual people tend to hang out in this one virtual environment.</p>
<p>Ok, now for our 12-step Get Real Virtual Program:</p>
<ol>
<li><strong>Order business cards.</strong><br />
Paper ones that feel good when you hold them. And whatever you do DO NOT GET THE FREE ONES FROM VISTA PRINT. (Sorry to have to name names). They print their logo on the back and limit you to templates that are <em>ugly.</em> Spend a little bit of money on them. If you need some inspiration check out <a href="http://creattica.com">Creattica</a>, <a href="http://cardobserver.com/">CardObserver</a> or <a href="http://flickr.com">Flickr</a>. Just make sure that your cards look as professional as you want to be taken. Try using a local printer, they might cost more, but they might be able to refer you some business in the future.</li>
<li><strong>Find a networking group.<br />
</strong>Or 10.  Find a group of local entrepreneurs or a local leads group. Local chambers of commerce are also good places to start. If you want to start this search virtually, places to start are <a href="http://linkedin.com">LinkedIn</a>, <a href="http://meetup.com">MeetUp</a> and <a href="http://networkingmonkey.com">NetworkingMonkey</a> (Chicago only). Then, go to the networking group!<strong><br />
</strong></li>
<li><strong>Find an industry group.</strong><br />
This is different than a networking group. This allows you to show you care about your industry, such as an AIGA or a WebGrrrls membership. You can become involved in your community and show off your mad skills. People take notice.  Why on earth would we build a<a href="http://twengaged.com"> twitter application</a> for free? For the karma. And the industry publicity. We know it makes us look good. Now, go make yourself look good.</li>
<li><strong>Go speak.<br />
</strong>To a women&#8217;s group. A high school. It really doesn&#8217;t matter to who. Just start talking to people. If you go talk about your career path at a high school there is always the possibilty that the right kid was listening and has the parents who own a company who need a website. Or, there is the karma thing again. Next time the school needs a website you might just find yourself first in line. <strong><br />
</strong></li>
<li><strong>Meet people.</strong><br />
Go to small businesses in your area and introduce yourself. Schedule informational meetings. Be genuinely interested in the services you can receive in your own home town or neighborhood. People like to help locals, it&#8217;s true. I promise. If you make a point of meeting 10 new people every day, your business will grow beyond belief.</li>
<li><strong>Host a seminar.</strong><br />
But don&#8217;t do it just to sell. Do it to teach. If you give a little of yourself people will appreciate you. They might even pay for your knowledge. If you host a free seminar, people still need to feel like they came and learned something and not that they came to hear a sales pitch.  Their time is valuable, make sure they have something (knowledge) to take away.</li>
<li><strong>Communicate.</strong><br />
Wether you send postcards, flowers, promo items or e-mails make sure you stay in touch with all of your contacts and clients on a regular basis.  They need to hear from you.  You need to keep them close, so that you stay top of mind.</li>
<li><strong>Advertise.</strong><br />
Again, it can be a promo item or a newspaper ad, or an ad on an industry news site, but it has to reach the contacts that you are trying to make. It has to show them value. If a USB drive to 25 people with your logo has more value to your potential clients than an ad in an industry publication, then come up with a targeted list, make appointments and give away some presents. This is different than communicating because you are reaching people who you do not currently have a relationship with.</li>
<li><strong>Volunteer<br />
</strong>Do something that has absolutely nothing to do with your business. Just get out there and help people. It might be a soup kitchen, a BEDS program, Project Linus (we might be partial to them), or just about anything else, but get out there and do something with no agenda. The people you meet know people. And the karma points here are the best.<strong><br />
</strong></li>
<li><strong>Go back to that networking group.<br />
</strong>Over and over again. Become a regular. Get to know people. Make people think you are successful before you are successful by being there and always talking about how you are successful.  People like to do business with successful people. <strong><br />
</strong></li>
<li><strong>Approach your current clients<br />
</strong>Notice how we waited til almost the end for this one? There is a reason for that. If you wait to approach them until you have a lot of them, you have probably not done work for some of them for a while. It could be high time to offer some updates or some social media work (a twitter background perhaps?)<strong><br />
</strong></li>
<li><strong>Go get some coffee!<br />
</strong>All that hard work deserves a break! And some coffee. And time to make sure that all of those real world contacts are connected to you virtually. Via e-mail, on your e-mail marketing list, linked up on linked in, friended or fanned on Facebook, followed on twitter and entered into a contact management database (<a href="http://37signals.com">Highrise</a>, <a href="http://salesforce.com">Salesforce</a>, etc.)<strong><br />
</strong></li>
</ol>
<p>(Image credit: <a href="http://www.flickr.com/photos/batgirlbob/">BatgirlBob</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/get-real/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>10 web design blogs you should be following</title>
		<link>http://purpleurbia.com/10-web-blogs-to-follow/</link>
		<comments>http://purpleurbia.com/10-web-blogs-to-follow/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 14:22:40 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=133</guid>
		<description><![CDATA[There is a wealth of information out there on the internet. There is a lot of good information, and there is a ridiculous amount of bad and out dated information. And in this field, that just won&#8217;t do. You need to know that the information you are reading reflects current technology, trends and legislation. Whew. [...]]]></description>
			<content:encoded><![CDATA[<p>There is a wealth of information out there on the internet. There is a lot of good information, and there is a ridiculous amount of bad and out dated information. <span id="more-133"></span>And in this field, that just won&#8217;t do. You need to know that the information you are reading reflects current technology, trends and legislation. Whew. How do you know that blog you stumbled upon with a hack to make WordPress do what you want is really going about it in the best possible way? Well you hope you know enough to spot a hack, or you take them at their word.</p>
<p>We thought we could help point you in the direction of some good folks who know what they are talking about.</p>
<h3><a href="http://smashingmagazine.com">Smashing Magazine</a></h3>
<p><a href="http://smashingmagazine.com"><img class="size-full wp-image-135" title="Smashing Magazine" src="http://purpleurbia.com/wp-content/uploads/2009/10/smashing.jpg" alt="Smashing Magazine" width="550" height="314" /></a><br />
I would say they are one of the leading authorities on the internet well, on the internet. With articles covering everything from WordPress to CSS to HTML 5 to Design Inspiration they are a good reference for all designers and developers out there.</p>
<h3><a href="http://buildinternet.com/">Build Internet</a></h3>
<p><a href="http://buildinternet.com"><img class="size-full wp-image-136" title="buildinternet" src="http://purpleurbia.com/wp-content/uploads/2009/10/buildinternet.jpg" alt="Build Internet" width="550" height="314" /></a><br />
This blog is only about a year old, but they have some handy tutorials and excellent tips. There are series of &#8220;5 minute upgrades&#8221; and &#8220;Website Anatomy&#8221; which are great reads. I particularly like their color inspirations.</p>
<h3><a href="http://webitect.net/">Webitect<br />
</a></h3>
<p><a href="http://webitect.net/"> </a><a href="http://webitect.net"><img class="size-full wp-image-137" title="webitect" src="http://purpleurbia.com/wp-content/uploads/2009/10/webitect.jpg" alt="Webitect" width="550" height="314" /></a><br />
I recently discovered this blog and am enjoying discovering articles on it. There is a wide range of tutorials and design inspiration and it is the second blog on the list written by a college student. (Sure makes us feel old!)</p>
<h3><a href="http://www.webdesignerdepot.com/">Web Designer Depot</a></h3>
<p><a href="http://webdesignerdepot.com"><img class="size-full wp-image-138" title="depot" src="http://purpleurbia.com/wp-content/uploads/2009/10/depot.jpg" alt="Web Designer Depot" width="550" height="314" /></a><br />
The illustration on this one just mezmirizes me. But it is a good source of tutorials, web design trends and general articles.</p>
<h3><a href="http://jqueryfordesigners.com/">jQuery for Designers</a></h3>
<p><a href="http://jqueryfordesigners.com"><img class="size-full wp-image-140" title="jquery" src="http://purpleurbia.com/wp-content/uploads/2009/10/jquery.jpg" alt="jQuery for Designers" width="550" height="314" /></a><br />
Everyone should know some javascript, it makes your website do a little pop. And this is a great resource for someone just starting out with jQuery (it is our preferred javascripting method).</p>
<h3><a href="http://http://www.blog.spoongraphics.co.uk/">Blog.SpoonGraphics<br />
</a></h3>
<p><a href="http://www.blog.spoongraphics.co.uk"><img class="size-full wp-image-142" title="spoon" src="http://purpleurbia.com/wp-content/uploads/2009/10/spoon.jpg" alt="blog.SpoonGraphics" width="550" height="314" /></a><br />
Freebies. High quality design tutorials.  The kind of stuff you actually want to reproduce.</p>
<h3><a href="http://www.bittbox.com/">BittBox</a></h3>
<p><a href="http://bittbox.com"><img class="size-full wp-image-144" title="bittbox" src="http://purpleurbia.com/wp-content/uploads/2009/10/bittbox.jpg" alt="BittBox" width="550" height="314" /></a><br />
An excellent repository of freebies. There is an amazing collection of free Photoshop brushes on the blog and he gives out new free textures every Tuesday.</p>
<h3><a href="http://net.tutsplus.com/">Net.Tutsplus </a></h3>
<p><a href="http://net.tutsplus.com"><img class="size-full wp-image-145" title="nettuts" src="http://purpleurbia.com/wp-content/uploads/2009/10/nettuts.jpg" alt="Net.tutsplus" width="550" height="314" /></a><br />
A great place for tutorials on some more complicated web stuff. PHP frameworks, interacting with the twitter API and OOP are all covered here.</p>
<h3><a href="http://www.fuelyourcreativity.com/">Fuel your Creativity<br />
</a></h3>
<p><a href="http://fuelyourcreativity.com"><img class="size-full wp-image-146" title="fuel" src="http://purpleurbia.com/wp-content/uploads/2009/10/fuel.jpg" alt="Fuel your Creativity" width="550" height="314" /></a><br />
This blog is written by an ever growing community of writers. Topics are as varied as the writers and has everything from tutorials to</p>
<p>Purpleurbia &#8211; We couldn&#8217;t leave out ourselves! This fledgling blog will continue to bring you 3-5 articles a week including tutorials, roundups and freebies.</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/10-web-blogs-to-follow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A present for you!</title>
		<link>http://purpleurbia.com/a-present-for-you/</link>
		<comments>http://purpleurbia.com/a-present-for-you/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 16:24:45 +0000</pubDate>
		<dc:creator>mary fran</dc:creator>
				<category><![CDATA[Contest]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://purpleurbia.com/?p=128</guid>
		<description><![CDATA[UPrinting is giving us another present to give you! (Ok, so they are giving away one for us and one for you, but, hey, we both win, right?)
This time it is their business cards! We actually bought our company&#8217;s cards from there before they started giving us stuff to give away for free. Here is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://uprinting.com">UPrinting</a> is giving us another present to give you! (Ok, so they are giving away one for us and one for you, but, hey, we both win, right?)<span id="more-128"></span></p>
<p>This time it is their <a href="http://www.uprinting.com/Business-Cards.html">business cards</a>! We actually bought our company&#8217;s cards from there before they started giving us stuff to give away for free. Here is a picture:</p>
<div class="wp-caption aligncenter" style="width: 510px"><a href="http://www.uprinting.com/Business-Cards.html"><img title="Our business cards" src="http://purpleurbia.com/wp-content/uploads/2009/10/bcard1.jpg" alt="Purple Crayon Web Studio business cards" width="500" height="332" /></a><p class="wp-caption-text">Purple Crayon Web Studio business cards</p></div>
<p>Ours our 2&#215;2&#8243;, 14pt matte cards, 4 color on both sides. We have ordered 3,000 cards like this and have yet to be unhappy with an order. We are excited to be giving some away to a lucky reader!</p>
<p><strong>Giveaway Prize:</strong><br />
250 business cards for One<span style="color: red;"> </span>Lucky Winner<span style="color: red;"> </span>(Free UPS Ground Shipping in USA)<br />
Sizes:<span> </span>2 x 3.5”, 2 x 3”, 2 x 2” (square card) or 1.5 x 3.5” (skinny card)<br />
Paper:<span> </span>14 pt gloss cardstock, 14 pt matte cardstock or 13 pt recycled uncoated cardstock<br />
Specifications: Full Color Both Sides; Offset Press; 3 Business Day Printing</p>
<h3>To enter:</h3>
<p>Comment on this post what you would use the card for (a promotion, a business card, an enclosure card, etc.). For more chances to win, tweet this giveaway @purpleurbia @uprinting with the #giveaway tag!</p>
<p>Enter by October 15, 2009!</p>
]]></content:encoded>
			<wfw:commentRss>http://purpleurbia.com/a-present-for-you/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
