<?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>propstm.net &#187; Design</title>
	<atom:link href="http://www.propstm.net/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.propstm.net</link>
	<description></description>
	<lastBuildDate>Sun, 15 Jan 2012 18:41:07 +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 use RGBA + Examples</title>
		<link>http://www.propstm.net/2009/12/09/how-to-use-rgba-examples/</link>
		<comments>http://www.propstm.net/2009/12/09/how-to-use-rgba-examples/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 18:14:13 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=324</guid>
		<description><![CDATA[Today I wanted to talk about RGBA color a bit.  Before I launch off into the post I first want to note that this will not work in all browsers.  As RGBA is something for CSS3 you may want to check this chart to see if your browser of choice is supported.  RGB color is [...]]]></description>
			<content:encoded><![CDATA[<p>Today I wanted to talk about RGBA color a bit.  Before I launch off into the post I first want to note that this will not work in all browsers.  As RGBA is something for CSS3 you may want to check <a href="http://www.css3.info/modules/compatibility-table-colour-module/" target="_blank">this chart</a> to see if your browser of choice is supported.  RGB color is a way of displaying color other than using hex values.  With the CSS3 specification designers and developers get to take RGB one step further and define an alpha or transparency value.  RGBA is a great new way that CSS3 deals with transparency.</p>
<p>Here&#8217;s a quick example of defining a value to red in both hexidecimal values and RGB</p>
<pre>em { color: #ff0000 }           /* #rrggbb */
em { color: rgb(255,0,0) }</pre>
<pre><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, -webkit-fantasy; font-size: small;"><span style="line-height: 19px; white-space: normal;">
</span></span></pre>
<pre><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, fantasy; line-height: 19px; white-space: normal; font-size: 13px;">There are several sites that already use RGBA to create some very interesting and dynamic effects.  <a href="http://24ways.org/2009/working-with-rgba-colour" target="_blank">24ways.org</a> uses RGBA to create a layered overlapping effect.  Other examples such as <a href="http://sam.brown.tc" target="_blank">Sam Brown</a>'s site uses RGBA to once again create a level of depth, and after glancing at the CSS Sam uses RGBA to change the alpha value of many of his various textual elements.  In addition Dan Cedarholm, who writes at <a href="http://simplebits.com/" target="_blank">simplebits.com</a>, and who spoke about RGBA as well as other CSS3 features in his talk on Progressive Enrichment using CSS3 at FOWA last November, uses RGBA for some of the textual elements on his site as well.</span></pre>
<p><img class="aligncenter" title="24Ways.org" src="http://propstm.net/blog_images/24ways.png" alt="" width="940" height="125" /></p>
<p><img class="aligncenter" title="sam.brown.tc" src="http://propstm.net/blog_images/sambrown.png" alt="" width="940" height="125" /></p>
<p><img class="aligncenter" title="SimpleBits.com" src="http://propstm.net/blog_images/simplebits.png" alt="" width="940" height="125" /></p>
<p>Below is a small bit of code i put together just to show how RGBA can be used.  The page changes background color and alpha value when you mouseover the paragraph.</p>
<pre>&lt;html&gt;
 &lt;head&gt;
 &lt;style type="text/css"&gt;
 p {
 width: 300px;
 padding:15px;
 background: rgba(0, 0, 255, .5);
 }

 p:hover{
 background: rgba(0, 0, 255, .75);
 }
 &lt;/style&gt;
 &lt;/head&gt;
 &lt;body&gt;
 &lt;p&gt;This is a sample paragraph that shows how RGBA works.
 This is a sample paragraph that shows how RGBA works.
 This is a sample paragraph that shows how RGBA works.&lt;/p&gt;    
 &lt;/body&gt;
&lt;/html&gt;</pre>
<p><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, -webkit-fantasy; ">From my standpoint, the thing that I really like is the fact that by replacing a normal hex value with RGBA, I define a color just the same, however I&#8217;m also given the alpha value which seems as though it could be a jumping point to many great new uses.  I think I may be doing a few more posts in this style, so let me know what you think.  Hopefully this sort example helps, and don&#8217;t be afraid to leave a comment or reach out to me on <a href="http://www.twitter.com/propstm" target="_blank">Twitter</a>.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/12/09/how-to-use-rgba-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Client Revisions Shouldn&#8217;t Be Allowed</title>
		<link>http://www.propstm.net/2009/12/07/why-client-revisions-shouldnt-be-allowed/</link>
		<comments>http://www.propstm.net/2009/12/07/why-client-revisions-shouldnt-be-allowed/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 12:00:27 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=315</guid>
		<description><![CDATA[This past week The Oatmeal had a post called How A Web Design Goes Straight To Hell.  The post got quite popular, getting on Digg and became a trending topic on Twitter.  After reading the comic and finding it quite amusing, one thing went off in my head;  that post makes one thing obvious to [...]]]></description>
			<content:encoded><![CDATA[<p>This past week The Oatmeal had a post called How A Web Design Goes Straight To Hell.  The post got quite popular, getting on Digg and became a trending topic on Twitter.  After reading the comic and finding it quite amusing, one thing went off in my head;  that post makes one thing obvious to me, client revisions are bad.  Normally these revision occur after you&#8217;ve delivered the product to the client and they want to make &#8220;tweaks&#8221;.  I&#8217;ll say I HATE that!</p>
<p>If you are doing your job correctly as a designer you a developing a creative brief for the client outlining a solution, or solutions to their problems.  By the time deliverables reach the client they should meet all requirements of the creative brief.  If the client is paying a designer to create something because the client cannot.  The client needs to know that the end product will meet the creative brief and that the designer&#8217;s work is in the best interest of the customer.</p>
<p>Client revisions should not be needed if the project is planned correctly and all requirements of the client are addressed when the designer creates the end product.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/12/07/why-client-revisions-shouldnt-be-allowed/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Learning from Failure at ThemeForest</title>
		<link>http://www.propstm.net/2009/11/29/learning-from-failure-at-themeforest/</link>
		<comments>http://www.propstm.net/2009/11/29/learning-from-failure-at-themeforest/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 23:47:10 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=292</guid>
		<description><![CDATA[Last Friday I submitted my first theme to ThemeForest.net. Last Friday my theme was denied by ThemeForest.net. Being entirely realistic my theme would either be approved or denied. Considering this was my first try at the process of theme submission for ThemeForest I had more going against me, than for me. Failure would undoubtedly be [...]]]></description>
			<content:encoded><![CDATA[<p>Last Friday I submitted my first theme to ThemeForest.net.  Last Friday my theme was denied by ThemeForest.net. Being entirely realistic my theme would either be approved or denied.  Considering this was my first try at the process of theme submission for ThemeForest I had more going against me, than for me.  Failure would undoubtedly be a learning process.</p>
<h3><strong>When I found out I&#8217;d been denied, here is what I first saw: </strong></h3>
<p>&#8220;Thanks so much for taking the time to submit this template. Unfortunately, due to our current quality standards, your template has been declined. Here are a few improvements you might consider making before resubmitting:</p>
<p>1.This template is not aesthetic ready for TF and it will be very hard to be improved and get accepted. It required many improvements in term of design, visual hierarchy, typography, layout and its aesthetic quality.<br />
2. You need to provide a more decent help file: <a href="http://blog.themeforest.net/site-news/building-better-template-documentation/" target="_blank">http://blog.themeforest.net/site-news/building-better-template-documentation/</a><br />
3. You need to provide the new wordpress GPL license within the download.&#8221;</p>
<p>That information from the email helped me greatly.  ThemeForest has content about how to create proper documentation, and also <a href="http://blog.themeforest.net/site-news/important-change-to-wordpress-license-takes-effect-today-please-read/" target="_blank">information</a> about proper licensing for WordPress.  Had I not been denied, I would not know about those resources.</p>
<h3><strong>Failure allowed me to look for constructive criticism.</strong></h3>
<p><img class="alignleft" title="Why WordPress" src="http://www.propstm.net/images/question.jpg" alt="" width="297" height="93" />After I was denied I tweeted about it.  By tweeting about it I found out people were intrigued.  People wanted to know not only why I was denied, but what I had submitted people asked for screenshots.  After sending off some screenshots and talking with a few folks the suggestions started coming back to me.  Why did I code it for WP?  Why not just a template?  A template was honestly something that was something I didn&#8217;t even think of.  I&#8217;d helped develop with a similar static version of the theme for a friend about a year ago.  The reason I&#8217;d done it in WordPress is because the static version was clumsy, &amp; my buddy liked it, but he had trouble updating his portfolio.  Choosing WordPress, I was able to modify the static version and allow users to easily add or modify their portfolio using the easy to manipulate WordPress backend.</p>
<p>After looking at my work, being honest with myself, and thinking of my reasons, I concluded one thing; The portfolio theme I created works, but it is NOT for the TF WordPress section.</p>
<h3>Drawing conclusions from my failure</h3>
<p>First off, ThemeForest is a tough site to get into.  There is a level of quality which your work must have in order to be accepted.  Everyday work just wont cut it.  Second, document the hell out of your work.  If you work gets accepted, other people will look at your work, and the WILL WONDER &#8220;What the heck was this guy thinking?&#8221;  Documentation helps answer anyone&#8217;s questions, and hopefully save you as the developer from answering those questions after the fact. Third, this is all a learning process.  I&#8217;ve learned what NOT to do, now next time I can only work to improve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/11/29/learning-from-failure-at-themeforest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future of Web Design 09 &#8211; Drawing Conclusions</title>
		<link>http://www.propstm.net/2009/11/18/future-of-web-design-09-drawing-conclusions/</link>
		<comments>http://www.propstm.net/2009/11/18/future-of-web-design-09-drawing-conclusions/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 13:30:07 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=284</guid>
		<description><![CDATA[I had a great time today at Future of Web Design.  There were a bunch of great speakers, great conversation, and great visuals.  I was very pleased with the content presented and will surely take more than a few things away and use these gems with my work.  Now i&#8217;d like to draw conclusions.  I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>I had a great time today at Future of Web Design.  There were a bunch of great speakers, great conversation, and great visuals.  I was very pleased with the content presented and will surely take more than a few things away and use these gems with my work.  Now i&#8217;d like to draw conclusions.  I&#8217;m not going to review each individual speaker&#8217;s content, but instead I&#8217;d like to just outline the themes, concepts, and quotes which stuck out to me*.</p>
<p><strong>From Dan Cederholm&#8217;s talk on Progressive Enhancement with CSS3:</strong></p>
<ul>
<li>None of it matters if it&#8217;s not there.  &#8211; Make stuff beautiful for Safari and FF users, if people in IE can&#8217;t see it, it doesn&#8217;t matter.</li>
<li>Also from Dan&#8217;s talk I think i&#8217;ve come to the conclusion that transforms in CSS3 are amazing, if used in moderation.</li>
</ul>
<p><strong>From Daniel Burka&#8217;s talk on Feedback:</strong></p>
<ul>
<li>Feedback isn&#8217;t always easy to get.</li>
<li>Read between the lines, users who complain don&#8217;t usually want a solution but are simply helping you to identify a possible problem.</li>
<li>Negative feedback = Passion!</li>
</ul>
<p><strong>From Mike Kus&#8217; 3-D Thinking Talk:</strong></p>
<ul>
<li>Design happens at any time.</li>
<li>Ban boring trends.</li>
<li>&#8220;Progress and innovation in design requires exploration&#8221;.</li>
</ul>
<p><strong>From Elliot Jay Stocks&#8217; Designing for Modern Web:</strong></p>
<ul>
<li>Visually appealing is better User Experience.</li>
<li>Good design on the web is Important!</li>
<li>The nicer something looks, the longer visitors stay, and the more stuff visitors will read.</li>
<li>&#8220;Validation is irrelevant.&#8221;</li>
<li>Validation does not equal conformity to web standards.</li>
<li>Plan for degradation.</li>
</ul>
<p><strong>From Joshua Davis&#8217; Keynote on the topic of &#8220;Space&#8221;:</strong></p>
<ul>
<li>&#8220;Clients are the problem.&#8221;</li>
<li>&#8220;If M.C. Escher was alive, he&#8217;d be a f**kin&#8217; programmer.&#8221;</li>
<li>Drastic changes are not required for drastic results.</li>
<li>Through not knowing, trying will ALWAYS cause you to learn.</li>
<li>If you don&#8217;t ask, the answer is always &#8220;no&#8221;.</li>
<li>&#8220;If I&#8217;m not making mistakes, I&#8217;m not learning.&#8221;</li>
</ul>
<p><small>*Stuck with me, and the ones I had notes from in my notebook.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/11/18/future-of-web-design-09-drawing-conclusions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The least important part of designing a WordPress Theme.</title>
		<link>http://www.propstm.net/2009/11/11/the-least-important-part-of-designing-a-wordpress-theme/</link>
		<comments>http://www.propstm.net/2009/11/11/the-least-important-part-of-designing-a-wordpress-theme/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 13:15:28 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.propstm.net/?p=213</guid>
		<description><![CDATA[The least important  part of designing a WordPress Theme is the header.  There I&#8217;ve said it.  It is the least important part for three reasons: - It is the first thing anyone will see on your site.  The header is also the thing that everyone sees on your site. - Since designers know the header [...]]]></description>
			<content:encoded><![CDATA[<p>The least important  part of designing a WordPress Theme is the header.  There I&#8217;ve said it.  It is the least important part for three reasons:</p>
<p>- It is the first thing anyone will see on your site.  The header is also the thing that everyone sees on your site.<br />
- Since designers know the header is the first thing everyone sees, they normally have preconceived ideas of how a header will look or fit in with the design.<br />
- Because the header is first and foremost, that means you need to be spending all of your other time on the other parts of the site which should look as amazing as your preconceived header because a truly engaged reader should want to look at each part of your site, not just the content but the layout and design of the site that the content lives in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.propstm.net/2009/11/11/the-least-important-part-of-designing-a-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

