<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Designer Blog</title>
	
	<link>http://99designs.com/designer-blog</link>
	<description>The Creative Edge</description>
	<lastBuildDate>Fri, 17 May 2013 20:10:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/99designsDesignerBlog" /><feedburner:info uri="99designsdesignerblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>99designsDesignerBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>An introduction to HTML and CSS for designers</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/mQWEtp_RRkY/</link>
		<comments>http://99designs.com/designer-blog/2013/05/17/html-css-for-designers/#comments</comments>
		<pubDate>Fri, 17 May 2013 08:06:02 +0000</pubDate>
		<dc:creator>Joanna Krenz-Kurowska</dc:creator>
				<category><![CDATA[Design Tips and Resources]]></category>
		<category><![CDATA[basic HTML document]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Cascading Style Sheets (CSS)]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS tutorial]]></category>
		<category><![CDATA[Design tips]]></category>
		<category><![CDATA[Design Tutorial]]></category>
		<category><![CDATA[design tutorials]]></category>
		<category><![CDATA[Designer Tips]]></category>
		<category><![CDATA[Format with Cascading Style Sheets (CSS)]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML tutorial]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Hypertext]]></category>
		<category><![CDATA[Markup language]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Photoshop's Slice tool]]></category>
		<category><![CDATA[Slicing images]]></category>
		<category><![CDATA[Slicing images in Photoshop]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35909</guid>
		<description><![CDATA[As a graphic designer, you&#8217;re probably aware of the ever-evolving relationship between design and technology. This is especially true for those focusing on web design. In this industry, we need to have a basic understanding of how our carefully crafted mockups become live web pages. When we understand the basics of this process (and it&#8217;s limitations), ...]]></description>
				<content:encoded><![CDATA[<p>As a graphic designer, you&#8217;re probably aware of the ever-evolving relationship between design and technology. This is especially true for those focusing on web design.</p>
<p>In this industry, we need to have a basic understanding of how our carefully crafted mockups become live web pages. When we understand the basics of this process (and it&#8217;s limitations), we are able to accurately communicate with developers and get pixel-perfect websites.</p>
<p>This doesn&#8217;t mean you need to know how to code a website from top to bottom (although it would be great!), this just means you need to understand the essentials. In this post, we&#8217;re going to start with the very basics of HTML, learn how to slice a web design in Photoshop, and format our HTML with CSS.</p>
<h2>What exactly is HTML?</h2>
<p><img alt="design_taco" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/design_taco.png" width="624" height="431" /></p>
<p><em>Burrito photo by <a href="http://www.flickr.com/people/51035573370@N01" rel="nofollow">Stephan Mosel</a><br />
</em></p>
<p>Almost everything you see while browsing the Internet is a Hyper Text Markup Language (HTML) document. <a href="http://en.wikipedia.org/wiki/Hypertext" target="_blank">Hypertext</a> is text that references and links to other text on your screen, making it possible for you to access content with a simple click. <a href="http://en.wikipedia.org/wiki/Markup_language" target="_blank">Markup language</a> is a set of tags that are enclosing in brackets &lt; &gt;. These HTML tags usually come in pairs:</p>
<ul>
<li><span style="font-size: 13px; line-height: 19px;"><strong>&lt;start tag&gt;</strong> : also known as an opening tag</span></li>
<li><span style="font-size: 13px; line-height: 19px;"><strong>&lt;/end tag&gt;</strong> : also known as a closing tag, and includes a forward slash /</span></li>
</ul>
<p><span style="font-size: 13px; line-height: 19px;">When you enclose content between these 2 tags, the whole thing is called an </span><a href="https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/HTML_element_structure.svg/330px-HTML_element_structure.svg.png" target="_blank">element</a><span style="font-size: 13px; line-height: 19px;">:</span></p>
<ul>
<li><strong><span style="font-size: 13px; line-height: 19px;">&lt;p&gt; This is a paragraph &lt;/p&gt;</span></strong></li>
</ul>
<p>Viewers will not see the tags when this language is translated to the web — they will only see the content enclosed between them.</p>
<p>HTML 5, the current version of HTML, contains around 100 tags with attributes that change their function or look. You only need to know 30 to 40 of these tags to start understanding and creating HTML. <a href="http://www.w3schools.com/tags/ref_byfunc.asp" target="_blank">Take a look at them</a>, and notice how they are grouped by function. Let&#8217;s get visual and see this in action.</p>
<h2>Slicing images in Photoshop</h2>
<p>Before coding, we need to decide which sections of the website should incorporate images and which can be coded. Let&#8217;s use Photoshop&#8217;s <em>Slice tool</em> (hidden under the <em>Crop tool</em> submenu) and section off areas like the burrito photo, and <em>Joan&#8217;s tacos</em>.</p>
<p><img class="alignnone size-full wp-image-35928" alt="JICO_BLOG2_624" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/JICO_BLOG2_624.png" width="624" height="431" /></p>
<p>Now, we need to Export our slices — Go to File &gt; Save for Web (Alt+Shift+Ctrl+S). When a particular slice is selected, you can set its Export options on the right side of the window (JPG, PNG, etc.). If you double-click on a specific slice, you will see the <em>Slice Options</em> window pop up — this allows you to name specific slice files.</p>
<p><img class="alignnone size-full wp-image-35925" alt="dlice_export" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/dlice_export.jpg" width="624" height="466" /></p>
<p>By default, all images are placed in: subdirectory/images/. If you want to export only the slices you&#8217;ve created, then select <em>All User Slices</em> in the Save window.</p>
<p><img class="alignnone size-full wp-image-35926" alt="export_slices" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/export_slices.png" width="624" height="321" /></p>
<p>The images we exported will be embedded into our HTML document using the <img alt="" />&lt;img&gt; tag.</p>
<h2>Creating a basic HTML document</h2>
<p>We have our slices, let&#8217;s create a basic HTML document.</p>
<p><img class="alignnone size-full wp-image-35982" alt="code_html_simple1" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/code_html_simple1.png" width="624" height="157" /></p>
<p><strong>Line 1</strong>: Declares that the HTML 5 dialect is the document language.</p>
<p><strong>Line 2</strong>: &lt;html&gt; element represents the root of an HTML document. This is an obligatory container that marks the borders of our document.</p>
<p><strong>Line 3</strong>: &lt;head&gt; section contains invisible page elements like the meta information, title, etc.</p>
<p><strong>Line 4</strong>: &lt;meta charset=&#8221;utf-8&#8243;&gt; This is the declaration of document encoding — <em>utf-8</em> is a secure choice — you can learn more about HTML character encodings <a href="http://www.w3schools.com/tags/ref_charactersets.asp" target="_blank">here</a>.</p>
<p><strong>Line 5</strong>:<strong> </strong>&lt;title&gt;Sample page&lt;/title&gt; This is the page title which is visible in the browser title bar.</p>
<p><strong>Line 6</strong>:<strong> </strong>&lt;/head&gt; closes the &lt;head&gt; tag from Line 3.</p>
<p><strong>Line 7</strong>:<strong> </strong>&lt;body&gt;&lt;/body&gt; This body element will contain all the visible content of the page.</p>
<p><strong>Line 8</strong>: &lt;/html&gt; closes the &lt;html&gt; tag from Line 2. This element marks the end of the document.</p>
<p>There are other possible ways to code the same design. We will use HTML 5 semantic tags (header, nav, article, footer) to create a basic document structure:</p>
<p><img class="alignnone size-full wp-image-35916" alt="IKOS2A" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/IKOS2A.png" width="624" height="431" /></p>
<p>This is the layout translated to HTML:</p>
<p><img class="alignnone size-full wp-image-35998" alt="body_tag_content" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/body_tag_content.png" width="624" height="318" /></p>
<p>A few things to note :</p>
<p><strong>Line 9</strong>: &lt;img src=&#8221;"/&gt; <img class="hiddenSpellError" alt="" />This is an src attribute which contains a path to the image file.</p>
<p><strong>Line 11 and 12</strong>: &lt;a&gt; elements are the essence of the Internet as they are used to create <a href="http://en.wikipedia.org/wiki/Hyperlink">hyperlinks</a>. They&#8217;re paired with the HREF attribute, and should link a target <a href="http://en.wikipedia.org/wiki/Uniform_resource_locator">URL</a>.</p>
<p><strong>Lines 18 to 20</strong>:<strong> </strong>These are a few text formatting tags: &lt;h1&gt; stands for a first level header; &lt;p&gt; stands for a paragraph; &lt;br&gt; stands for a line break.</p>
<h2>Format with Cascading Style Sheets (CSS)</h2>
<p><img alt="justHTMLbrowser" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/justHTMLbrowser1.png" width="624" height="554" /></p>
<p>When you open just the HTML file in a web browser, you&#8217;ll see it&#8217;s not formatted like our design from earlier. This is because the HTML code is not enough — we need to format it with <a href="https://en.wikipedia.org/wiki/Cascading_Style_Sheets" target="_blank">Cascading Style Sheets (CSS)</a>. CSS is a stylesheet language that&#8217;s used to format HTML elements.<em><br />
</em></p>
<p>But why, exactly, do we need to pair HTML with CCS? Some time ago, formatting was achieved by adding attributes to HTML tags. However, this led to an unreadable and unmaintainable code. The solution was to separate document content (HTML) from document formatting (CSS).</p>
<p>Let&#8217;s breakdown a simple <a href="http://www.w3schools.com/css/css_syntax.asp" target="_blank">CSS rule</a>: <span style="color: #affaff;">. </span></p>
<p><img class="alignnone size-full wp-image-36065" alt="CSS_structure2" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/CSS_structure2.png" width="624" height="102" /></p>
<p><strong>Selector</strong>: This is the HTML element you want to style. For example: &lt;article&gt;</p>
<p><strong>Declaration</strong>: A CSS rule can have 1 or more declarations. Each declaration consists of a property and value, and is separated by a semicolon. You place declarations between curly brackets { }.</p>
<p><strong>Property</strong>: This is the style characteristic you want to change. For example: background color, font size, etc.</p>
<p><strong>Value</strong>: Each property has a value associated with it. For example: #ffcc11 (for background color), 16px (for font size), etc.</p>
<p>There are <a href="http://www.w3schools.com/cssref/default.asp">a ton of CSS properties</a> that can be set for each HTML element, but it&#8217;s not necessary to write them all yourself. You can rely on your browser&#8217;s default settings, or use a base stylesheet that resets your browser to reasonable values. It actually requires quite a bit of knowledge and experience to <a href="http://www.w3schools.com/cssref/css_selectors.asp" target="_blank">write selectors</a> on your own.</p>
<p>Let&#8217;s take a look at some of the CSS rules necessary to format our simple design.</p>
<p><img class="alignnone size-full wp-image-36071" alt="plateimage_css" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/plateimage_css.png" width="624" height="101" /></p>
<p><strong>CSS Positioning Properties</strong>: There are <a href="http://www.w3schools.com/css/css_positioning.asp" target="_blank">4 different methods</a> (static, fixed, relative and absolute) that allow us to position specific elements in our design. After you set one of these methods, you can position elements using the top, right, bottom and left properties — these will work differently depending on which of the 4 methods you use. In this case, we&#8217;d like to position the <em>plate_image </em>using an <em>absolute</em> positioning.</p>
<p><strong>CSS Box Model</strong>: <a href="http://www.w3schools.com/css/css_boxmodel.asp" target="_blank">This model</a> is a box that wraps around all HTML elements — it includes margins, borders, padding and the content. Margins are an invisible area around the border, and padding is between the border and content.</p>
<h2>Resources</h2>
<p>The best way to learn all of this is to experience it yourself! You can download <a href="http://99designs.com/designer-blog/wp-content/uploads/2013/05/samplepage.zip" target="_blank">a ZIP file</a> of the HTML, CSS and assets files described in this post. When you download the ZIP, open the <em>style2.css</em> file and begin editing the content. You can download <a href="http://www.sublimetext.com/" target="_blank">Sublime Text</a>, and test it for free.</p>
<p>If you&#8217;re REALLY interested in learning more about coding, then check out this cool site: <a href="http://www.codecademy.com/#!/exercises/0" target="_blank">Codecademy</a>.</p>
<h3>Do you know HTML and CSS?</h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to Web design trends for 2013" href="http://99designs.com/designer-blog/2013/02/21/web-design-trends-for-2013/" rel="bookmark">Web design trends for 2013<br />
</a><a title="Permanent Link to Responsive web design: key tips and approaches" href="http://99designs.com/designer-blog/2012/12/03/responsive-web-design-key-tips-and-approaches/" rel="bookmark">Responsive web design: key tips and approaches<br />
</a><a title="Permanent Link to Responsive typography: a quest for flexible typesetting" href="http://99designs.com/designer-blog/2013/04/24/responsive-typography/" rel="bookmark">Responsive typography: a quest for flexible typesetting<br />
</a><a title="Permanent Link to How to design engaging web forms (and inspiration to get you started)" href="http://99designs.com/designer-blog/2012/10/18/designing-web-forms-is-exciting/" rel="bookmark">How to design engaging web forms (and inspiration to get you started)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/17/html-css-for-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/17/html-css-for-designers/</feedburner:origLink></item>
		<item>
		<title>13 Vine videos to ignite your creativity</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/APpzNgIv1Rw/</link>
		<comments>http://99designs.com/designer-blog/2013/05/16/13-vine-videos-to-ignite-creativity/#comments</comments>
		<pubDate>Thu, 16 May 2013 17:34:48 +0000</pubDate>
		<dc:creator>Kaitlyn</dc:creator>
				<category><![CDATA[Get Inspired]]></category>
		<category><![CDATA[99designs]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design inspiration]]></category>
		<category><![CDATA[director]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[story-telling]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Vine]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=36325</guid>
		<description><![CDATA[Meant to essentially be a Twitter for videos, Vine is a fairly new app that allows users to create and upload 6-second clips. Just another way to get a short glimpse into someone&#8217;s life or artwork. Tons of creatives have been getting on the Vine boat, creating a vibrant social network of short-feature directors. The ...]]></description>
				<content:encoded><![CDATA[<p>Meant to essentially be a Twitter for videos, <a href="http://vine.co/" target="_blank">Vine</a> is a fairly new app that allows users to create and upload 6-second clips. Just another way to get a short glimpse into someone&#8217;s life or artwork. Tons of creatives have been getting on the Vine boat, creating a vibrant social network of short-feature directors.</p>
<p>The best thing about a really good Vine video is that it&#8217;s creators think out of the box, making creative work that can inspire any artist or designer. Below are 13 videos that inspire us in 13 different ways:</p>
<p>(Note: click the icon on the top left of each video to hear sound)</p>
<h2>Connect the dots</h2>
<p><iframe src="https://vine.co/v/b0lOwDazPuq/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Pinot, <a href="https://vine.co/v/b0lOwDazPuq/embed" target="_blank">Creativity is about connecting the dots</a>.</em></p>
<h2>Imagine the future</h2>
<p><iframe src="https://vine.co/v/bDXjuWgqpMO/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p>yelldesign, <a href="https://vine.co/v/bDXjuWgqpMO/embed" target="_blank">New &#8220;Real Fruit&#8221; app</a></p>
<h2>Use what you&#8217;ve got</h2>
<p><iframe src="https://vine.co/v/bUMt73K5izn/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>abagg, <a href="https://vine.co/v/bUMt73K5izn/embed" target="_blank">WHATEVER</a></em></p>
<h2>Build something new</h2>
<p><iframe src="https://vine.co/v/brYzMXI267x/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<address><em>Mark Weaver, <a href="https://vine.co/v/brYzMXI267x/embed" target="_blank">Untitled Lego Vine</a></em></address>
<h2>Change your perspective</h2>
<p><iframe src="https://vine.co/v/b0gQe1qzzZQ/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Yves Das, <a href="https://vine.co/v/b0gQe1qzzZQ/embed" target="_blank">Tape Drivers</a></em></p>
<h2>Change it again</h2>
<p><iframe src="https://vine.co/v/bIV2mqWXeua/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Matt Swinsky, <a href="https://vine.co/v/bIV2mqWXeua/embed">Lazer as Chun Li</a><br />
</em></p>
<h2>Tell a story</h2>
<p><iframe src="https://vine.co/v/bD6gwd5Qbzd/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Chris Donlon, <a href="https://vine.co/v/bD6gwd5Qbzd/embed">Poor Sisyphus</a></em></p>
<h2>Re-imagine the past</h2>
<p><iframe src="https://vine.co/v/bxgMgI1QgEr/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Man Bartlett, <a href="https://vine.co/v/bxgMgI1QgEr/embed">Untitled</a></em></p>
<h2>Play with your food</h2>
<p><iframe src="https://vine.co/v/bxEdnvHW6jV/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Jethro Ames, <a href="https://vine.co/v/bxEdnvHW6jV/embed" target="_blank">How to Play with your food, Oregon Trail edition</a></em></p>
<h2>Experiment</h2>
<p><iframe src="https://vine.co/v/bXJAmFLBaat/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>General Electric, <a href="https://vine.co/v/bXJAmFLBaat/embed">What happens when you combine milk, food coloring, and dish soap</a>?</em></p>
<h2>Get inspired by a cause</h2>
<p><iframe src="https://vine.co/v/bx9tvnQvwJI/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Khoa, <a href="https://vine.co/v/bx9tvnQvwJI/embed">The Polar Bear needs love National Geographic</a>!</em></p>
<h2>Let yourself be a little weird</h2>
<p><iframe src="https://vine.co/v/bQzDPQ509jD/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Adam Goldberg, <a href="https://vine.co/v/bQzDPQ509jD/embed">youandiwillalwaysbe</a></em></p>
<h3>Keep creating art</h3>
<p><iframe src="https://vine.co/v/b2wjmwU5DFw/embed/simple" height="624" width="624" frameborder="0"></iframe><script charset="utf-8" type="text/javascript" src="//platform.vine.co/static/scripts/embed.js" async=""></script></p>
<p><em>Ian Padgham, <a href="https://vine.co/v/b2wjmwU5DFw/embed" target="_blank">&#8220;Thomas Hardy&#8221; by @origiful</a></em></p>
<h3>Love other Vine videos? Link to them below!</h3>
<p><strong>Related articles:<br />
</strong><a title="Permanent Link to 12 successful examples of cinemagraphs" href="http://99designs.com/designer-blog/2013/03/14/12-successful-examples-of-cinemagraphs/" rel="bookmark">12 successful examples of cinemagraphs<br />
</a><a title="Permanent Link to 30 beautifully designed and functional mobile apps" href="http://99designs.com/designer-blog/2013/04/26/30-beautifully-designed-apps/" rel="bookmark">30 beautifully designed and functional mobile apps<br />
</a><a title="Permanent Link to Best movie title credit designs, 1955 to present" href="http://99designs.com/designer-blog/2012/12/11/best-movie-title-credit-sequences-1955-2011/" rel="bookmark">Best movie title credit designs, 1955 to present<br />
</a><a title="Permanent Link to Take a walk with 6 design-inspired TED talks" href="http://99designs.com/designer-blog/2012/06/14/take-a-walk-with-6-design-inspired-ted-talks/" rel="bookmark">Take a walk with 6 design-inspired TED talks</a></p>
<p><a title="Permanent Link to Tips in Tweets: design resources from November 2012" href="http://99designs.com/designer-blog/2012/12/05/tips-in-tweets-november-2012/" rel="bookmark"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/16/13-vine-videos-to-ignite-creativity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/16/13-vine-videos-to-ignite-creativity/</feedburner:origLink></item>
		<item>
		<title>9 humorous (mis)adventures in branding</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/Hg7S8Dt3Btk/</link>
		<comments>http://99designs.com/designer-blog/2013/05/15/humorous-misadventures-in-branding/#comments</comments>
		<pubDate>Wed, 15 May 2013 17:13:56 +0000</pubDate>
		<dc:creator>Maya Lekach</dc:creator>
				<category><![CDATA[Get Inspired]]></category>
		<category><![CDATA[90s design]]></category>
		<category><![CDATA[99designs]]></category>
		<category><![CDATA[A]]></category>
		<category><![CDATA[AGIP]]></category>
		<category><![CDATA[Artist Formerly Known as Prince]]></category>
		<category><![CDATA[baby carrots]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[carrots]]></category>
		<category><![CDATA[comical]]></category>
		<category><![CDATA[fish]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[funny logos]]></category>
		<category><![CDATA[German design]]></category>
		<category><![CDATA[Germany]]></category>
		<category><![CDATA[get porked]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[Hello Kitty]]></category>
		<category><![CDATA[humorous]]></category>
		<category><![CDATA[Inappropriate brands]]></category>
		<category><![CDATA[junk food]]></category>
		<category><![CDATA[McFit]]></category>
		<category><![CDATA[package design]]></category>
		<category><![CDATA[packaging]]></category>
		<category><![CDATA[PETA]]></category>
		<category><![CDATA[Pork]]></category>
		<category><![CDATA[Prince]]></category>
		<category><![CDATA[Purple rain]]></category>
		<category><![CDATA[rave design]]></category>
		<category><![CDATA[rebrand]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[sea kittens]]></category>
		<category><![CDATA[Sonae]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35894</guid>
		<description><![CDATA[Branding is all about creating recognition for a company&#8217;s product in the marketplace. It can show what they have to offer, grant them a position in the public eye, and create company swag. Sometimes, however, a company&#8217;s branding can leave us thinking, &#8220;Who thought of that?!&#8221; Here are 9 of the more (ahem) interesting branding ...]]></description>
				<content:encoded><![CDATA[<p>Branding is all about creating recognition for a company&#8217;s product in the marketplace. It can show what they have to offer, grant them a position in the public eye, and create company swag.</p>
<p>Sometimes, however, a company&#8217;s branding can leave us thinking, &#8220;Who thought of that?!&#8221; Here are 9 of the more (ahem) interesting branding choices from the past couple of years.</p>
<h2>1. Baby Carrots</h2>
<p><a href="http://www.thedieline.com/blog/2010/9/1/rebranding-carrots-as-junk-food.html" target="_blank"><img alt="09_01_10_carrots2" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/09_01_10_carrots2.jpg" width="624" height="342" /></a></p>
<p>It looks like having only 35 calories per serving, and showing off the attractive orange color was just not doing it for these little healthy morsels anymore. So a <a href="http://thisisnotadvertising.wordpress.com/tag/a-bunch-of-carrot-farmers/" target="_blank">Bunch of Carrot Farmers</a> banded together and hired <a href="http://www.cpbgroup.com" target="_blank">Crispin Porter + Bogusky</a> to rebrand carrots as junk food, literally using <em>Eat &#8216;Em Like Junk Food</em> as their slogan. You can see the similarities between these packages and their less healthy counterparts, even with a Chester the Cat (Cheetos) cousin on the middle package. This bold marketing idea seems to have had a good deal of success thus far. Carrot farmers don&#8217;t need to spend advertising dollars telling people vegetables are healthy. Leave that spin up to Doritos.</p>
<h2>2. Sasketchewan Pork</h2>
<p><a href="http://www.saskpork.com/index.cfm" target="_blank"><img class="alignnone size-full wp-image-36275" alt="Pork" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Pork.png" width="624" height="343" /></a></p>
<p>We are a little confused if pork is the one you love or if it&#8217;s your significant other. And what is getting porked exactly? Luckily these Canadians picked up on it and <a href="http://www.putporkonyourfork.com">changed their brand</a> to &#8220;Put Pork on Your Fork&#8221;. It seems difficult to do anything not ridiculous sounding that involves the word <em>pork</em>. We do wish they could have done better with their re-design than the generic ribbon and offset shading. But at least the tagline rhymes.</p>
<h2>3. PETA&#8217;s Sea Kittens</h2>
<p><a href="http://features.peta.org/PETASeaKittens/index.asp" target="_blank"><img class="alignnone size-full wp-image-36276" alt="seakittens" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/seakittens.png" width="624" height="587" /></a></p>
<p>You didn&#8217;t know there were kittens in the sea either? Imagine that. Instead of using actual fish (which is boring apparently), PETA is hopping on the <a href="http://www.cutestpaw.com/articles/50-cute-cats-make-your-life-happier/" target="_blank">popular kitty meme trend</a> and their high levels of cuddle-ability to garner distaste for eating the ocean&#8217;s cutest inhabitants.</p>
<p>Oh, and you can also make your own sea kitten at <a href="http://features.peta.org/PETASeaKittens/index.asp" target="_blank">PETA.org</a>. Check out the ones above that we at 99designs made for inspiration! No one would ever want to eat these guys. Or at least that&#8217;s the thought behind this humorous rebrand.</p>
<h2>4. (Not so) Fabuloso</h2>
<p><a href="http://www.colgate.com/app/Colgate/US/HC/Products/HouseholdCleaners/Fabuloso.cvsp" target="_blank"><img class="alignnone size-full wp-image-36269" alt="01-clarity-gone-bad" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/01-clarity-gone-bad.jpg" width="600" height="500" /></a></p>
<p>All this talk about humorous branding has made me thirsty. I&#8217;ll just grab a Fabuloso&#8230; wait, wait. This doesn&#8217;t taste right. Ah dear, in a classic example of poor package design, this cleaning product looks a heck-of-a-lot like those crazy colored sodas that <a href="http://en.wikipedia.org/wiki/Pepsi_Blue" target="_blank">Pepsi</a>, Coke, etc&#8230; are churning out these days. Fabuloso eventually <a href="http://www.colgate.com/app/Colgate/US/HC/Products/HouseholdCleaners/Fabuloso.cvsp" target="_blank">widened their bottles</a>, decreasing similarity to artificially flavored bevos. Although the bottle now resembles some juice brands, I don&#8217;t think anyone could mix up these bright colored liquids as any sort of natural beverage.</p>
<h2>5. Sonae</h2>
<p><a href="http://www.sonae.pt/pt/" target="_blank"><img class="alignnone size-full wp-image-36131" alt="Screen Shot 2013-05-13 at 1.19.28 PM" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-13-at-1.19.28-PM.png" width="624" height="230" /></a></p>
<p>One might think that the largest corporation in Portugal would have a professional, sleek and straightforward logo. Not so with <a href="http://www.sonae.pt/pt/" target="_blank">Sonae</a>, the single largest private employer in Portugal, whose reach extends from grocery stores to book shops  to real estate, etc. Instead, however, their new logo redesign looks like this. Interesting enough, this looks a lot more like a flier for a rave in the 90s than it does a massive European conglomerate.</p>
<p>Apparently the logo was an exercise in trying to make the company more &#8220;cool&#8221;. But it doesn&#8217;t quite help that their company name sounds like a rave itself. If they&#8217;re not careful, people will start showing up at their corporate headquarters in a plethora of neon colors and phat pants. Imagine that! One plus, is it does feature a custom typeface, so there&#8217;s that&#8230;</p>
<h2>6. Prince (or The Artist Formerly Known as Prince)</h2>
<p><a href="http://www.prince.org" target="_blank"><img class="alignnone size-full wp-image-36136" alt="5d827bfcf7422beac7c92c549aaf7ed5" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/5d827bfcf7422beac7c92c549aaf7ed5.jpg" width="624" height="425" /></a></p>
<p>Prince has been famous for over 30 years, penning some of our favorite ditties such as <em>When Doves Cry.</em> But the doves might have indeed cried when Prince decided to replace his name with this symbol.</p>
<p>Choosing to change your name to an unpronounceable image is not always the best marketing effort. And to top it all off, the media wrongly titled Prince as <em>The Artist Formerly Known as Prince.</em> The symbol was actually meant to represent the name <em>Love Symbol No. 2</em>. Although as it turns out, it actually was a pretty good marketing effort, as it got Prince out of a sticky little bind with his recording label, and when that was over, he officially changed his name back to Prince. The man is now more popular than ever, even headlining the Superbowl halftime in 2007 and featured in recent <a href="http://noisey.vice.com/blog/prince-has-ruled-in-the-style-stakes-for-four-freakin-decades" target="_blank">fashion article</a> in <em>Vice</em><em>.</em></p>
<h2>7. McFit</h2>
<p><a href="https://www.mcfit.com" target="_blank"><img class="alignnone size-full wp-image-36153" alt="mcfit-logo-quadrat-rgb-2012-600x600" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/mcfit-logo-quadrat-rgb-2012-600x600.jpg" width="624" height="624" /></a></p>
<p>This German gym has an oddly familiar name — maybe playing off the popularity of McDonalds? Its unclear, however, if their new logo brings about even more comparison to the &#8220;Do you want fries with that&#8221; mega-corporation. However, despite its awkward similarity to makers of the Big Mac, we actually think this redesign is a step up. Their <a href="http://www.designtagebuch.de/mcfit-mit-neuem-corporate-design/#more-15817" target="_blank">previous logo</a>, with their name on a blue band, was what some might call cheezy. This one is slick, and simply looks better (their logo, in fact, translates to &#8220;Simply look good&#8221;).</p>
<p>What do you think&#8230; are they trying to make this comparison with McDonald&#8217;s? A question for the ages.</p>
<h2>8. Office of Government Commerce</h2>
<p><a href="http://en.wikipedia.org/wiki/Office_of_Government_Commerce" target="_blank"><img alt="logo-fail-ogc" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/logo-fail-ogc.jpg" width="624" height="428" /></a></p>
<p>When the <a href="http://en.wikipedia.org/wiki/Office_of_Government_Commerce" target="_blank">British Office of Government Commerce (OGC)</a> came out with their new logo, they thought they were showing a simple logo featuring the letters of their acronym. But all of a sudden they were getting a ton of press. Check out the logo turned on its side&#8230;</p>
<p>Yikes! Although the logo was being mistreated and seen in an, ahem, dirtier light than this governmental office might have desired, it turned out to be not so bad a marketing idea. The OGC got immensely increased popularity, and some tittering employees, who were now sporting messenger bags with this sweet lil guy on it.</p>
<p>When asked about the questionable nature of the new logo, a OGC spokesman said, &#8220;The effect was generic to the particular combination of the letters OGC — and it&#8217;s not inappropriate to an organization that’s looking to have a firm grip on Government spend.”. Well said.</p>
<h2>9. AGIP Motor Oil</h2>
<p><a href="http://kereta.info/agip-introduce-hello-kitty-engine-oil-for-jdm-keicar-enthusiast/" target="_blank"><img alt="AGIP-INTRODUCE-HELLO-KITTY-ENGINE-OIL-FOR-JDM-KEICAR-ENTHUSIAST-3-350x400" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/AGIP-INTRODUCE-HELLO-KITTY-ENGINE-OIL-FOR-JDM-KEICAR-ENTHUSIAST-3-350x400.jpg" width="624" height="713" /></a></p>
<p>One thing we think about when thinking of motor oil is&#8230; Hello Kitty? Apparently Malaysia is quite obsessed with this cuddly creature. While we&#8217;re not sure what cars and Motor Oil have to do with plush toys and vinyl purses, we must commend AGIP for making their motor oil more friendly than that fire-breathing dog (lion, dragon?). This should make for the purrrfect Valentine&#8217;s gift for your sweetie, or a nice 6th birthday present&#8230;.</p>
<p>______________</p>
<p>That about wraps up our humorous brands, for now. Hope you had a laugh and learned a little lesson about how important it is to thoroughly consider each and every implication of your logo before setting it out into the world or getting it monogrammed onto things. The internet can be a cruel, cruel place.</p>
<h3>Have you seen any humorous brands or rebrand recently?</h3>
<p><strong>Related Articles:<br />
</strong><a href="http://99designs.com/designer-blog/2012/12/27/logos-of-2012-the-controversial-and-the-overlooked/" target="_blank">Logos of 2012: The Controversial and the Overlooked<br />
</a><a href="http://99designs.com/designer-blog/2012/12/19/presenting-the-winners-of-the-brand-yourself-contest/" target="_blank">Presenting the Winners of the &#8220;Brand Yourself&#8221; Contest!<br />
</a><a href="http://99designs.com/designer-blog/2012/08/14/in-defense-of-the-london-2012-olympic-logo/" target="_blank">In Defense of the London 2012 Olympics Logo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/15/humorous-misadventures-in-branding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/15/humorous-misadventures-in-branding/</feedburner:origLink></item>
		<item>
		<title>This is how you rock a magazine cover design</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/ntJOQyulYRI/</link>
		<comments>http://99designs.com/designer-blog/2013/05/14/how-you-rock-a-magazine-cover-design/#comments</comments>
		<pubDate>Tue, 14 May 2013 18:54:56 +0000</pubDate>
		<dc:creator>Alex Bigman</dc:creator>
				<category><![CDATA[Design Tips and Resources]]></category>
		<category><![CDATA[bold text]]></category>
		<category><![CDATA[cover design]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[how to make a magazine cover]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[layout design]]></category>
		<category><![CDATA[magazine cover design]]></category>
		<category><![CDATA[print design]]></category>
		<category><![CDATA[publishing]]></category>
		<category><![CDATA[successful design]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35895</guid>
		<description><![CDATA[The magazine cover is a designer&#8217;s dream. There are enough constraints to give you structure — a set space of 8 by 11 inches or so; a few unifying traits that carry across issues — but beyond that it&#8217;s up to you to arrange text and touch up photos, working with some of the best ...]]></description>
				<content:encoded><![CDATA[<p>The magazine cover is a designer&#8217;s dream. There are enough constraints to give you structure — a set space of 8 by 11 inches or so; a few unifying traits that carry across issues — but beyond that it&#8217;s up to you to arrange text and touch up photos, working with some of the best photographers and illustrators in the game. Your only mission: reveal the magazine&#8217;s content in a way that makes it jump off the shelf.</p>
<p>The world of print media may be shrinking but the magazine cover continues to offer a wealth of helpful takeaways for designers of all sorts — web designers and packaging designers in particular. Here are 8 magazine cover design techniques that all designers should know.</p>
<p><a href="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-14-at-10.49.34-AM.png" target="_blank"><img class="alignnone size-full wp-image-36240" alt="Screen Shot 2013-05-14 at 10.49.34 AM" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-14-at-10.49.34-AM.png" width="624" height="453" /></a></p>
<h2>Placing the text: dark on light, light on dark</h2>
<p><a href="http://pinterest.com/pin/28780885089686496/" target="_blank"><img alt="times style" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/times-style.png" width="624" height="500" /></a></p>
<p><a href="http://www.creativebloq.com/art-magazine-covers-20-incredible-examples-2012-1212728" target="_blank"><img alt="Interview" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Interview.png" width="624" height="500" /></a></p>
<p><a href="http://meandmymagazines.blogg.se/2011/may/magasin-morberg-2-2011-fanga-sommaren.html" target="_blank"><img alt="morberg" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/morberg.png" width="624" height="500" /></a></p>
<p>The basis of most magazine covers is going to be either a photograph or an illustration. Either way, appealing images tend to have a good amount of contrast between light and dark regions. Obviously, for text to be readable, it must be light and set against a dark background or vice versa.</p>
<p>So, much of magazine cover design is finding a suitable spot for text — look at how <em>New York Times Style</em> magazine below places the phrase &#8220;talking dirty&#8221; in the one region of George Clooney&#8217;s shirt that is most blackened, or how the text over Keira Knightley on <em>Interview</em> magazine follows the line of her dark coat.</p>
<p>Conveniently, modern designers have access to editing software like Photoshop, so digitally lightening or darkening areas of a photograph is always a possibility. That crashing wave in the foreground of the <em>Morberg</em> magazine page is a great bed for dark text spelling out the magazine&#8217;s contents but it may not be a &#8220;natural&#8221; part of the image. The designer could have lightened it up or even planted it there altogether! If done well, we&#8217;d never know.</p>
<h2>Coloring the text: match and complement</h2>
<p><a href="http://www.youthedesigner.com/2009/11/02/20-magnificent-magazine-covers-in-recent-years/" target="_blank"><img alt="Home miami" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Home-miami.png" width="624" height="500" /></a></p>
<p><a href="http://naldzgraphics.net/design-2/how-to-design-magazine-cover/" target="_blank"><img alt="seventeen" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/seventeen.png" width="624" height="500" /></a></p>
<p><a href="http://www.dwell.com/magazine" target="_blank"><img alt="dwell" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/dwell.png" width="624" height="500" /></a></p>
<p>Black and white are always solid choices for subtitles or other smaller text, but a magazine cover&#8217;s bigger, bolder text elements are a great place to inject some serious color.</p>
<p>As any skilled designer knows, selecting color is never random. In magazine cover design, common approaches are to either match or complement certain vivid areas of the photograph or illustration beneath. The below issue of <em>Home</em> Miami, for instance, samples the vibrant red tone from the patio chairs, just as the issue of <em>Seventeen</em> magazine samples the pink color of Avril Lavigne&#8217;s lipstick. <em>Dwell</em>, on the other hand, picks an orange that is not present in the photo, but which nicely complements the image&#8217;s dominant blue and feel tones.</p>
<h2>Text in the 3rd dimension: behind and in front of the image</h2>
<p><a href="http://www.youthedesigner.com/2009/11/02/20-magnificent-magazine-covers-in-recent-years/"><img alt="vanity fair" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/vanity-fair.png" width="624" height="500" /></a></p>
<p><a href="http://gossipteen.com/2009/02/18/taylor-swift-covers-rolling-stone-magazine/"><img alt="rolling stone" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/rolling-stone.png" width="624" height="500" /></a></p>
<p><a href="http://www.behance.net/gallery/New-York-Magazine/822959"><img alt="new york" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/new-york.png" width="624" height="500" /></a></p>
<p>The magazine cover may literally be flat but that doesn&#8217;t mean all of the design elements have to share a single plane. Indeed, one common approach is to place a photograph or illustration so it partly obscures some text while appearing behind other text, effectively setting up 3 layered planes.</p>
<p><em>Vanity Fair</em> employs this approach in its cover with Tina Fey, and <em>Rolling Stone</em> really goes all out with its cover featuring Taylor Swift — she almost entirely blocks the title text! Notice how in the cover of <em>New York</em> magazine, the illustration of the earphone begins to wrap around the letter &#8220;k.&#8221;</p>
<h2>Placing emphasis: backgrounds, bolds, italics, etc.</h2>
<p><a href="http://coverjunkie.tumblr.com/post/30586849492/wired-uk-fresh-new-cover-wired-magazine-uk"><img alt="wired" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/wired.png" width="624" height="500" /></a></p>
<p><a href="http://www.coverjunkie.com/blog/101-gadgets-changed-the-world/3/6397"><img alt="popular mechanics" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/popular-mechanics.png" width="624" height="500" /></a></p>
<p><a href="http://www.cosmopolitan.com/"><img alt="cosmopolitan" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/cosmopolitan.png" width="624" height="500" /></a></p>
<p>One of the main functions of the magazine cover is to sell the issue&#8217;s inside stories. This often means a lot of short teaser lines floating about the cover page. The more of these there are, the more methods a designer must come up with to draw the reader&#8217;s eye to each — especially in popular magazines, which typically go for a loud approach.</p>
<p>On the most obvious level, bold and italic fonts are your best friend. From there, you can get fancy with colored or shaped backgrounds — check out the pink and yellow strips on <em>Wired</em>&#8216;s cover, and the highlighting and blue serrated ribbon on <em>Popular Mechanics</em>. <em>Cosmopolitan</em>, as you can see, takes an everything-but-the-kitchen-sink approach.</p>
<h2>Multiplying textures: when photography and drawing meet</h2>
<p><a href="http://www.creativebloq.com/art-magazine-covers-20-incredible-examples-2012-1212728"><img alt="fiasco" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/fiasco.png" width="624" height="500" /></a></p>
<p><a href="http://www.coverjunkie.com/find-your-mag/608"><img alt="nature" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/nature.png" width="624" height="500" /></a></p>
<p><a href="http://engage.tmgcustommedia.com/2012/07/4-steps-to-great-magazine-cover-design/"><img alt="esquire" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/esquire.png" width="624" height="500" /></a></p>
<p>Harkening back to the humble doodle, a combination of photographic and illustrated/designed elements is often a great way to make a cover stand out. Check out the clever ways in which <em>Fiasco </em>magazine and <em>Nature</em> magazine blend the worlds of illustration and photography, and how <em>Esquire</em> Malaysia surrounds Daniel Craig with hand-written text in place of typical typographic fonts</p>
<h2>Art pad: illustration/digital design all the way</h2>
<p><a href="http://www.graphicart-news.com/26-most-attractive-magazine-covers/#.UZEgRCuglM5"><img alt="washington post" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/washington-post.png" width="624" height="500" /></a></p>
<p><a href="http://pinterest.com/pin/116108496615190671/"><img alt="washington post 2" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/washington-post-2.png" width="624" height="500" /></a></p>
<p><a href="http://www.youthedesigner.com/2009/11/02/20-magnificent-magazine-covers-in-recent-years/"><img alt="nyt mag" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/nyt-mag.png" width="624" height="500" /></a></p>
<p>Although less common than the photo-centric approach, it&#8217;s possible to pull off an engaging illustrated or typographic-only cover. Good color and a unique style are, of course, key here.</p>
<h2>Spicing up the boring stuff: price, barcode, date</h2>
<p><a href="http://www.littlewhitelies.co.uk/"><img alt="little white lies" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/little-white-lies.png" width="624" height="500" /></a></p>
<p><a href="http://www.coverjunkie.com/find-your-mag/342"><img alt="slanted" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/slanted.png" width="624" height="500" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.newyorker.com/online/blogs/culture/2013/02/cover-story-your-eustace-2013.html#slide_ss_0=1"><img alt="new yorker" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/new-yorker.png" width="624" height="500" /></a></p>
<p>These 3 elements, although perhaps not of much interest to most designers, do need to be placed nonetheless. Most magazines take a pretty hands off approach, leaving them in a conventional spot in the bottom left corner. Some magazines, however, have found unique places to put them, making them striking design elements in themselves.</p>
<p>For example, see how <em>The New Yorker</em> includes the price and date above the title line, in the classic New Yorker font, or how <em>Little White Lies</em> always includes the barcode front and center in the centered circular window. This particular issue of <em>Slanted</em> is laid out to look like a printing error, with the result being that the barcode, here in purple, sits dead center.</p>
<h2>Consistency is key</h2>
<p><a href="http://www.cosmopolitan.com/"><img alt="cosmo spread" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/cosmo-spread.png" width="624" height="500" /></a></p>
<p><a href="http://www.dwell.com/"><img alt="dwell spread" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/dwell-spread.png" width="624" height="500" /></a></p>
<p><a href="http://www.time.com/time/magazine"><img alt="time spread" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/time-spread.png" width="624" height="500" /></a></p>
<p>While all of the above techniques give a designer plenty of room to get creative, it is ultimately important to remember that every regular publication needs some degree of consistency from issue-to-issue, in order to keep its branding intact. This does not mean a template (although some publications seem to adhere to one), but it does mean that the overall layout and feel remain more or less constant. Check out these screen grabs of <em>Cosmopolitan</em>, <em>Dwell</em>, and <em>Time</em> magazine covers to see what we mean.</p>
<h2><strong>Resources</strong></h2>
<ul>
<li><a style="font-size: 13px; line-height: 19px;" href="http://www.lynda.com/Illustrator-tutorials/Designing-Magazine-Cover/109688-2.html">Designing a Magazine Cover (Lynda.com)</a></li>
<li><a href="http://vector.tutsplus.com/articles/web-roundups/indesign-magazine-design/">15+ InDesign Tutorials for Magazine and Layout Design (Vector Tuts+) </a></li>
</ul>
<h3>Are there any magazines whose covers you particularly like?</h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to 7 sure-fire ways to a killer book cover or poster design" href="http://99designs.com/designer-blog/2012/01/18/7-sure-fire-ways-to-a-killer-book-cover-or-poster-design/" rel="bookmark">7 sure-fire ways to a killer book cover or poster design<br />
</a><a title="Permanent Link to 10 examples of timeless print design" href="http://99designs.com/designer-blog/2012/01/23/10-examples-of-timeless-print-design/" rel="bookmark">10 examples of timeless print design<br />
</a><a title="Permanent Link to 4 principles by Paul Rand that may surprise you" href="http://99designs.com/designer-blog/2012/09/04/4-principles-by-paul-rand-that-may-surprise-you/" rel="bookmark">4 principles by Paul Rand that may surprise you<br />
</a><a title="Permanent Link to Teach yo’self! A guide to online graphic design education" href="http://99designs.com/designer-blog/2013/04/02/online-graphic-design-courses/" rel="bookmark">Teach yo’self! A guide to online graphic design education</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/14/how-you-rock-a-magazine-cover-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/14/how-you-rock-a-magazine-cover-design/</feedburner:origLink></item>
		<item>
		<title>Winner and runners-up of our “Business Card Fit for the King” contest</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/gPT89IDEbR4/</link>
		<comments>http://99designs.com/designer-blog/2013/05/14/kings-business-card/#comments</comments>
		<pubDate>Tue, 14 May 2013 18:52:26 +0000</pubDate>
		<dc:creator>99designs</dc:creator>
				<category><![CDATA[Updates & Announcements]]></category>
		<category><![CDATA[aldorinaldo]]></category>
		<category><![CDATA[benling]]></category>
		<category><![CDATA[Business card]]></category>
		<category><![CDATA[community contest]]></category>
		<category><![CDATA[d0ppelgangerz]]></category>
		<category><![CDATA[dutch]]></category>
		<category><![CDATA[flag]]></category>
		<category><![CDATA[hilOX]]></category>
		<category><![CDATA[IoanaLuca]]></category>
		<category><![CDATA[Kimberlypostma]]></category>
		<category><![CDATA[king]]></category>
		<category><![CDATA[koesnoel80]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[LocLe]]></category>
		<category><![CDATA[LuiG]]></category>
		<category><![CDATA[Murtinelli]]></category>
		<category><![CDATA[nabeel]]></category>
		<category><![CDATA[netherlands]]></category>
		<category><![CDATA[orange]]></category>
		<category><![CDATA[Prex Web]]></category>
		<category><![CDATA[Ted.]]></category>
		<category><![CDATA[tulip]]></category>
		<category><![CDATA[wawaqu]]></category>
		<category><![CDATA[willem-alexander]]></category>
		<category><![CDATA[ZBrk]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=36141</guid>
		<description><![CDATA[With the launch of our Dutch language site, and the inauguration of King Willem-Alexander (the Netherlands&#8217; first King in over a century!), we thought it&#8217;d be a great opportunity to have our community design a business card fit for the King. We received almost 1,000 designs and were ecstatic to see so many great business cards bring ...]]></description>
				<content:encoded><![CDATA[<p>With the <a href="http://99designs.com/customer-blog/99designs-launches-dutch-site/" target="_blank">launch of our Dutch language site</a>, and the inauguration of King Willem-Alexander (the Netherlands&#8217; first King in over a century!), we thought it&#8217;d be a great opportunity to have our community design a business card fit for the King.</p>
<p>We received almost <a href="http://en.99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730?filter=rated&amp;sorting=rating" target="_blank">1,000 designs</a> and were ecstatic to see so many great business cards bring Dutch elements to life — this made picking the winner not an easy feat. The Netherlands, an extremely flat country of 16 million residents next to the North Sea, had a wonderful time in the spotlight, so thanks to everyone who participated! And, of course,  a big old &#8220;dank jullie wel&#8221; to the <em>Dutchies</em> out there.</p>
<p>Check out the winning design, and runners-up, below.</p>
<h2>Winning design</h2>
<h3>Design by <a href="http://99designs.nl/users/1073818" target="_blank">aldorinaldo</a><a href="http://99designs.com/users/673545"><br />
</a></h3>
<p><a href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/523" target="_blank"><img class="alignnone size-full wp-image-36143" alt="aldorinaldo" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/aldorino.png" width="624" height="826" /></a></p>
<p>We love the simplicity of this design! The font is sleek, yet powerful and elements like the crown and the full stop take this design to the next level. We&#8217;re convinced the King wouldn&#8217;t mind handing out these &#8220;Hallo&#8217;s&#8221; (Dutch for Hello) during the coming years of royal interactions.</p>
<h2>Runners-up</h2>
<h3>Design by <a href="http://99designs.nl/users/391322" target="_blank">Nabeel</a></h3>
<p><a href="http://99designs.nl/users/391322" target="_blank"><img class="alignnone size-full wp-image-36147" alt="22893055~c9d12e81b809df4ca9e04907d7276d4ad1141287-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/22893055c9d12e81b809df4ca9e04907d7276d4ad1141287-original.jpg" width="624" height="471" /></a></p>
<p><a href="http://99designs.nl/users/391322" target="_blank">Nabeel</a> incorporated a variety of Dutch elements in a modern way (ranging from tulips to windmills, and to our favorite: the cow!), without making the business card look like a touristy souvenir.</p>
<h3>Design by <a href="http://99designs.nl/users/1151337" target="_blank">ZBrk</a></h3>
<p><a href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/308" target="_blank"><img class="alignnone size-full wp-image-36149" alt="308 in 624p" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/308-in-624p.jpg" width="624" height="429" /></a></p>
<p>Willem-Alexander is often referred to as the &#8220;King of business&#8221;, helping the Dutch grow their international connections and trade. This design combines these 2 sides in a clever and fun way.</p>
<h3>Design by <a href="http://99designs.nl/users/722767" target="_blank">Kimberlypostma</a></h3>
<p><a href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/859" target="_blank"><img class="alignnone size-full wp-image-36151" alt="859 in 624p" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/859-in-624p.jpg" width="624" height="713" /></a></p>
<p><a href="http://99designs.nl/users/722767" target="_blank">Kimberly</a> designed a business card inspired by the famous balcony scenes, giving us an intimate look behind the royal curtains.</p>
<h3>Design by <a href="http://99designs.nl/users/874405" target="_blank">LocLe</a></h3>
<p><a href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/491" target="_blank"><img class="alignnone size-full wp-image-36152" alt="491 in 624p" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/491-in-624p.jpg" width="624" height="624" /></a></p>
<p>We are a big fan of the typography <a href="http://99designs.nl/users/874405" target="_blank">LocLe</a> used in his design; it&#8217;s clean, yet lively and topped off with an impressive crown.</p>
<h3>Design by <a href="http://99designs.nl/people/tedgraphicdesign" target="_blank">Ted.</a></h3>
<p><a style="font-size: 13px; line-height: 19px;" href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/477" target="_blank"><img class="alignnone size-full wp-image-36154" alt="731 in 624p" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/731-in-624p.jpg" width="624" height="458" /></a></p>
<p>This business card contains several layers: the crown is created from common Dutch elements (tulips, mills, clogs), elements that are meaningful to Willem-Alexander (ice skates, the ‘W’, the crown) and some less obvious Dutch elements (fish, water, fisherman&#8217;s boat). It comes in red, white, blue and orange.</p>
<h3>Design by <a href="http://99designs.nl/users/499056" target="_blank">benling</a><a href="http://99designs.com/people/wernautama"><br />
</a></h3>
<p><a href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/798" target="_blank"><img class="alignnone size-full wp-image-36159" alt="798 in 624p" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/798-in-624p.jpg" width="624" height="484" /></a></p>
<p><a href="http://99designs.nl/users/499056" target="_blank">benling</a> created a timeline of Willem-Alexander&#8217;s personal interests, using elements from water management, renewable energy and his favorite hobby ice skating — all leading up to the crown. As benling stated, &#8220;It is all about the King’s life; which will never be the same again.”<i> </i></p>
<h3>Design by <a href="http://99designs.nl/users/1163353" target="_blank">hilOX</a></h3>
<p><a href="http://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/744" target="_blank"><img class="alignnone size-full wp-image-36161" alt="744 in 624p" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/744-in-624p.jpg" width="624" height="624" /></a></p>
<p>Even though there aren&#8217;t many people still playing in tulip fields wearing clogs and traditional clothing, <a href="http://99designs.nl/users/1163353" target="_blank">hilOX</a> managed to give his design a modern feel. We love this illustration!</p>
<h3>Design by <a href="https://99designs.nl/users/1157477" target="_blank">LuiG</a><a href="http://99designs.nl/users/1163353" target="_blank"><br />
</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/22906009" target="_blank"><img class="alignnone size-full wp-image-36214" alt="22906009~0f24cb6ad8a5949649470c79238612b1e854851c-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/229060090f24cb6ad8a5949649470c79238612b1e854851c-original.jpeg" width="624" height="624" /></a></p>
<p><a href="https://99designs.nl/users/1157477" target="_blank">LuiG</a> illustrated a map pointing out Noordeinde, the King&#8217;s &#8220;working palace&#8221;, in a Mondriaan style. When the Queen announced her abdication she said: “Responsibility for our country must now lie in the hands of a new generation.” This business card shaped like an iPhone definitely took that notion to heart.</p>
<h3>Design by <a href="https://99designs.nl/users/673189" target="_blank">IoanaLuca</a><a href="http://99designs.nl/users/1163353" target="_blank"><br />
</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/565" target="_blank"><img class="alignnone size-full wp-image-36209" alt="22851827~62fa93c200d94f36d05f1a14779156ca6c022489-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/2285182762fa93c200d94f36d05f1a14779156ca6c022489-original.jpeg" width="624" height="499" /></a></p>
<p><a href="https://99designs.nl/users/673189" target="_blank">IoanaLuca</a> found a clever way of making an iconic tulip referring to both the Dutch flag and crown. The front of the card gives a hat-tip to Piet Mondriaan and the coat of arms, with &#8220;Je maintiendrai.&#8221;</p>
<h3>Design by <a href="https://99designs.nl/users/793059" target="_blank">Koesnoel80</a><a href="http://99designs.nl/users/1163353" target="_blank"><br />
</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/546" target="_blank"><img class="alignnone size-full wp-image-36207" alt="22849184~997eda9f25c8bb99ac83a92b20314a7f760c7d9b-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/22849184997eda9f25c8bb99ac83a92b20314a7f760c7d9b-original.jpeg" width="624" height="423" /></a></p>
<p>The King himself made an appearance on this business card! We like the hand drawn elements incorporated into this design.</p>
<h3>Design by <a href="https://99designs.nl/users/1195938" target="_blank">wawaqu</a><a href="http://99designs.nl/users/1163353" target="_blank"><br />
</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/22892354" target="_blank"><img class="alignnone size-full wp-image-36213" alt="22892354~94cf34dbe591d059e59e4a6f73358064b1f5dc75-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/2289235494cf34dbe591d059e59e4a6f73358064b1f5dc75-original.jpg" width="624" height="519" /></a></p>
<p>It&#8217;s a well-known fact that Dutch people love cheese, and we assume the King is one of them. On this business card, it transforms into the shape of windmill sails, bike wheels, tulips and crowns.</p>
<h3>Design by <a href="https://99designs.nl/users/958540" target="_blank">d0ppelgangerz</a><a href="http://99designs.nl/users/1163353" target="_blank"><br />
</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/555" target="_blank"><img class="alignnone size-full wp-image-36208" alt="Print" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/22850986453530ad6337c6fe4b78b98da08f07e5024f5f18-original.jpeg" width="624" height="437" /></a></p>
<p>The inlets around the crown paired with the color patterns of this design make for a subtle business card, something that&#8217;s especially hard to achieve when using an abundance of orange.</p>
<h3>Design by <a href="https://99designs.nl/users/1162705" target="_blank">Murtinelli</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/22873451" target="_blank"><img class="alignnone size-full wp-image-36212" alt="22873451~48bc747d401de963b4e77bf8fa09bb2e3b3e78ac-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/2287345148bc747d401de963b4e77bf8fa09bb2e3b3e78ac-original.jpeg" width="624" height="403" /></a></p>
<p>As far as <a href="https://99designs.nl/users/1162705" target="_blank">Murtinelli</a> is concerned, the traditional deck of cards needs to open up a spot for this &#8220;King of tulips.&#8221;</p>
<h3>Design by <a href="https://99designs.nl/users/495591" target="_blank">N24</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/918"><img class="alignnone size-full wp-image-36294" alt="22905702~bf8f2b5f2e8ae4837a9e8984e27c991068ef21c6-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/22905702bf8f2b5f2e8ae4837a9e8984e27c991068ef21c6-original.jpeg" width="624" height="624" /></a></p>
<p>This awesome design by <a href="https://99designs.nl/users/495591" target="_blank">N24</a> was one of the last designs we received in this contest. Does anyone recognize the style from Van Gogh&#8217;s starry night in this proud lion&#8217;s mane?</p>
<h3>Design by <a href="https://99designs.nl/users/968649" target="_blank">Pex Web</a><a href="http://99designs.nl/users/1163353" target="_blank"><br />
</a></h3>
<p><a href="https://99designs.nl/stationery-design/contests/designs-community-contest-create-business-card-fit-king-212730/entries/22870294" target="_blank"><img alt="22870294~3e90bd5d9f432eb63ad47ed4d9f8f81057abd4fa-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/228702943e90bd5d9f432eb63ad47ed4d9f8f81057abd4fa-original1.jpeg" width="624" height="417" /></a></p>
<p>Another design with a nod to the Netherlands&#8217; rich art history: Mondriaan turned out to be a designer-favorite.</p>
<h3>Which business card do you like the best?</h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to Check out the winner and runners-up of the Daft Punk poster contest!" href="http://99designs.com/designer-blog/2013/04/29/daft-punk-poster-illustration/" rel="bookmark">Check out the winner and runners-up of the Daft Punk poster contest!<br />
</a><a title="Permanent Link to Presenting the winner and runners-up from South Australia logo contest" href="http://99designs.com/designer-blog/2013/03/20/presenting-the-winner-and-runners-up-from-our-south-australia-logo-contest/" rel="bookmark">Presenting the winner and runners-up from South Australia logo contest<br />
</a><a title="Permanent Link to Presenting the winner and top designs from the New Orleans Pelicans logo contest!" href="http://99designs.com/designer-blog/2013/01/03/pelicans-logo-contest-winner-and-top-designs/" rel="bookmark">Presenting the winner and top designs from the New Orleans Pelicans logo contest!<br />
</a><a title="Permanent Link to Presenting the winners of the “Brand Yourself” contest!" href="http://99designs.com/designer-blog/2012/12/19/presenting-the-winners-of-the-brand-yourself-contest/" rel="bookmark">Presenting the winners of the “Brand Yourself” contest!<br />
</a><a title="Permanent Link to Presenting the winner and runners-up in the PlayStation 4 contest!" href="http://99designs.com/designer-blog/2013/02/20/presenting-the-winner-and-runners-up-in-the-playstation-4-contest/" rel="bookmark">Presenting the winner and runners-up in the PlayStation 4 contest!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/14/kings-business-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/14/kings-business-card/</feedburner:origLink></item>
		<item>
		<title>A 99er’s winning design process (infographic included)</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/ihk5DVCouy0/</link>
		<comments>http://99designs.com/designer-blog/2013/05/13/winning-design-process-infographic/#comments</comments>
		<pubDate>Mon, 13 May 2013 20:38:18 +0000</pubDate>
		<dc:creator>Rebecca Creger</dc:creator>
				<category><![CDATA[Design Tips and Resources]]></category>
		<category><![CDATA[99designer]]></category>
		<category><![CDATA[99designs]]></category>
		<category><![CDATA[crowdsourcing]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[design contests]]></category>
		<category><![CDATA[design process]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[how to make a logo]]></category>
		<category><![CDATA[how to win]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=36006</guid>
		<description><![CDATA[Have you ever wondered what a winning designer and client were saying to each other during a contest? Look no further! We&#8217;ve made an infographic of designer DSKY&#8216;s winning design process in the After Eleven logo contest. While DSKY is a very skilled designer, he is also great at communicating with the client. He explains his ...]]></description>
				<content:encoded><![CDATA[<p>Have you ever wondered what a winning designer and client were saying to each other during a contest? Look no further! We&#8217;ve made an infographic of designer <a href="http://99designs.com/people/dsky" target="_blank">DSKY</a>&#8216;s winning design process in the<a href="http://99designs.com/logo-design/contests/after-eleven-needs-awesome-logo-181782/entries/19070801" target="_blank"><em> After Eleven</em></a> logo contest.</p>
<p>While DSKY is a very skilled designer, he is also great at communicating with the client. He explains his design concepts and responds well to feedback with well executed designs. Good communication between designer and client is key, and in this case, it helped DSKY win the contest. Here&#8217;s how it happened:</p>
<p><img class="alignnone size-full wp-image-36132" alt="Winning Design Infographic 99" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Infographic2.jpg" width="640" height="2304" /></p>
<h3>What is the most important stage of the design process?</h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to Words for Winners: the winning mix" href="http://99designs.com/designer-blog/2012/03/16/words-for-winners-the-winning-mix/" rel="bookmark">Words for Winners: the winning mix<br />
</a><a title="Permanent Link to Words for Winners: build talent and find inspiration" href="http://99designs.com/designer-blog/2012/04/04/words-for-winners-build-talent-and-find-inspiration/" rel="bookmark">Words for Winners: build talent and find inspiration<br />
</a><a title="Permanent Link to Words for Winners: select the right contest" href="http://99designs.com/designer-blog/2012/04/10/words-for-winners-select-the-right-contest-for-you/" rel="bookmark">Words for Winners: select the right contest<br />
</a><a title="Permanent Link to Words for Winners: 5 contest winning strategies" href="http://99designs.com/designer-blog/2012/04/20/words-for-winners-5-contest-winning-strategies/" rel="bookmark">Words for Winners: 5 contest winning strategies<br />
</a><a title="Permanent Link to Words for Winners: 4 marketing tips to boost your design business" href="http://99designs.com/designer-blog/2012/05/02/words-for-winners-4-marketing-tips-to-boost-your-business/" rel="bookmark">Words for Winners: 4 marketing tips to boost your design business<br />
</a><a title="Permanent Link to Words for winners: studying design in a 3-week cycle" href="http://99designs.com/designer-blog/2012/05/10/words-for-winners-studying-design-in-a-3-week-cycle/" rel="bookmark">Words for winners: studying design in a 3-week cycle</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/13/winning-design-process-infographic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/13/winning-design-process-infographic/</feedburner:origLink></item>
		<item>
		<title>99designs Indonesia: Join the national Meetup on June 7</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/IRoNvuaByo0/</link>
		<comments>http://99designs.com/designer-blog/2013/05/11/99designs-indonesia-national-meetup-june-7/#comments</comments>
		<pubDate>Sat, 11 May 2013 18:38:47 +0000</pubDate>
		<dc:creator>Illona</dc:creator>
				<category><![CDATA[Updates & Announcements]]></category>
		<category><![CDATA[99designs meetups]]></category>
		<category><![CDATA[client-designer relationship]]></category>
		<category><![CDATA[conceptual design]]></category>
		<category><![CDATA[designer community]]></category>
		<category><![CDATA[illustration]]></category>
		<category><![CDATA[Indonesia]]></category>
		<category><![CDATA[Indonesia Community]]></category>
		<category><![CDATA[Indonesia Meetups]]></category>
		<category><![CDATA[Marketing yourself]]></category>
		<category><![CDATA[Meetups Everywhere]]></category>
		<category><![CDATA[Presenting your work]]></category>
		<category><![CDATA[Register]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[Web design basics]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35818</guid>
		<description><![CDATA[99designs is hosting a national Meetup in Indonesia on Friday, June 7, 2013 at the Hyatt Regency Yogyakarta. Registration is $20.00 USD (approximately Rp. 200.000), which includes meals and refreshments, as well as a full day of workshops, creative projects and a keynote speaker (TBA). Below are the workshop topics presented at the Meetup: Ricky Asamanis: Developing ...]]></description>
				<content:encoded><![CDATA[<p><a href="https://99designs.wufoo.com/forms/meetup-nasional-indonesia-formulir-pendaftaran/" target="_blank"><img class="alignnone size-full wp-image-35835" alt="FLYER_FINAL" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/FLYER_FINAL.jpg" width="640" height="1584" /></a></p>
<p>99designs is hosting a national Meetup in Indonesia on Friday, June 7, 2013 at the <a href="http://yogyakarta.regency.hyatt.com/en/hotel/home.html" target="_blank">Hyatt Regency Yogyakarta</a>.</p>
<p><a href="https://99designs.wufoo.com/forms/meetup-nasional-indonesia-formulir-pendaftaran/">Registration</a> is $20.00 USD (approximately Rp. 200.000), which includes meals and refreshments, as well as a full day of workshops, creative projects and a keynote speaker (TBA). Below are the workshop topics presented at the Meetup:</p>
<p dir="ltr"><strong><a href="http://99designs.com/people/asammanis" target="_blank">Ricky Asamanis</a>: Developing a concept and design<br />
</strong><span style="font-size: 13px; line-height: 19px;">Designers will learn how to choose the right contest for them, how to study the brief, develop a concept through brainstorming, and how to work with feedback and revisions.</span></p>
<p dir="ltr"><strong><a href="http://99designs.com/people/onlydeestudio" target="_blank">Onlydee</a>: Client-designer relationship<br />
</strong><span style="font-size: 13px; line-height: 19px;">Designers will learn the best practices to how to interact and establish positive relationships with a client. This includes points to consider before signing a contract, preparation before starting a project, and what to do after a project is finished.</span></p>
<p dir="ltr"><strong><a href="http://99designs.com/people/minorei8ht" target="_blank">Minor Eight</a>: Marketing yourself as a designer<br />
</strong>Designers will learn how to market themselves as freelance designers. This includes websites and platforms available, choosing designs for a portfolio, and how to get clients.</p>
<p dir="ltr"><strong><a href="http://99designs.com/users/741385" target="_blank">Cloud940</a>: Illustration and presenting your work<br />
</strong>Designers will learn the basics of how to create illustration with Adobe Photoshop, and its applications in poster, illustration, book covers, websites, and general photography</p>
<p dir="ltr"><strong><a href="http://99designs.com/people/dewaaaa" target="_blank">Dewaaaa</a>: Web design basics<br />
</strong>Designers interested in web design will learn the basics of how to design the UI and UX of a website. This includes basic dimensions, files types required, wire-framing, proper use of stock photos, and image quality.</p>
<p dir="ltr"><strong><a href="http://99designs.com/users/865466" target="_blank">GCS Collective</a>: Typography<br />
</strong>Designers will learn the theory of creating custom typefaces, including the anatomy of type, choosing the right type for clients and projects, and how to create original fonts.</p>
<h3><a href="https://99designs.wufoo.com/forms/meetup-nasional-indonesia-formulir-pendaftaran/">Register now</a> and don&#8217;t miss out on 99designs prizes and giveaways!</h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to 99designs Epic Europe Meetup Trip, 2012" href="http://99designs.com/designer-blog/2012/09/26/meetup-trip/" rel="bookmark">99designs Epic Europe Meetup Trip, 2012<br />
</a><a title="Permanent Link to Epic 99designs Meetup: Yogyakarta, Indonesia" href="http://99designs.com/designer-blog/2012/02/24/epic-99designs-meetup-yogyakarta-indonesia/" rel="bookmark">Epic 99designs Meetup: Yogyakarta, Indonesia<br />
</a><a title="Permanent Link to Another great 99designs Meetup: Manila" href="http://99designs.com/designer-blog/2012/04/27/another-great-99designs-meetup-manila/" rel="bookmark">Another great 99designs Meetup: Manila<br />
</a><a title="Permanent Link to 99designs Meetup: Davao City, Philippines" href="http://99designs.com/designer-blog/2012/03/08/99designs-meetup-davao-city-philippines/" rel="bookmark">99designs Meetup: Davao City, Philippines</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/11/99designs-indonesia-national-meetup-june-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/11/99designs-indonesia-national-meetup-june-7/</feedburner:origLink></item>
		<item>
		<title>Monthly design news: Instagram’s revamp, Adobe CC</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/dMg-wHzN1u4/</link>
		<comments>http://99designs.com/designer-blog/2013/05/10/monthly-design-news-instagrams-revamp-adobe-cc/#comments</comments>
		<pubDate>Fri, 10 May 2013 18:06:27 +0000</pubDate>
		<dc:creator>Kaitlyn</dc:creator>
				<category><![CDATA[Get Inspired]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[CMYK]]></category>
		<category><![CDATA[Creative Cloud]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[industrial design]]></category>
		<category><![CDATA[Instagram]]></category>
		<category><![CDATA[Instagram redesign]]></category>
		<category><![CDATA[Instagram's new logo]]></category>
		<category><![CDATA[mother's day]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35899</guid>
		<description><![CDATA[It&#8217;s that time again — to buff up on news of the design world at large. Big things are happening! Instagram spiffs up their logo  via Brand New Instagram recently debuted their new and original script created by Denver-based designer Mackey Saturday. See the company&#8217;s original design and while you&#8217;re at it, check out 99designs&#8217; own Instagram account. CMYK ...]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s that time again — to buff up on news of the design world at large. Big things are happening!</p>
<h2>Instagram spiffs up their logo</h2>
<p><a href="http://www.underconsideration.com/brandnew/archives/hand_beats_filter_in_new_instagram_wordmark.php"><img title="Instagram" alt="news" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/instagram_wordmark_detail.gif" width="624" height="205" /></a> <em>via <a href="http://www.underconsideration.com/brandnew">Brand New</a></em><a href="http://www.underconsideration.com/brandnew"><br />
</a></p>
<p>Instagram recently debuted their new and original script created by Denver-based designer Mackey Saturday. See the company&#8217;s <a href="http://www.underconsideration.com/brandnew/archives/hand_beats_filter_in_new_instagram_wordmark.php">original design</a> and while you&#8217;re at it, check out 99designs&#8217; own <a href="http://statigr.am/99designs">Instagram account</a>.</p>
<h2>CMYK Lightbulb</h2>
<h2><a href="http://designtaxi.com/news/357285/CMYK-Lightbulb-That-Casts-Colored-Shadows/"><img class="alignnone size-full wp-image-35962" title="CMYK" alt="news" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/1-copy.jpg" width="624" height="424" /></a></h2>
<p><em>via <a href="http://designtaxi.com/">Design Taxi</a></em></p>
<p>This CMYK lightbulb by <a href="http://dennisparren.nl/">Dennis Parren</a> makes fascinating art of the most daily item — your shadow. The artist combined red, green and blue LSDs to create the effect. The bulb is on sale now, and goes for a pricey €95.</p>
<h2> Adobe moves to the Creative Cloud</h2>
<p><a href="http://techcrunch.com/2013/05/06/adobe-goes-all-in-with-subscription-based-creative-cloud-will-stop-selling-regular-cs-licenses-shrink-wrapped-boxes/"><img class="alignnone  wp-image-35937" title="Adobe" alt="news" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/photo-1.jpg" width="624" height="468" /></a></p>
<p><em>via <a href="http://techcrunch.com/">TechCrunch</a></em></p>
<p>You may have seen this earlier this week in our <a href="https://www.facebook.com/photo.php?fbid=10151549634586192&amp;set=a.10150620929776192.409791.48151411191&amp;type=1&amp;theater">Facebook post</a>, but in case you&#8217;ve been living under a rock, this week Adobe announced they&#8217;ll be discontinuing the Creative Suite (CS) line and continuing to develop their products solely through the subscription-based Creative Cloud (CC) service.</p>
<h2>Google Web Fonts becomes Google Fonts</h2>
<p><a href="http://www.google.com/fonts"><img title="Google" alt="news" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-08-at-10.21.16-PM.png" width="624" height="392" /></a> <em>via <a href="http://www.google.com/fonts">Google Fonts</a></em></p>
<p>We wrote about Google Web Fonts a <a href="http://99designs.com/designer-blog/2012/03/05/free-commercial-use-fonts-with-google-web-fonts/">little while ago</a> but now they&#8217;ve got updated news. They&#8217;ve created a deal with <a href="http://www.monotype.com/">Monotype</a> and their program Skyfonts to allow users to download all of the fonts to desktop — that&#8217;s more than 600 fonts. Check them out <a href="http://www.google.com/fonts">here</a>.</p>
<h2>NYC X Design</h2>
<p><a href="http://www.fastcodesign.com/1671869/how-do-you-brand-nycs-first-official-design-week#1"><img class="alignnone  wp-image-35932" title="NYC" alt="news" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/1671869-inline-nyc-x-fastco6.jpg" width="624" height="468" /></a></p>
<p><em>via <a href="http://www.fastcodesign.com/">FastCo Design</a></em></p>
<p>From May 10th to May 21st, New York is holding its inaugural festival dedicated to all kinds of design. Explore it in person if you&#8217;re lucky, or <a href="http://nycxdesign.com/">online</a> to be part of the experience from afar.</p>
<h2>Don&#8217;t forget Mother&#8217;s Day</h2>
<p><a href="http://patterndaily.wordpress.com/2013/04/16/you-are-one-badass-mother/"><img class="alignnone  wp-image-35944" title="Mother" alt="news" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/mother.jpg" width="624" height="356" /></a></p>
<p><em>via <a href="http://patterndaily.wordpress.com/">Pattern Daily</a></em></p>
<p>Mother&#8217;s Day is this weekend! So don&#8217;t forget to celebrate your mama with a beautiful card — there are tons of beautifully designed ones floating around the internet. Or better yet, make her one of your own! This one is by illustrator Courtney Blair and is for sale on <a href="http://www.etsy.com/shop/PatternDailyPrints?ref=search_shop_redirect">Etsy</a>.</p>
<h3>Know any design events coming up in May? Share below!</h3>
<p><strong>Related Articles:</strong><br />
<a title="Permanent Link to Read all about it! Designer news from March 2013" href="http://99designs.com/designer-blog/2013/04/12/read-all-about-it-designer-news-from-march-2013/" rel="bookmark">Read all about it! Designer news from March 2013</a><br />
<a title="Permanent Link to Read all about it! Designer news from February 2013" href="http://99designs.com/designer-blog/2013/03/01/read-all-about-it-designer-news-from-february-2013/" rel="bookmark">Read all about it! Designer news from February 2013</a><br />
<a title="Permanent Link to Read all about it! Designer news from January 2013" href="http://99designs.com/designer-blog/2013/02/01/read-all-about-it-designer-news-from-january-2013/" rel="bookmark">Read all about it! Designer news from January 2013</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/10/monthly-design-news-instagrams-revamp-adobe-cc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/10/monthly-design-news-instagrams-revamp-adobe-cc/</feedburner:origLink></item>
		<item>
		<title>Top 9 at 99 results: April 2013</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/IcdeIaJIW90/</link>
		<comments>http://99designs.com/designer-blog/2013/05/09/top-9-at-99-results-april-2013/#comments</comments>
		<pubDate>Thu, 09 May 2013 17:20:36 +0000</pubDate>
		<dc:creator>Allison Stuart</dc:creator>
				<category><![CDATA[Updates & Announcements]]></category>
		<category><![CDATA[99designs]]></category>
		<category><![CDATA[app elephant]]></category>
		<category><![CDATA[crowdsourcing]]></category>
		<category><![CDATA[design contests]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[Successful Designers]]></category>
		<category><![CDATA[Top 9]]></category>
		<category><![CDATA[Top 9 at 99]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35851</guid>
		<description><![CDATA[The winner of April&#8217;s Top 9 at 99 proved the impossible — designer Gideon6k3 fit a HUGE elephant into a small square box! This is not magic, it&#8217;s just good design. We love everything, from the layout to the texture to the 3D shading of the ear. And we double appreciate the details in that ...]]></description>
				<content:encoded><![CDATA[<p>The winner of April&#8217;s Top 9 at 99 proved the impossible — designer Gideon6k3 fit a HUGE elephant into a small square box! This is not magic, it&#8217;s just good design.</p>
<p>We love everything, from the layout to the texture to the 3D shading of the ear. And we double appreciate the details in that nice blue eye. Perhaps the loveliest of all, is the personification of the &#8220;A&#8221; in the company&#8217;s name, <em>App Elephant</em>.</p>
<h3>A HUGE congratulations to <a href="http://99designs.com/logo-design/contests/help-app-elephant-logo-204969/entries/21663078" target="_blank">Gideon6k3</a> for being April’s Top 9 at 99!</h3>
<p><a href="http://99designs.com/logo-design/contests/help-app-elephant-logo-204969/entries/21663078" target="_blank"><img class="alignnone size-full wp-image-35852" alt="AprilTop9" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/AprilTop9.png" width="624" height="500" /></a></p>
<p>And a big congratulations to all of April&#8217;s Top 9 at 99:</p>
<ol>
<li><a href="http://99designs.com/illustrations/contests/illustration-food-blarg-207729/entries/22145223" target="_blank">Citizen</a></li>
<li><a href="http://99designs.com/logo-design/contests/logo-wanted-castlereach-estate-agents-210063/entries/22447882" target="_blank">MilkPint</a></li>
<li><a href="http://99designs.com/logo-business-card-design/contests/create-next-logo-umbrella-realty-group-208915/entries/22421097" target="_blank">Mdvd</a></li>
<li><a href="http://99designs.com/logo-design/contests/help-stink-co-logo-211594/entries/22560140" target="_blank">RadioStar</a></li>
<li><a href="http://99designs.com/logo-design/contests/help-app-elephant-logo-204969/entries/21663078" target="_blank">Gideon6k3</a></li>
<li><a href="http://99designs.com/logo-business-card-design/contests/logo-business-card-ash-fox-207014/entries/21968312" target="_blank">Mogeek</a></li>
<li><a href="http://99designs.com/t-shirt-design/contests/fun-project-create-tee-shirt-204424/entries/21775011" target="_blank">blandine*</a></li>
<li><a href="http://99designs.com/t-shirt-design/contests/t-shirt-desiger-needed-further-jobs-included-206269/entries/21987281" target="_blank">Manuel_fz</a></li>
<li><a href="http://99designs.com/illustrations/contests/illustration-m-207590/entries/22175679" target="_blank">Jelena156</a></li>
</ol>
<p>To celebrate your great work, you’ll each receive <a href="http://www.mydesignshop.com/the-designers-ultimate-index-y0238?icid=MDSLNCF5Y0238-040513" target="_blank"><em>The Designer&#8217;s Ultimate Index</em></a> by Jim Krause.</p>
<p><a href="http://www.mydesignshop.com/the-designers-ultimate-index-y0238?icid=MDSLNCF5Y0238-040513" target="_blank"><img class="alignnone size-full wp-image-35882" alt="The Ultimate Index" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/AprilTop91.png" width="624" height="414" /></a></p>
<p>You also get an Official 99designs Community T-Shirt!</p>
<p><img title="99T-shirt" alt="99T-shirt" src="http://99designs.com/designer-blog/wp-content/uploads/2012/06/t-shirt_top.png" width="624" height="624" /></p>
<p>Thanks to everyone who voted and spread the love.</p>
<h3>What do you like about <a href="http://99designs.com/logo-design/contests/help-app-elephant-logo-204969/entries/21663078" target="_blank">Gideon6k3</a>&#8216;s elephant app design?</h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to Top 9 at 99 results: March 2013" href="http://99designs.com/designer-blog/2013/04/10/top-9-at-99-results-march-2013/" rel="bookmark">Top 9 at 99 results: March 2013<br />
</a><a title="Permanent Link to Top 9 at 99 results: February 2013" href="http://99designs.com/designer-blog/2013/03/13/top-9-at-99-results-feb-2013/" rel="bookmark">Top 9 at 99 results: February 2013<br />
</a><a title="Permanent Link to Top 9 at 99 results: January 2013" href="http://99designs.com/designer-blog/2013/02/13/top-9-at-99-results-january-2013/" rel="bookmark">Top 9 at 99 results: January 2013<br />
</a><a title="Permanent Link to Vote for the ULTIMATE Top 9 designer of 2012" href="http://99designs.com/designer-blog/2013/02/23/vote-for-the-ultimate-top-9-designer-from-2012/" rel="bookmark">Vote for the ULTIMATE Top 9 designer of 2012</a></p>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/09/top-9-at-99-results-april-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/09/top-9-at-99-results-april-2013/</feedburner:origLink></item>
		<item>
		<title>Create 99designs’ next iconic Community T-shirt!</title>
		<link>http://feedproxy.google.com/~r/99designsDesignerBlog/~3/_R6TEktVfUI/</link>
		<comments>http://99designs.com/designer-blog/2013/05/08/create-99designs-next-iconic-community-t-shirt/#comments</comments>
		<pubDate>Wed, 08 May 2013 18:32:21 +0000</pubDate>
		<dc:creator>Stephanie Thai</dc:creator>
				<category><![CDATA[Updates & Announcements]]></category>
		<category><![CDATA[99designs]]></category>
		<category><![CDATA[99designs tee]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Community T-shirt]]></category>
		<category><![CDATA[Fist tee]]></category>
		<category><![CDATA[Successful Designers]]></category>
		<category><![CDATA[T-shirt contest]]></category>
		<category><![CDATA[T-shirt inspiration]]></category>
		<category><![CDATA[T-shirt prizes]]></category>
		<category><![CDATA[Top 9 at 99]]></category>

		<guid isPermaLink="false">http://99designs.com/designer-blog/?p=35716</guid>
		<description><![CDATA[It&#8217;s been a fantastic year so far at 99designs — we had our 5 year anniversary, hosted our 200,000th design contest and have now paid out more than $50 million to designers all over the world! To celebrate, we&#8217;re running a contest for another 99designs Community T-shirt to join the ranks of the iconic fist ...]]></description>
				<content:encoded><![CDATA[<p>It&#8217;s been a fantastic year so far at 99designs — we had our 5 year anniversary, hosted our 200,000th design contest and have now paid out more than $50 million to designers all over the world!</p>
<p>To celebrate, <strong><a href="https://99designs.com/illustrations/contests/create-designs-next-iconic-community-t-shirt-216521/brief" target="_blank">we&#8217;re running a contest for another 99designs Community T-shirt</a></strong> to join the ranks of the iconic fist tee created by legendary 99designer _Trickster_. The fist tee has come to emblemize the spirit of the 99designs community — opportunity, success and integrity. We&#8217;re looking for a new design to capture our collective imagination.</p>
<p><a href="http://99designs.com/t-shirt-design/contests/create-official-designs-community-t-shirt-81389/entries/8456240" target="_blank"><img class="aligncenter size-medium wp-image-35718" alt="8456240~0c2bc92af706ec014f22b1cc21f20ab642576fe2-original" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/84562400c2bc92af706ec014f22b1cc21f20ab642576fe2-original-512x341.jpeg" width="512" height="341" /></a></p>
<p><em>Design by <a href="http://99designs.com/people/satyr">_Trickster_</a></em></p>
<p><a href="https://www.facebook.com/media/set/?set=a.10151137355326192.467415.48151411191&amp;type=3" target="_blank"><img class="aligncenter size-medium wp-image-35719" alt="fist_tee" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/fist_tee.jpg" width="510" height="360" /></a></p>
<p><em><a href="http://99designs.com/designer-blog/2012/09/26/meetup-trip/">Romania &amp; Serbia Meetups</a> (left); Italian designer <a href="http://99designs.com/users/724549">Giulio Rossi</a> (right)</em></p>
<p>To get your brainstorming session started, here are a few super rad T-shirt designs that do a great job at incorporating detail without being too busy or cluttered. They have a bold overall look that is easily recognizable from afar. Check them out:</p>
<p><a href="http://dribbble.com/dima_je" target="_blank"><img class="aligncenter size-full wp-image-35721" alt="Dima Je_pirate t shirt" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Dima-Je_pirate-t-shirt.jpg" width="400" height="300" /></a></p>
<p><em>Pirate T-shirt by <a href="http://dribbble.com/dima_je">Dima Je</a></em></p>
<p><a href="http://www.colorbeast.com/" target="_blank"><img class="aligncenter size-medium wp-image-35722" alt="Harry Diaz_stay free" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Harry-Diaz_stay-free.jpg" width="400" height="300" /></a></p>
<p><em>Stay Free by <a href="http://www.colorbeast.com/">Harry Diaz</a></em></p>
<p><a href="http://blog.keenancummings.com/" target="_blank"><img class="aligncenter size-medium wp-image-35723" alt="Keenan Cummings_wandernaut t shirt" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Keenan-Cummings_wandernaut-t-shirt.png" width="400" height="300" /></a></p>
<p><em>Wandernaut by <a href="http://blog.keenancummings.com/">Keenan Cummings</a></em></p>
<p><a href="http://nthnl.com/" target="_blank"><img class="aligncenter size-medium wp-image-35724" alt="Nate Utesch_help yourself to a miracle" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Nate-Utesch_help-yourself-to-a-miracle.png" width="400" height="300" /></a></p>
<p><em>Help Yourself to a Miracle by <a href="http://nthnl.com/">Nate Utesch</a></em></p>
<p><a href="http://ryanvsclark.com/" target="_blank"><img class="aligncenter size-medium wp-image-35725" alt="Ryan Clark_golden state shoe repair" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Ryan-Clark_golden-state-shoe-repair.png" width="400" height="300" /></a></p>
<p><em>Golden State Shoe Repair by <a href="http://ryanvsclark.com/">Ryan Clark</a></em></p>
<p><a href="http://www.i-am-tiago.com/index.html" target="_blank"><img class="aligncenter" alt="Tiago Sa_interview process tee" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Tiago-Sa_interview-process-tee.png" width="400" height="300" /></a></p>
<p><em>The Interview Process by <a href="http://www.i-am-tiago.com/index.html">Tiago Sá</a></em></p>
<p><a href="http://ryanputnamdesign.com/" target="_blank"><img class="aligncenter size-medium wp-image-35726" alt="Ryan Putnam_help colorado" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/Ryan-Putnam_help-colorado.png" width="400" height="300" /></a></p>
<p><em>Help Colorado by <a href="http://ryanputnamdesign.com/">Ryan Putnam</a></em></p>
<p><a href="http://thispapership.com/" target="_blank"><img class="aligncenter size-medium wp-image-35727" alt="This Paper Ship_cup-a-joe t shirt" src="http://99designs.com/designer-blog/wp-content/uploads/2013/05/This-Paper-Ship_cup-a-joe-t-shirt.jpg" width="400" height="300" /></a></p>
<p><em>Cup-a-Joe by <a href="http://thispapership.com/">This Paper Ship</a></em></p>
<h3><strong>Enter 99designs’ community contest and <a href="https://99designs.com/illustrations/contests/create-designs-next-iconic-community-t-shirt-216521/brief" target="_blank">create the next iconic Community T-shirt</a>!</strong></h3>
<p><strong>Related articles</strong>:<br />
<a title="Permanent Link to Check out the winner and runners-up of the Daft Punk poster contest!" href="http://99designs.com/designer-blog/2013/04/29/daft-punk-poster-illustration/" rel="bookmark">Check out the winner and runners-up of the Daft Punk poster contest!<br />
</a><a title="Permanent Link to Presenting the winner and runners-up from South Australia logo contest" href="http://99designs.com/designer-blog/2013/03/20/presenting-the-winner-and-runners-up-from-our-south-australia-logo-contest/" rel="bookmark">Presenting the winner and runners-up from South Australia logo contest<br />
</a><a title="Permanent Link to Presenting the winner and top designs from the New Orleans Pelicans logo contest!" href="http://99designs.com/designer-blog/2013/01/03/pelicans-logo-contest-winner-and-top-designs/" rel="bookmark">Presenting the winner and top designs from the New Orleans Pelicans logo contest!<br />
</a><a title="Permanent Link to Presenting the winners of the “Brand Yourself” contest!" href="http://99designs.com/designer-blog/2012/12/19/presenting-the-winners-of-the-brand-yourself-contest/" rel="bookmark">Presenting the winners of the “Brand Yourself” contest!<br />
</a><a title="Permanent Link to Presenting the winner and runners-up in the PlayStation 4 contest!" href="http://99designs.com/designer-blog/2013/02/20/presenting-the-winner-and-runners-up-in-the-playstation-4-contest/" rel="bookmark">Presenting the winner and runners-up in the PlayStation 4 contest!</a></p>
<h2><a title="Permanent Link to Community Contest: Design a poster for Daft Punk’s new album!" href="http://99designs.com/designer-blog/2013/04/08/community-contest-daft-punk/" rel="bookmark"> </a></h2>
]]></content:encoded>
			<wfw:commentRss>http://99designs.com/designer-blog/2013/05/08/create-99designs-next-iconic-community-t-shirt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://99designs.com/designer-blog/2013/05/08/create-99designs-next-iconic-community-t-shirt/</feedburner:origLink></item>
	</channel>
</rss>
