<?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>Onextrapixel - Web Design &amp; Development Online Magazine</title>
	
	<link>http://www.onextrapixel.com</link>
	<description>A digital community for web designers and developers by sharing freebies, great tutorials, useful resources and online tips.</description>
	<lastBuildDate>Fri, 18 May 2012 11:30:18 +0000</lastBuildDate>
	<language />
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/onextrapixel" /><feedburner:info uri="onextrapixel" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><meta xmlns="http://pipes.yahoo.com" name="pipes" content="noprocess" /><feedburner:emailServiceId>onextrapixel</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>The Practical Guide to Multiple Relationships Between Posts in WordPress</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/T8ZDwrgBxBg/</link>
		<comments>http://www.onextrapixel.com/2012/05/18/the-practical-guide-to-multiple-relationships-between-posts-in-wordpress/#comments</comments>
		<pubDate>Fri, 18 May 2012 11:30:18 +0000</pubDate>
		<dc:creator>Anna Ladoshkina</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=18005</guid>
		<description><![CDATA[With the introduction the custom post type feature, WordPress has made a very important move from just a blogging solution (very powerful but limited with it’s concept) to full-fledged CMS system. All 3.x releases more or less are... <a href="http://www.onextrapixel.com/2012/05/18/the-practical-guide-to-multiple-relationships-between-posts-in-wordpress/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/IhAGp7k5vUTAi5afHQhG2SkjYG4/0/da"><img src="http://feedads.g.doubleclick.net/~a/IhAGp7k5vUTAi5afHQhG2SkjYG4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IhAGp7k5vUTAi5afHQhG2SkjYG4/1/da"><img src="http://feedads.g.doubleclick.net/~a/IhAGp7k5vUTAi5afHQhG2SkjYG4/1/di" border="0" ismap="true"></img></a></p><p>With the introduction the <strong>custom post type feature</strong>, WordPress has made a very important move from just a blogging solution <em>(very powerful but limited with it’s concept)</em> to full-fledged CMS system. All 3.x releases more or less are evolving steps in the same direction. But some quite common tasks that we’re expecting from CMS are still missing in the Core leaving the battlefield open for plugin developers. One such task is creating and management of many-to-many relationships between posts of different types. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/wp-relationship.jpg" alt="The Practical Guide to Multiple Relationships Between Posts in WordPress" title="The Practical Guide to Multiple Relationships Between Posts in WordPress" width="580" height="360" class="alignnone size-full wp-image-18012" /><br />
<span id="more-18005"></span></p>
<p>Fortunately there is an excellent plugin "Posts 2 Posts" by Silviu-Cristian Burcă aka <a href="http://scribu.net/">scribu</a> which solves that task. It’s beautifully coded and deadly simple to use. It provides as with very simple but powerful API allowing the creation of connections and the out-of-the-box administrative UI allows you to manage them. With the following tutorial I’m going to show you how to use this plugin to create and manage connections between posts of different types in practical steps. </p>
<p>Let me first describe the task. Assume we have a custom post type at our WordPress-powered site named "project" to represent <em>(how surprisingly)</em> projects of some nature <em>(eg. some downloadable apps or plugins)</em>. At the same time we post notes or updates related to these projects in the blog (representing with default "post" post type). Of course we would like to clearly state this relation - in every project’s page we’d like to have links to notes in the blog and vice versa - in every blog post we’d like to have links to related project(s). This could be achieved manually but the disadvantages of such an approach are quite obvious. So we would use Post 2 Post plugin to make this possible through the following steps:</p>
<ul>
<li>register "<em>project</em>" post type and register it’s connection with "<em>post</em>" post type</li>
<li>create connections between published items using appropriate metabox</li>
<li>create template tags to help us list related posts or projects</li>
<li>edit "<em>single</em>" post template to use our introduced template tag for presenting related items</li>
</ul>
<p><strong>Bonus:</strong> At the end we’ll make things a bit more complicated to see the full power of Posts 2 Posts plugin - we’ll provide registered relationships with additional metadata nearly the same way we could have such metadata for posts themselves. </p>
<h2>A Note about Code Placement</h2>
<p>Following Thord Daniel Hedengren’s <em>(wpmu.org)</em> <a href="http://wpmu.org/stop-writing-stupid-tutorials/">advice</a> I’d try to be smart enough and would not recommend you to include the following code into the theme <code>functions.php</code> file. Instead I would recommend to create your own <a href="http://wpcandy.com/teaches/how-to-create-a-functionality-plugin">Custom Functionality Plugin</a> to handle all code that is connected with content of your site and powers the functionality that should not disappear just because you switched the theme. So it’s the perfect place for registering custom post types and creating relationships between them. It’s worth mentioning also that to make the code below work you need to install <a href="http://wordpress.org/extend/plugins/posts-to-posts/">Post 2 Post</a> plugin first and activate it in WordPress admin.</p>
<h4>Registration</h4>
<pre class="brush: php; title: ; notranslate">
function frl_p2p_registrations(){

    /* Register 'project' post_type */

    $register_args = array(
        'label' =&gt; __('Projects', 'frl'),
        'labels' =&gt; array(
            'name' =&gt; __('Projects', 'frl'),
            'singular_name' =&gt; __('Project', 'frl')
        ),
        'public' =&gt; true,
        'rewrite' =&gt; array('slug'=&gt;'project', 'with_front'=&gt;false),
        'show_in_menu' =&gt; true,
        'hierarchical' =&gt; false,
        'menu_position' =&gt; 5,
        'supports' =&gt; array('title','editor','thumbnail', 'excerpt'),
        'show_in_nav_menus' =&gt; false
    );

    register_post_type('project', $register_args);

    /* Register connection */

    $connection_args = array(
        'name' =&gt; 'project_post',
        'from' =&gt; 'project',
        'to'   =&gt; 'post',
        'sortable'   =&gt; 'any',
        'reciprocal' =&gt; false,
        'admin_box' =&gt; array(
            'show' =&gt; 'any',
            'context' =&gt; 'normal',
            'can_create_post' =&gt; true
        ),
        'admin_column' =&gt; 'any'
    );

    p2p_register_connection_type($connection_args);

}

add_action('init', 'frl_p2p_registrations');
</pre>
<p>The heart of Post 2 Post API is a <code>p2p_register_connection_type</code> function which is quite similar to other <code>register_something</code> WP functions and allows us to register relations between posts of different types and customise it’s behaviour through the set of accepted parameters:</p>
<ul>
<li><code>name</code> - an unique identifier of connection type</li>
<li><code>from</code> - post type(s) on "from" side of the connection</li>
<li><code>to</code> - post type(s) on "to" side of the connection</li>
<li><code>prevent_duplicates</code> - whether to allow duplicated connections</li>
<li><code>sortable</code> - whether to allow connections to be ordered via drag-and-drop.</li>
<li><code>reciprocal</code> - whether to allow the same post type on "from" and "to" sides of connection</li>
<li><code>admin_column</code> - whether to display column with related posts list in posts table in admin</li>
<li><code>admin_box</code> - set of parameters that customise connection’s metabox appearance, in particular:
<ul>
<li><code>show</code> - whether to show default metabox and where ("any", "from", "to")</li>
<li><code>context</code> - regular metabox context parameter ("normal" or "advanced"),</li>
<li><code>can_create_post</code> - whether to allow create new post directly from connection metabox</li>
</ul>
</li>
</ul>
<p>For the full set of registration parameters and their default values please consult the <code>core/api.php</code> file of the plugin. </p>
<p>First we prepare the registration of <em>project</em> post type as described in the <a href="http://codex.wordpress.org/Function_Reference/register_post_type">Codex</a>. Then we register connection with <em>post</em> post type with necessary parameters. All these registrations we wrap into a separate function to be able to call it upon <em>init</em> hook.</p>
<h4>Creating Connection in Metabox</h4>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/metabox-1.jpg" alt="Creating Connection in Metabox" title="Creating Connection in Metabox" width="580" height="328" class="alignnone size-full wp-image-18007" /></p>
<p>P2P plugin creates a connection metabox on edit post screens for connected post types if it was configured upon registration. The usage of this metabox is quite intuitive. Simply start typing the desired post name in the search box, select the appropriate item from the drop-down list and click the <em>add</em> icon. To remove a connection click <em>trash</em> icon. Create as many connections per each post/project as needed. </p>
<p>Among other admin UI goodies P2P plugin creates <em>(if configured)</em> the column for a list of connected items in the posts' management table for each of the connected post types. The latest version of the plugin introduces also an informational admin screen <em>(located under "Tools" menu)</em> containing reference data about registered connections and their parameters. </p>
<h4>Listing Related Posts</h4>
<pre class="brush: php; title: ; notranslate">
function frl_list_related($post_id, $title = ''){

$query_args = array(
    'connected_type' =&gt; 'project_post',
    'connected_items' =&gt; intval($post_id),
    'nopaging' =&gt; true
);

$query = new WP_Query($query_args);

if($query-&gt;have_posts()):

if(empty($title))
    $title = __('Related items', 'frl');
?&gt;
&lt;h3&gt;&lt;?php echo $title; ?&gt;&lt;/h3&gt;
&lt;ul class=&quot;related-items&quot;&gt;

&lt;?php while($query-&gt;have_posts()): $query-&gt;the_post(); ?&gt;
&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink();?&gt;&quot;&gt;&lt;?php the_title();?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endwhile;?&gt;

&lt;/ul&gt;
&lt;?php
endif;
wp_reset_postdata();
}
</pre>
<p>One of the greatest advantage of P2P plugin is an ability to get connected posts using standard <em>(and familiar)</em> <a href="http://codex.wordpress.org/Function_Reference/WP_Query/">WP_Query</a> syntax. Everything you need is to pass additional query variables to limit set of posts:</p>
<ul>
<li><code>connected_type</code> - the identifier(s) of the connection used when registering</li>
<li><code>connected_items</code> - ID of post(s) from one side of the connection to search</li>
<li><code>connected_direction</code> - optional parameter allowing to restrict the direction of queried connections ("from", "to", "any"), when omitted the direction is inferred from <code>connected_type + connected_items</code> combination.</li>
</ul>
<p>In our example we wrap the query into a separate function - <code>frl_list_related</code> template tag. This function query connects posts based on submitted <code>$post_id</code> parameter. If the query produces any results the function lists them using the standard <a href="http://codex.wordpress.org/The_Loop">WordPress Loop</a> approach. It also accepts <code>$title</code> parameter to customise the title of related items’ block depending of context.</p>
<h4>Template Editing</h4>
<pre class="brush: php; title: ; notranslate">
/* code for project template - single-project.php */

if(function_exists('frl_list_related'))
    frl_list_related($post-&gt;ID, __('Related Posts', 'frl'));

/* code for post template - single.php */

if(function_exists('frl_list_related'))
    frl_list_related($post-&gt;ID, __('Related Project(s)', 'frl'));
</pre>
<p>Finally we should edit the template files that represent "project" and "post" post types respectively (most likely the <code>single-project.php</code> and <code>single.php</code> files of your theme) so they included the call of our new template tag. We also passed the title string when calling our function for setting the correct title of the connected posts list. The result <em>(eg. for particular "project")</em> after some styling is similar to the following:</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/related-items-1.jpg" alt="Related Items" title="Related Items" width="580" height="435" class="alignnone size-full wp-image-18009" /></p>
<h2>More Complicated Example</h2>
<p>Assume that blog posts related to a particular project could be divided into different types, eg. changelog and how-to information. On the project page we’d like to list posts of different types separately and apart from that accompany each link with a short comment. All these enhancements could be easily achieved using the connection metadata functionality provided by P2P plugin. Connection metadata behaves the same way as other types of metadata supported by WordPress (eg. postmeta, usermeta etc.). To use them we will implement the following steps:</p>
<ul>
<li>rewrite connection registration function to support "type" and "comment" meta-fields</li>
<li>add metadata values to existing (and new) connections</li>
<li>rewrite post listing function to behave as described above</li>
<li>use new function in template</li>
</ul>
<pre class="brush: php; title: ; notranslate">
function frl_p2p_registrations(){

    /* Register 'project' post_type */

    $register_args = array(
        'label' =&gt; __('Projects', 'frl'),
        'labels' =&gt; array(
            'name' =&gt; __('Projects', 'frl'),
            'singular_name' =&gt; __('Project', 'frl')
        ),
        'public' =&gt; true,
        'rewrite' =&gt; array('slug'=&gt;'project', 'with_front'=&gt;false),
        'show_in_menu' =&gt; true,
        'hierarchical' =&gt; false,
        'menu_position' =&gt; 5,
        'supports' =&gt; array('title','editor','thumbnail', 'excerpt'),
        'show_in_nav_menus' =&gt; false
    );

    register_post_type('project', $register_args);

    /* Register connection */

    $connection_args = array(
        'name' =&gt; 'project_post',
        'from' =&gt; 'project',
        'to'   =&gt; 'post',
        'sortable'   =&gt; 'any',
        'reciprocal' =&gt; false,
        'admin_box' =&gt; array(
            'show' =&gt; 'any',
            'context' =&gt; 'normal',
            'can_create_post' =&gt; true,
            'fields' =&gt; array(
                'type' =&gt; array(
                    'title' =&gt; __('Type', 'frl'),
                    'values' =&gt; array(
                        'changelog' =&gt; __('Changelog', 'frl'),
                        'tutorials' =&gt; __('Tutorials', 'frl')
                    )
                ),
                'comment' =&gt; array(
                    'title' =&gt; __('Comment', 'frl')
                )
            )
        ),
        'admin_column' =&gt; 'any'
    );

    p2p_register_connection_type($connection_args);

}

add_action('init', 'frl_p2p_registrations');
</pre>
<p>We have added fields array to the list of connections registration parameters. The used configuration creates two fields in the connection metabox: the "<em>type</em>" field allows you to select from two possible options and the "<em>comment</em>" field allows you to type comment text. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/metabox-2.jpg" alt="Metabox" title="Metabox" width="580" height="352" class="alignnone size-full wp-image-18008" /></p>
<p>After filing in the metadata for all created connections we can access it the using "<em>meta_query</em>" syntax or using P2P API function <code>p2p_get_meta</code>. Our new listing template tag is going to use both.</p>
<pre class="brush: php; title: ; notranslate">
function frl_list_related_by_type($post_id, $type, $title=''){
    global $post;

    $query_args = array(
        'connected_type' =&gt; 'project_post',
        'connected_items' =&gt; intval($post_id),
        'nopaging' =&gt; true,
        'connected_meta' =&gt; array(
            array(
                'key' =&gt; 'type',
                'value' =&gt; $type,
            )
        )
    );

    $query = new WP_Query($query_args);

    if($query-&gt;have_posts()):

    if(empty($title))
        $title = __('Related items', 'frl');
?&gt;
    &lt;h3&gt;&lt;?php echo $title; ?&gt;&lt;/h3&gt;
    &lt;ul class=&quot;related-items&quot;&gt;

&lt;?php while($query-&gt;have_posts()): $query-&gt;the_post(); ?&gt;
    &lt;li&gt;
        &lt;a href=&quot;&lt;?php the_permalink();?&gt;&quot;&gt;&lt;?php the_title();?&gt;&lt;/a&gt;
        &lt;span class=&quot;comment-meta&quot;&gt;&lt;?php echo p2p_get_meta($post-&gt;p2p_id, 'comment', true );?&gt;&lt;/span&gt;
    &lt;/li&gt;
&lt;?php endwhile;?&gt;

    &lt;/ul&gt;
&lt;?php
    endif;
    wp_reset_postdata();
}
</pre>
<p>First of all, our renewed function accepts the <code>$type</code> parameter which allows us to select related posts based on stored "type"-field value. We achieve this using <code>connected_meta</code> query variable. It has syntax similar to regular WordPress <code>meta_query</code> <a href="http://codex.wordpress.org/Function_Reference/WP_Query#Custom_Field_Parameters">query</a>. Then when printing each found post inside the loop we access the value of its "comment" meta-field with <code>p2p_get_meta</code> function. Each related post found with our query stores the <em>id</em> of the appropriate connection in the <code>$post->p2p_id</code> property. With this id <code>p2p_get_meta</code> allows us to get any connection metadata by it’s key. The third boolean parameter indicates whether we are expecting a single value or array of possible values (as it required by <a href="http://codex.wordpress.org/Metadata_API">WordPress Metadata API</a>). </p>
<pre class="brush: php; title: ; notranslate">
/* code to list 'changelog'-type posts on project template - single-project.php */

if(function_exists('frl_list_related_by_type'))
	frl_list_related_by_type($post-&gt;ID, 'changelog', __('Project\'s Changelog', 'frl'));
</pre>
<p>The result of this function implemented somewhere in the <code>single-project.php</code> file for "changelog"-type posts <em>(as an example)</em> could look as follows:</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/related-items-2.jpg" alt="Related Items 2" title="Related Items 2" width="580" height="480" class="alignnone size-full wp-image-18010" /></p>
<p>And so this is practically the end of our demonstration. You can download the whole PHP code as a separate plugin below.</p>
<div class="demobtns"><a  href="http://www.onextrapixel.com/download/frl-p2p.zip">Download</a></div>
<h2>Conclusion</h2>
<p>There are a number of discussions in the WordPress community whether such features as posts relationships should be in the core or not. The practical result of these discussions belongs to the future. Meanwhile we could solve this relationship problem, in particular, with the help of Posts 2 Posts plugin through a few easy steps. </p>
<p>Of course, the example used in the tutorial is quite a basic one but it demonstrates the logic and flexibility of the P2P approach and its excellence in terms of integration with the core. If you have examples of interesting and creative implementations of this approach please share your experience with us. Lastly, let me use the last sentence to say many thanks to the P2P developer for the great and inspiring work. </p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/02/24/taking-control-of-wordpress-3-0-admin-bar/" title="Taking Control of WordPress 3.0 Admin Bar">Taking Control of WordPress 3.0 Admin Bar</a></li><li><a href="http://www.onextrapixel.com/2010/06/21/8-new-exciting-wordpress-3-0-features/" title="8 New Exciting WordPress 3.0 Features">8 New Exciting WordPress 3.0 Features</a></li><li><a href="http://www.onextrapixel.com/2010/03/19/practical-uses-for-the-post-thumbnail-function-in-wordpress-2-9/" title="Practical Uses for the Post-Thumbnail Function in WordPress 2.9">Practical Uses for the Post-Thumbnail Function in WordPress 2.9</a></li><li><a href="http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/" title="13 Useful WordPress SQL Queries You Wish You Knew Earlier">13 Useful WordPress SQL Queries You Wish You Knew Earlier</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=T8ZDwrgBxBg:zzKKUTaYhr4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=T8ZDwrgBxBg:zzKKUTaYhr4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=T8ZDwrgBxBg:zzKKUTaYhr4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=T8ZDwrgBxBg:zzKKUTaYhr4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=T8ZDwrgBxBg:zzKKUTaYhr4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=T8ZDwrgBxBg:zzKKUTaYhr4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=T8ZDwrgBxBg:zzKKUTaYhr4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=T8ZDwrgBxBg:zzKKUTaYhr4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=T8ZDwrgBxBg:zzKKUTaYhr4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/T8ZDwrgBxBg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/18/the-practical-guide-to-multiple-relationships-between-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/18/the-practical-guide-to-multiple-relationships-between-posts-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>Responsive Web Design – Ideas, Technology, and Examples</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/b5KF66dFiTI/</link>
		<comments>http://www.onextrapixel.com/2012/05/17/responsive-web-design-ideas-technology-and-examples/#comments</comments>
		<pubDate>Thu, 17 May 2012 11:00:16 +0000</pubDate>
		<dc:creator>Krishna Solanki</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17805</guid>
		<description><![CDATA[The web design industry is constantly evolving, whether that be with the latest trends in design – big header images, large photographic backgrounds, etc, or with the latest technologies – HTML5, jQuery, CSS3, and so on. It's important... <a href="http://www.onextrapixel.com/2012/05/17/responsive-web-design-ideas-technology-and-examples/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/b5CkPRNpQiM4t1BFBAHFwYdaH_4/0/da"><img src="http://feedads.g.doubleclick.net/~a/b5CkPRNpQiM4t1BFBAHFwYdaH_4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/b5CkPRNpQiM4t1BFBAHFwYdaH_4/1/da"><img src="http://feedads.g.doubleclick.net/~a/b5CkPRNpQiM4t1BFBAHFwYdaH_4/1/di" border="0" ismap="true"></img></a></p><p>The web design industry is constantly evolving, whether that be with the latest trends in design – big header images, large photographic backgrounds, etc, or with the latest technologies – HTML5, jQuery, CSS3, and so on. It's important as a <strong>web designer and developer</strong> to keep up with these ever changing “<em>trends</em>” within the industry.</p>
<p>One of the biggest “<em>trends</em>” that has hit this field over the past year or so, is the concept of <strong>responsive web design</strong>. It has become much more than just a buzz word and has taken the industry by storm. It is clearly not going away. If anything, if you haven’t already got on board with it, it maybe it's about time to start warming to the idea.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/responsive-cover.jpg" alt="Responsive Web Design" width="580" height="360" class="alignnone size-full wp-image-17815" /><br />
<span id="more-17805"></span></p>
<h2>Responsive Web Design</h2>
<h4>What is Responsive Web Design?</h4>
<p><a href="http://www.onextrapixel.com/2012/04/23/responsive-web-design-layouts-and-media-queries/">Responsive web design</a> is the term given to the concept of designing and developing a website so that the layout changes depending on the device/viewport on which the website is being viewed. By device, this could be a mobile phone, tablet, laptop, desktop computer, or even a smart TV. The term 'Responsive Web Design' was coined by its creator, Ethan Marcotte – his book is highly recommended reading <a href="http://www.abookapart.com/products/responsive-web-design" title="A Book Apart - Responsive Web Design">“A Book Apart - Responsive web design”</a></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/rwd-book.jpg" alt="Responsive Web Design Book" width="580" height="435" class="alignnone size-full wp-image-17817" /><br />
<i>Image source: <a href="http://www.flickr.com/photos/adactio/5818096043/" title="Responsive Web Design">Flickr</a></i></p>
<p>In the book, Ethan covers where the term 'Responsive Web Design' came from and why it was required.</p>
<p>As a start, its' important to understand that responsive web design is not one particular technology or item but in fact it is a collection of techniques and ideas, which together establish a new way of thinking in moving the web design industry forward.</p>
<h4>Why is Responsive Web Design Such a Big Thing?</h4>
<p>With technologies evolving and new products and devices being introduced to the market it's only natural that consumers will want to keep up with the latest gadgets that we become more and more reliant on.</p>
<p>First it was desktop computers and laptops, then mobile phones and tablets. What's next?</p>
<p>The fact that we are in an era where it is becoming easier to browse the web means that we need to make it easier for consumers to “reach” us and see what we have to offer, at their convenience.</p>
<p>We naturally have a requirement as designers and developers to provide our end user with the option, or rather, convenience to browse through whatever medium (within reason) they see fit. Therefore, we need to provide a clearer means of portraying the information on different screen sizes, whether this be big or small, vertically or horizontally.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/rw-menu-sketch.jpg" alt="Responsive Web Design Menu" width="580" height="400" class="alignnone size-full wp-image-17818" /><br />
<i>Image source: <a href="http://www.flickr.com/photos/dennischeatham/6018649433/" title="Responsive Web Design Menu">Flickr</a></i></p>
<p>It has been noted that in the past creating different versions of a website was the way forward, however it was not the most practical solution, especially as in most cases the user would end up having to download a lot of extra code and design, alongside receiving a poor user journey.<br />
This is why responsive web design has become such a big thing.</p>
<p>Responsive web design provides us with the solution of meeting these requirements without having to create and design different versions of a website depending on the device.</p>
<p>One point to make is that from a business perspective it is not essential we make these changes or adjustments, but rather by doing so we are inevitably meeting the unconscious needs of our end user.</p>
<p>OK so we know what responsive web design is and we know why we may need it. The next step would be how to go about producing it.</p>
<h4>How to Make a Website Responsive</h4>
<p>As mentioned earlier responsive web design is a collection of techniques and ideas. The two main techniques consist of <a href="http://www.onextrapixel.com/2011/02/04/the-rising-importance-of-flexible-web-layouts/">flexible grid</a> and media queries.</p>
<p><strong>Flexible grid</strong><br />
When <a href="http://www.onextrapixel.com/2011/09/12/create-a-responsive-web-design-template/">designing a website</a> we first start off in Photoshop, making sure each element is designed to pixel perfect measurements. We then translate this design into code, all again based on pixels.</p>
<p>This is fine, and still correct. The website will be viewable all on devices, however not in the most convenient manner, or the prettiest. Stating pixel measurements and viewing on a screen smaller than the one it is intended for forces horrible scrollbars to appear.</p>
<p>Hence we need a solution that is fluid, more relative to the issue, but also keeps its proportional values.</p>
<p>To find a proportional value of an item we use the formula:</p>
<blockquote><p>“ target / content = results ”</p></blockquote>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/target-context-result.jpg" alt="Target + Context = Result" width="580" height="400" class="alignnone size-full wp-image-17819" /><br />
<i>Image source: <a href="Target + Context = Result" title="Beep2">Flickr</a></i></p>
<p>It's quite an important formula and one that is key to making designs responsive.</p>
<p>If all values are proportional then the grid based design will scale nicely between devices. So, in other words, no scrollbars.</p>
<p>So, for example, using a Photoshop design mock up, we can find the layout width, typically this could be 960px (this being your main body container).  Now say you want this container to “shrink” to 310px wide then the formula would read as follows: </p>
<blockquote><p>310px / 960px = 0.32291666666667</p></blockquote>
<p>To obtain the percentage value we multiply by 100 to get: 32.291666666667%</p>
<p>More often than not the percentage value may result in NOT being a whole number. If this is the case then it is important to NOT round up or down to the nearest whole number. Although it may look pretty, your machine will understand the figures in a proportional manner, so its important to keep them as they are!</p>
<p><a href="http://www.thegridsystem.org/" title="The Grid System">The Grid System</a><br />
Perfect grid layout that can be very useful.</p>
<p><a href="http://www.thegridsystem.org/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/grid-system.jpg" alt="The Grid System" width="580" height="400" class="alignnone size-full wp-image-17813" /></a></p>
<p>Once the fluid grid is in place, the web design is scalable but not responsive.</p>
<p>That is where media queries come into play.</p>
<h4>Media Queries</h4>
<p>CSS3 media queries go hand in hand with the flexible grid to make responsive web design work.</p>
<p>Luckily CSS3 is supported by many modern browsers.</p>
<p>Media queries were first investigated by <a href="http://www.w3.org/TR/css3-mediaqueries/" title="W3C">W3C</a> a few years ago. A media query allows you to gain information about the viewport from which the user/visitor is looking at the website and target that particular screen size by applying specific CSS styles.</p>
<p>For the purpose of making web sites responsive it can be said that the most important media feature is the “min-width”, this property allows us to apply specific CSS styles if the browser window (in pixels) drops below a particular width.</p>
<p>As a starting point, and possibly the most common pixel min-widths that are targeted are the following:</p>
<ul>
<li>320px</li>
<li>480px</li>
<li>600px</li>
<li>768px</li>
<li>900px</li>
<li>1200px</li>
</ul>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/platform-measurements.jpg" alt="Responsive Design Platform Measurements" width="580" height="503" class="alignnone size-full wp-image-17814" /><br />
<i>Image source: <a href="http://www.flickr.com/photos/uxmosis/6792041360" title="Responsive Design Platform Measurements">Flickr</a></i></p>
<p>It goes without saying that targeting more resolutions will naturally require more time and effort, so it generally depends on the clients' requirements and your judgment as to whether targeting all resolutions is necessary or not.</p>
<h4>Progressive Enhancement</h4>
<p><a href="http://www.onextrapixel.com/2010/03/26/progressive-enhancement-what-it-is-and-how-to-use-it/">Progressive enhancement</a> is the term or rather strategy for web design which focuses on the content, rather than device or browser. The aim is to enhance the web design by creating semantic HTML markup and giving prominence to accessibility and content.</p>
<p>Many web designers will argue that content is the most important element of a website project and should therefore be considered ahead of the presentation layer, or design.</p>
<p>With this in mind, we could relate <a href="http://www.onextrapixel.com/2010/10/21/progressive-enhancement-the-beauty-of-alternatives/">progressive enhancement</a> to responsive web design by aiming to design for mobile first.</p>
<p>Essentially when designing for mobile first the restriction due to the smaller screen automatically pushes the thought process into considering what important elements (content) need to be featured for this device.  Therefore we naturally start to design around content.</p>
<p>Obviously as the screen sizes differ between tablets, laptops and desktops more space is available and therefore secondary content (social media or RSS links) can be added in a "nice to have" manner for the larger mediums.</p>
<p>It can be said that <a href="http://www.onextrapixel.com/2012/01/02/design-best-practices-for-the-mobile-web/">designing for mobiles</a> enriches the experience of the user by focusing on the content and providing them, the user, with what is considered the most important elements on first view/load.  </p>
<h4>Showcase of Responsive Web Designs in Action</h4>
<p>Below are a <a href="http://www.onextrapixel.com/2011/09/30/40-inspiring-responsive-websites/">few examples of responsive web design</a> in action. The screenshots show a couple of the variations, however to see the full variation of each site (in some cases there are more than others), view the website and change the browser window size. Alternatively view the website on a different device.</p>
<p><a href="http://2011.full-frontal.org/" title="Full Frontal">Full Frontal</a><br />
<a href="http://2011.full-frontal.org/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/fullfrontal.jpg" alt="Full Frontal" width="580" height="314" class="alignnone size-full wp-image-17812" /></a></p>
<p><a href="http://futureofwebdesign.com/landing-page" title="Future of Web Design London">Future of Web Design London</a><br />
<a href="http://futureofwebdesign.com/landing-page"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/fowd.jpg" alt="Future of Web Design London" width="580" height="314" class="alignnone size-full wp-image-17811" /></a></p>
<p><a href="http://clearairchallenge.com/" title="Clean Air Challenge">Clear Air Challenge</a><br />
<a href="http://clearairchallenge.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/cleanair.jpg" alt="Clean Air Challenge" width="580" height="314" class="alignnone size-full wp-image-17808" /></a></p>
<p><a href="http://forefathersgroup.com/" title="Forefathers Group">Forefathers Group</a><br />
<a href="http://forefathersgroup.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/forefathers.jpg" alt="Forefathers Group" width="580" height="314" class="alignnone size-full wp-image-17810" /></a></p>
<p><a href="http://www.anderssonwise.com/" title="Andersson-Wise">Andersson-Wise</a><br />
<a href="http://www.anderssonwise.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/anderson.jpg" alt="Andersson-Wise" width="580" height="314" class="alignnone size-full wp-image-17806" /></a></p>
<p><a href="http://bostonglobe.com/" title="The Boston Globe">The Boston Globe</a><br />
<a href="http://bostonglobe.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/bostonGlobe.jpg" alt="The Boston Globe" width="580" height="314" class="alignnone size-full wp-image-17807" /></a></p>
<p><a href="http://cssgrid.net/" title="1140 CSS Grid">1140 CSS Grid</a><br />
<a href="http://cssgrid.net/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/css-grid.jpg" alt="1140 CSS Grid" width="580" height="314" class="alignnone size-full wp-image-17809" /></a></p>
<p><a href="http://www.laufbild-werkstatt.de/" title="Laufbild Werkstatt">Laufbild Werkstatt</a><br />
<a href="http://www.laufbild-werkstatt.de/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/laufid.jpg" alt="Laufbild Werkstatt" width="580" height="314" class="alignnone size-full wp-image-17820" /></a></p>
<h4>Responsive Web Design Resources</h4>
<ul>
<li><a href="http://mobilewebbestpractices.com/resources/">Mobile Web Resources</a></li>
<li><a href="http://caniuse.com/css-mediaqueries">CSS3 Media Queries</a></li>
<li><a href="http://filamentgroup.com/lab/responsive_images_experimenting_with_context_aware_image_sizing/">Responsive Images: Experimenting with Context-Aware Image Sizing</a></li>
<li><a href="http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/">Creating Intrinsic Ratios for Video</a></li>
<li><a href="http://unstoppablerobotninja.com/entry/fluid-images">Fluid Images</a></li>
<li><a href="http://thinkvitamin.com/design/beginners-guide-to-responsive-web-design/">Beginner’s Guide to Responsive Web Design</a></li>
<li><a href="http://elliotjaystocks.com/blog/a-better-photoshop-grid-for-responsive-web-design/">A Better Photoshop Grid for Responsive Web Design</a></li>
</ul>
<p>Responsive web design concentrates quite heavily on devices, viewports and how to gracefully degrade the designs we create across these mediums. In all of the “<em>hype</em>” about RWD we shouldn’t forget Progressive enhancement and its relationship with responsive web design.</p>
<h2>Conclusion</h2>
<p>It's safe to say that as technology evolves and new gadgets are invented, new trends happen. </p>
<p><strong>Do you think responsive web design is here to stay? What do you think of responsive web design? Let us know what you think at the bottom of this article.</strong></p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/04/23/responsive-web-design-layouts-and-media-queries/" title="Responsive Web Design: Layouts and Media Queries">Responsive Web Design: Layouts and Media Queries</a></li><li><a href="http://www.onextrapixel.com/2012/04/18/40-beautiful-watercolor-effects-in-web-design/" title="40 Beautiful Watercolor Effects in Web Design">40 Beautiful Watercolor Effects in Web Design</a></li><li><a href="http://www.onextrapixel.com/2012/04/02/neuro-web-design-tips-and-techniques/" title="Neuro Web Design: Tips and Techniques">Neuro Web Design: Tips and Techniques</a></li><li><a href="http://www.onextrapixel.com/2012/03/30/is-the-development-community-alive/" title="Is the Development Community Alive?">Is the Development Community Alive?</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=b5KF66dFiTI:2efT7t_zwR4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=b5KF66dFiTI:2efT7t_zwR4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=b5KF66dFiTI:2efT7t_zwR4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=b5KF66dFiTI:2efT7t_zwR4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=b5KF66dFiTI:2efT7t_zwR4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=b5KF66dFiTI:2efT7t_zwR4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=b5KF66dFiTI:2efT7t_zwR4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=b5KF66dFiTI:2efT7t_zwR4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=b5KF66dFiTI:2efT7t_zwR4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/b5KF66dFiTI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/17/responsive-web-design-ideas-technology-and-examples/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/17/responsive-web-design-ideas-technology-and-examples/</feedburner:origLink></item>
		<item>
		<title>Artistic, Creative and Imaginative Painted Fingers and Hands</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/omMom_q4HGE/</link>
		<comments>http://www.onextrapixel.com/2012/05/16/artistic-creative-and-imaginative-painted-fingers-and-hands/#comments</comments>
		<pubDate>Wed, 16 May 2012 11:00:07 +0000</pubDate>
		<dc:creator>Carol Francis</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[creativity]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17935</guid>
		<description><![CDATA[Boredom or spare 'empty' time can inspire people to do the strangest things with great results! Finger art is just one of those strange but magical pastimes. There is probably more patience than skill required for the majority... <a href="http://www.onextrapixel.com/2012/05/16/artistic-creative-and-imaginative-painted-fingers-and-hands/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/oowJ4qGZ0zRFrmf8sj-M-71KQV8/0/da"><img src="http://feedads.g.doubleclick.net/~a/oowJ4qGZ0zRFrmf8sj-M-71KQV8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/oowJ4qGZ0zRFrmf8sj-M-71KQV8/1/da"><img src="http://feedads.g.doubleclick.net/~a/oowJ4qGZ0zRFrmf8sj-M-71KQV8/1/di" border="0" ismap="true"></img></a></p><p>Boredom or spare 'empty' time can inspire people to do the strangest things with great results!</p>
<p><strong>Finger art</strong> is just one of those strange but magical pastimes. There is probably more patience than skill required for the majority of examples of finger art, but in my opinion, patience is a skill in itself.</p>
<p>Here we have collected some very creative and effective finger art, followed by some painted hands that are truly artistically, imaginatively and skillfully created. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-cover.jpg" alt="Artistic, Creative and Imaginative Painted Fingers and Hands" width="580" height="360" class="alignnone size-full wp-image-17982" /><br />
<span id="more-17935"></span></p>
<h2>Artistic, Creative and Imaginative Painted Fingers and Hands</h2>
<p><a href="http://my.opera.com/Matta/albums/show.dml?id=71433" title="Funny Fingers from Matta">Funny Fingers from Matta</a><br />
<a href="http://my.opera.com/Matta/albums/show.dml?id=71433"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-1.jpg" alt="Funny Fingers" width="580" height="435" class="alignnone size-full wp-image-17947" /></a></p>
<p><a href="http://my.opera.com/Matta/albums/show.dml?id=71433"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-2.jpg" alt="Funny Fingers" width="580" height="435" class="alignnone size-full wp-image-17948" /></a></p>
<p><a href="http://my.opera.com/Matta/albums/show.dml?id=71433"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-3.jpg" alt="Funny Fingers" width="580" height="435" class="alignnone size-full wp-image-17949" /></a></p>
<p><a href="http://my.opera.com/Matta/albums/show.dml?id=71433"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-4.jpg" alt="Funny Fingers" width="580" height="435" class="alignnone size-full wp-image-17950" /></a></p>
<p><a href="http://my.opera.com/Matta/albums/show.dml?id=71433"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-5.jpg" alt="Funny Fingers" width="580" height="435" class="alignnone size-full wp-image-17951" /></a></p>
<p><a href="http://my.opera.com/Matta/albums/show.dml?id=71433"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-6.jpg" alt="Funny Fingers" width="580" height="435" class="alignnone size-full wp-image-17952" /></a> </p>
<p><a href="http://www.flickr.com/photos/dullhunk/7026328819" title="Finger Art by Nader Yamoun">Finger Art by Nader Yamoun</a><br />
<a href="http://www.flickr.com/photos/dullhunk/7026328819"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-7.jpg" alt="Finger Art by Nader Yamoun" width="580" height="420" class="alignnone size-full wp-image-17953" /></a></p>
<p><a href="http://www.flickr.com/photos/sangluizuhtam/3085256549/" title="Meet the Mr &amp; Mrs Berry">Meet the Mr &amp; Mrs Berry</a><br />
<a href="http://www.flickr.com/photos/sangluizuhtam/3085256549/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-8.jpg" alt="Meet the Mr &amp; Mrs Berry" width="580" height="463" class="alignnone size-full wp-image-17954" /></a></p>
<p><a href="http://www.flickr.com/photos/64933973@N08/6531086759" title="Sleeping Hug">Sleeping Hug</a><br />
<a href="http://www.flickr.com/photos/64933973@N08/6531086759"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-9.jpg" alt="Sleeping Hug" width="580" height="435" class="alignnone size-full wp-image-17955" /></a></p>
<p><a href="http://www.flickr.com/photos/chantellefritz/6076765970" title="Finger Art">Finger Art</a><br />
<a href="http://www.flickr.com/photos/chantellefritz/6076765970"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-10.jpg" alt="Finger Art" width="580" height="435" class="alignnone size-full wp-image-17956" /></a></p>
<p><a href="http://www.flickr.com/photos/63265516@N07/5925574982" title="Mr Index">Mr Index</a><br />
<a href="http://www.flickr.com/photos/63265516@N07/5925574982"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-11.jpg" alt="Mr Index" width="580" height="326" class="alignnone size-full wp-image-17957" /></a></p>
<p><a href="http://www.flickr.com/photos/58825115@N04/5921814296" title="John Wayne">John Wayne</a><br />
<a href="http://www.flickr.com/photos/58825115@N04/5921814296"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-12.jpg" alt="John Wayne" width="580" height="416" class="alignnone size-full wp-image-17958" /></a></p>
<p><a href="http://www.flickr.com/photos/58825115@N04/5921250091" title="Madame Lila">Madame Lila</a><br />
<a href="http://www.flickr.com/photos/58825115@N04/5921250091"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-13.jpg" alt="Madame Lila" width="580" height="585" class="alignnone size-full wp-image-17959" /></a></p>
<p><a href="http://www.flickr.com/photos/58825115@N04/5627097673" title="Three Amigos">Three Amigos</a><br />
<a href="http://www.flickr.com/photos/58825115@N04/5627097673"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-14.jpg" alt="Three Amigos" width="580" height="440" class="alignnone size-full wp-image-17960" /></a></p>
<p><a href="http://www.flickr.com/photos/hayley_wigginton/5532382548" title="Zzzzzz">Zzzzzz</a><br />
<a href="http://www.flickr.com/photos/hayley_wigginton/5532382548"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-15.jpg" alt="Zzzzzz" width="580" height="435" class="alignnone size-full wp-image-17961" /></a></p>
<p><a href="http://www.flickr.com/photos/limoneti/4657130971" title="Parisino">Parisino</a><br />
<a href="http://www.flickr.com/photos/limoneti/4657130971"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-16.jpg" alt="Parisino" width="580" height="712" class="alignnone size-full wp-image-17962" /></a></p>
<p><a href="http://www.flickr.com/photos/squeekerd1/1408606518" title="Day 31/365">Day 31/365</a><br />
<a href="http://www.flickr.com/photos/squeekerd1/1408606518"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-17.jpg" alt="Day 31/365" width="580" height="393" class="alignnone size-full wp-image-17963" /></a></p>
<p><a href="http://shutter-shooter.deviantart.com/art/Nom-nom-nom-272921909" title="Nom Nom Nom">Nom Nom Nom</a><br />
<a href="http://shutter-shooter.deviantart.com/art/Nom-nom-nom-272921909"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-18.jpg" alt="Nom Nom Nom" width="580" height="435" class="alignnone size-full wp-image-17964" /></a></p>
<p><a href="http://shutter-shooter.deviantart.com/art/Killer-278047476" title="Killer">Killer</a><br />
<a href="http://shutter-shooter.deviantart.com/art/Killer-278047476"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-19.jpg" alt="Killer" width="580" height="394" class="alignnone size-full wp-image-17965" /></a></p>
<p><a href="http://chocohoops.deviantart.com/art/Demon-Finger-294085507" title="Demon Finger">Demon Finger</a><br />
<a href="http://chocohoops.deviantart.com/art/Demon-Finger-294085507"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-20.jpg" alt="Demon Finger" width="580" height="296" class="alignnone size-full wp-image-17966" /></a></p>
<p><a href="http://www.flickr.com/photos/jojoneil/6257475603/" title="Doigt Prepare pour l'Hivers">Doigt Prepare pour l'Hivers</a><br />
<a href="http://www.flickr.com/photos/jojoneil/6257475603/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-21.jpg" alt="Doigt Prepare pour l&#039;Hivers" width="580" height="385" class="alignnone size-full wp-image-17967" /></a></p>
<p><a href="http://www.flickr.com/photos/lawliett/4038205385/" title="Reading is Cool!">Reading is Cool!</a><br />
<a href="http://www.flickr.com/photos/lawliett/4038205385/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-22.jpg" alt="Reading is Cool!" width="580" height="531" class="alignnone size-full wp-image-17968" /></a></p>
<p><a href="http://www.flickr.com/photos/jojoneil/5958411966/" title="Fifi Doigtdacier">Fifi Doigtdacier</a><br />
<a href="http://www.flickr.com/photos/jojoneil/5958411966/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-23.jpg" alt="Fifi Doigtdacier" width="580" height="421" class="alignnone size-full wp-image-17969" /></a></p>
<p><a href="http://www.flickr.com/photos/mickeysacks/2183885917/" title="Jan 10 day 355 of 365">Jan 10 day 355 of 365</a><br />
<a href="http://www.flickr.com/photos/mickeysacks/2183885917/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-24.jpg" alt="Jan 10 day 355 of 365" width="580" height="516" class="alignnone size-full wp-image-17970" /></a></p>
<p><a href="http://www.flickr.com/photos/weylertomas/3212943121/" title="Finger Punk!">Finger Punk!</a><br />
<a href="http://www.flickr.com/photos/weylertomas/3212943121/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-25.jpg" alt="Finger Punk" width="580" height="388" class="alignnone size-full wp-image-17971" /></a></p>
<p><a href="http://www.flickr.com/photos/limoneti/4657127635/" title="Raperos">Raperos</a><br />
<a href="http://www.flickr.com/photos/limoneti/4657127635/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-26.jpg" alt="Raperos" width="580" height="712" class="alignnone size-full wp-image-17972" /></a></p>
<p><a href="http://www.flickr.com/photos/jurodullboy/5694104137/" title="DanzaUngherese">DanzaUngherese</a><br />
<a href="http://www.flickr.com/photos/jurodullboy/5694104137/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-27.jpg" alt="DanzaUngherese" width="580" height="404" class="alignnone size-full wp-image-17973" /></a></p>
<p><a href="http://www.flickr.com/photos/58825115@N04/5921815306/" title="Mr Einstein">Mr Einstein</a><br />
<a href="http://www.flickr.com/photos/58825115@N04/5921815306/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-28.jpg" alt="Mr Einstein" width="580" height="626" class="alignnone size-full wp-image-17974" /></a></p>
<p><a href="http://www.flickr.com/photos/pil_mupa/4820447680/" title="Abrigos">Abrigos </a><br />
<a href="http://www.flickr.com/photos/pil_mupa/4820447680/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-29.jpg" alt="Abrigos" width="580" height="380" class="alignnone size-full wp-image-17975" /></a></p>
<p><a href="http://www.flickr.com/photos/acidblood/242929312/" title="Ladri Finger">Ladri Finger</a><br />
<a href="http://www.flickr.com/photos/acidblood/242929312/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-30.jpg" alt="Ladri Finger" width="580" height="435" class="alignnone size-full wp-image-17976" /></a></p>
<p><a href="http://www.flickr.com/photos/pil_mupa/4819152488/" title="Paseo por el Campo">Paseo por el Campo</a><br />
<a href="http://www.flickr.com/photos/pil_mupa/4819152488/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-31.jpg" alt="Paseo por el Campo" width="580" height="434" class="alignnone size-full wp-image-17977" /></a></p>
<p><a href="http://www.flickr.com/photos/chantellefritz/5987560669/" title="Catching Some Rays">Catching Some Rays</a><br />
<a href="http://www.flickr.com/photos/chantellefritz/5987560669/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-32.jpg" alt="Catching Some Rays" width="580" height="376" class="alignnone size-full wp-image-17978" /></a></p>
<p><a href="http://www.flickr.com/photos/pil_mupa/4864674377/" title="Pelen!">Pelen!</a><br />
<a href="http://www.flickr.com/photos/pil_mupa/4864674377/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-33.jpg" alt="Pelen!" width="580" height="962" class="alignnone size-full wp-image-17979" /></a></p>
<p><a href="http://www.flickr.com/photos/amylynnstudio/6683125555/" title="Happy Snow Day">Happy Snow Day!</a><br />
<a href="http://www.flickr.com/photos/amylynnstudio/6683125555/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-34.jpg" alt="Happy Snow Day!" width="580" height="667" class="alignnone size-full wp-image-17980" /></a></p>
<p><a href="http://www.flickr.com/photos/hayley_wigginton/5532395006/" title="Woops!">Woops!</a><br />
<a href="http://www.flickr.com/photos/hayley_wigginton/5532395006/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/painted-fingers-35.jpg" alt="Woops!" width="580" height="413" class="alignnone size-full wp-image-17981" /></a> </p>
<h4>Painted Hands</h4>
<p>The following showcase is from the painted hands created by Guido Daniele, which have been given the name 'hanimals'. They are examples of stunning artistry and creativity. They can all be found on the <a href="http://www.guidodaniele.com/" title="Guido Daniele Website">Guido Daniele website</a>.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-1.jpg" alt="Bald Eagle" width="580" height="415" class="alignnone size-full wp-image-17936" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-2.jpg" alt="Bull" width="580" height="411" class="alignnone size-full wp-image-17937" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-3.jpg" alt="Cat" width="580" height="395" class="alignnone size-full wp-image-17938" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-4.jpg" alt="Chameleon" width="580" height="387" class="alignnone size-full wp-image-17939" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-5.jpg" alt="Cobra" width="580" height="387" class="alignnone size-full wp-image-17940" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-6.jpg" alt="Elephant" width="580" height="395" class="alignnone size-full wp-image-17941" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-7.jpg" alt="Parrot" width="580" height="386" class="alignnone size-full wp-image-17942" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-8.jpg" alt="Swan" width="580" height="389" class="alignnone size-full wp-image-17943" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-9.jpg" alt="Zebra" width="580" height="395" class="alignnone size-full wp-image-17944" /></p>
<p>The following hand paintings are also the creations of Guido Daniele, and are from a range created for an advertising campaign.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-10.jpg" alt="AT &amp; T Italy Rialto Bridge" width="580" height="387" class="alignnone size-full wp-image-17945" /></p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/hand-painting-11.jpg" alt="AT &amp; T China Great Wall" width="580" height="387" class="alignnone size-full wp-image-17946" /></p>
<h2>Conclusion</h2>
<p>I hope the painted fingers made you smile, and the painted hands produced the wow-factor for you.</p>
<p>Have you come across any painted fingers that are comical or cleverly imaginative that we missed from this list?</p>
<p>Please share your opinions and links with us in the section below.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/04/05/26-creative-modern-office-designs-from-around-the-world/" title="26 Creative &amp; Modern Office Designs from Around the World">26 Creative &amp; Modern Office Designs from Around the World</a></li><li><a href="http://www.onextrapixel.com/2012/02/23/a-tribute-to-the-dragon-35-awesome-examples-of-bruce-lee-artwork/" title="A Tribute to the Dragon – 35 Awesome Examples of Bruce Lee Artwork">A Tribute to the Dragon – 35 Awesome Examples of Bruce Lee Artwork</a></li><li><a href="http://www.onextrapixel.com/2012/01/25/year-of-the-dragon-outstanding-dragon-digital-art/" title="Year of the Dragon – Outstanding Dragon Digital Art">Year of the Dragon – Outstanding Dragon Digital Art</a></li><li><a href="http://www.onextrapixel.com/2012/01/24/showcase-of-creative-booklet-designs/" title="Showcase of Creative Booklet Designs">Showcase of Creative Booklet Designs</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=omMom_q4HGE:TbEAWmKo6Cc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=omMom_q4HGE:TbEAWmKo6Cc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=omMom_q4HGE:TbEAWmKo6Cc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=omMom_q4HGE:TbEAWmKo6Cc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=omMom_q4HGE:TbEAWmKo6Cc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=omMom_q4HGE:TbEAWmKo6Cc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=omMom_q4HGE:TbEAWmKo6Cc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=omMom_q4HGE:TbEAWmKo6Cc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=omMom_q4HGE:TbEAWmKo6Cc:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/omMom_q4HGE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/16/artistic-creative-and-imaginative-painted-fingers-and-hands/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/16/artistic-creative-and-imaginative-painted-fingers-and-hands/</feedburner:origLink></item>
		<item>
		<title>Betterment: Make Your Money Work Harder for Freelancers</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/037fBJokMyA/</link>
		<comments>http://www.onextrapixel.com/2012/05/15/betterment-make-your-money-work-harder-for-freelancers/#comments</comments>
		<pubDate>Tue, 15 May 2012 11:00:40 +0000</pubDate>
		<dc:creator>Onextrapixel Team</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17905</guid>
		<description><![CDATA[Studies have shown, that if you can picture your future-self, it’s easier to increase savings – so how do you see yourself in the future? People always have the mindset of working hard for money to secure their... <a href="http://www.onextrapixel.com/2012/05/15/betterment-make-your-money-work-harder-for-freelancers/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/NimgU9yS9ldtdWIcDodvJalIMek/0/da"><img src="http://feedads.g.doubleclick.net/~a/NimgU9yS9ldtdWIcDodvJalIMek/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NimgU9yS9ldtdWIcDodvJalIMek/1/da"><img src="http://feedads.g.doubleclick.net/~a/NimgU9yS9ldtdWIcDodvJalIMek/1/di" border="0" ismap="true"></img></a></p><p>Studies have shown, that if you can picture your future-self, it’s easier to increase savings – so how do you see yourself in the future?</p>
<p>People always have the mindset of working hard for money to <strong>secure their future or retirement</strong> but in these uncertain times where inflation, high cost of living, economic crisis and other mitigating factors, just working hard may not be the solution for a comfortable life in the future. This is especially important for freelancers where a fixed salary is often impossible. So you would want to make your money work harder, but how?</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/betterment.jpg" alt="Betterment: Make Your Money Work Harder for Freelancers" title="Betterment: Make Your Money Work Harder for Freelancers" width="580" height="360" class="alignnone size-full wp-image-17907" /><br />
<span id="more-17905"></span></p>
<p>Well, you could try your luck on the lottery or gambling but this is definitely not recommended as the risk is high and the returns are unreliable. So the next thing you can turn to is investment, but are you undecided about which type of investment portfolio suits you? Do you lack the knowledge of what type of investment product to invest in? Do the terms, stocks, options, futures, bonds, mutual funds, certificates of deposit, money market investments, ETFs, Unit trusts and annuities confuse or even intimidate you?</p>
<p>That is where <a href="http://www.betterment.com/">Betterment</a> comes in.</p>
<p><a href="https://www.betterment.com/url?c=1967"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/betterment-banner.jpg" alt="Betterment" title="Betterment" width="468" height="60" class="alignnone size-full wp-image-17930" /></a></p>
<h2>What is Betterment?</h2>
<p>Betterment is a smart, simple way to invest, especially for freelancers and designers. Betterment allows freelancers to enjoy the investment benefits that their corporate counterparts receive, without having employer-sponsored retirement or investing benefits. This is because they can open both regular investing accounts to save for things like a house or more education, as well as IRA accounts to get some tax-advantaged retirement savings.</p>
<p>Well, let’s look at the idea behind Betterment. By shouldering the complexity of various investment products and removing lots of unnecessary choices, it’s investment made easy with Betterment. </p>
<p>Here’s a video run-down of how Betterment works:</p>
<p><iframe width="580" height="325" src="http://www.youtube.com/embed/pQOUdr1IlgU" frameborder="0" allowfullscreen></iframe></p>
<h2>Why Betterment is Great for Freelancers</h2>
<p>Betterment is a perfect investing product for freelancers and designers because:</p>
<ul>
<li>It has a sleek and simple UI - Signing up takes less than a minute, and determining how much money you want to invest in stocks versus bonds (your asset allocation) is as simple as moving a slider.</li>
<li>Betterment is quick and easy to use. Freelancers are busy with their projects and clients and do not have time to constantly check and manage investment accounts. Everything with Betterment is a matter of a quick click or slider. Moreover, customers do not have to spend time picking the stocks or bonds in which they'd like to invest since Betterment has already done the work of creating a diversified portfolio (representing over 3500 companies in the US and abroad through 8 ETFs) for all of their customers.</li>
<li>You can even access your Betterment account online or on your iPhone.</li>
<li>Freelancing/design work can often be unpredictable as far as income is concerned, so freelancers often need to have quick access to their cash in an emergency. Most investment accounts come with minimums and withdrawal penalties, but with Betterment, there are no minimums and you can access your money at any time without a fee or penalty. Betterment combines the ease of online banking with the higher returns of investing in stocks and bonds.</li>
<li>Many designers, freelancers, and entrepreneurs are already using Betterment! You can <a href="https://www.betterment.com/who/entrepreneurs/">check out some of them here</a>.</li>
<li>Betterment was built by some of the best developers and designers in the financial technology space, so they understand how designers think! They won Best NY Startup at Tech Crunch Disrupt in 2010 and Best of Show at Finovate Fall 2010.</li>
<li>Aside from those details, the way Betterment works is simple: You sign up, link your bank account, and set up investing goals, whether those goals are retirement, a vacation, a house, etc. They will recommend the right asset allocation and monthly contributions to make in order to achieve those goals, and you can always go back to the Betterment platform for more advice. </li>
<li>Betterment takes care of important details for you: you are automatically diversified across the 8 ETFs, they automatically re-balance your account, and you can set up automatic deposits so you can regularly invest without lifting a finger. </li>
</ul>
<h4>Pricing</h4>
<p>The only fee Betterment customers ever pay is an annual management fee, which is 0.15% to 0.35% of your balance. You can see more <a href="http://www.betterment.com/pricing/">details on pricing here</a>.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/pricing.jpg" alt="Pricing" title="Pricing" width="580" height="271" class="alignnone size-full wp-image-17910" /></p>
<h4>Great Features</h4>
<p>Betterment is very different from a traditional brokerage. After you open a Betterment account and connect a bank account, you will then choose your investing goal and timeline followed by your asset allocation.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/feature.jpg" alt="Great Features" title="Great Features" width="580" height="616" class="alignnone size-full wp-image-17908" /></p>
<p>After that, Betterment basically goes into autopilot mode and handles the rest. You are free to move on and let Betterment do their work. Betterment will invest your money in a mix of six stock Exchange Traded Funds (ETFs) and/or two Treasury bond ETFs.  If you set up an automatic investing transfer (highly recommended) then Betterment will pull the money each month and invest it using the original asset allocation. </p>
<p>They also periodically re-balance your investments so that you maintain the proper asset allocation. For the management of your investments, Betterment charges a fee of 0.15% to 0.35%, depending on your account balance. There are no others fees that Betterment charges and no hidden fees, and there are also no minimum balance or investing requirements.</p>
<h4>Free Allocation and Visualization tools</h4>
<p>Betterment offers free allocation and visualization tools that they have available. The tools make it easy for the average investor to see what kind of returns they might project (given historical returns) if they invest with a 5, 10, 20 or even 30-year time horizon. Once you decide upon an allocation and time horizon that you are comfortable with, simply hit the button to change your allocation, and within a few minutes your changes are made!  </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/demo.jpg" alt="Demo" title="Demo" width="632" height="419" class="alignnone size-full wp-image-17911" /></p>
<p>You can check out <a href="https://wwws.betterment.com/App.html#Demo">their online demo here</a>.</p>
<h2>Conclusion</h2>
<p>Investing could be a very tedious and time-consuming chore. That’s why Betterment comes in to take over your investment woes so you can concentrate on other more immediately important stuff. Betterment is very easy to use and simple to get started in less than 5 minutes. They strongly encourage automated investing and offer retirement investing through IRAs. </p>
<p>The best part is that they are highly liquid so you can move your money in and out of the brokerage without any fees or lock-in requirement. With the transparency of their fees and their sound knowledge of fund choices to broad index-based ETFs, Betterment could be well worth a try for anyone.</p>
<p><a href="https://www.betterment.com/url?c=1967"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/betterment-banner.jpg" alt="Betterment" title="Betterment" width="468" height="60" class="alignnone size-full wp-image-17930" /></a></p>
<p><strong><em>Disclaimer: Please note that Betterment is only for customers in the US.</em></strong></p>
<p><em>PS: The opinions and views presented in this article on Betterment are solely those of the author and do not necessarily represent those of the company. We strongly encourage you to try the recommended product/service to experience it personally.</em></p>
<h2  class="related_post_title">Random Posts</h2><ul class="related_post"><li><a href="http://www.onextrapixel.com/2010/09/01/69-sexy-and-explicit-advertisements-see-it-creatively/" title="69 Sexy and Explicit Advertisements: See It Creatively">69 Sexy and Explicit Advertisements: See It Creatively</a></li><li><a href="http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/" title="13 Useful WordPress SQL Queries You Wish You Knew Earlier">13 Useful WordPress SQL Queries You Wish You Knew Earlier</a></li><li><a href="http://www.onextrapixel.com/2012/01/30/understanding-domain-names-why-and-when/" title="Understanding Domain Names: Why and When?">Understanding Domain Names: Why and When?</a></li><li><a href="http://www.onextrapixel.com/2011/01/06/the-designers-republic-guide-to-catchy-color-combinations/" title="The Designers Republic Guide to Catchy Color Combinations">The Designers Republic Guide to Catchy Color Combinations</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=037fBJokMyA:fKKI2ztTB4M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=037fBJokMyA:fKKI2ztTB4M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=037fBJokMyA:fKKI2ztTB4M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=037fBJokMyA:fKKI2ztTB4M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=037fBJokMyA:fKKI2ztTB4M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=037fBJokMyA:fKKI2ztTB4M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=037fBJokMyA:fKKI2ztTB4M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=037fBJokMyA:fKKI2ztTB4M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=037fBJokMyA:fKKI2ztTB4M:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/037fBJokMyA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/15/betterment-make-your-money-work-harder-for-freelancers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/15/betterment-make-your-money-work-harder-for-freelancers/</feedburner:origLink></item>
		<item>
		<title>Showcase of 50 Stunning Poster Designs</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/VH8oiU8_yxU/</link>
		<comments>http://www.onextrapixel.com/2012/05/14/showcase-of-50-stunning-poster-designs/#comments</comments>
		<pubDate>Mon, 14 May 2012 11:00:21 +0000</pubDate>
		<dc:creator>Jameel Khan</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=15813</guid>
		<description><![CDATA[Although often overlooked, posters are, for sure one of the most excellent ways in which you can effectively communicate your clients’ information to their prospective customers or buyers. Although in the graphics industry designing or printing a poster... <a href="http://www.onextrapixel.com/2012/05/14/showcase-of-50-stunning-poster-designs/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/tXux8BtN40_FLf4hX9_8MmsMNP0/0/da"><img src="http://feedads.g.doubleclick.net/~a/tXux8BtN40_FLf4hX9_8MmsMNP0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tXux8BtN40_FLf4hX9_8MmsMNP0/1/da"><img src="http://feedads.g.doubleclick.net/~a/tXux8BtN40_FLf4hX9_8MmsMNP0/1/di" border="0" ismap="true"></img></a></p><p>Although often overlooked, <strong>posters</strong> are, for sure one of the most excellent ways in which you can effectively communicate your clients’ information to their prospective customers or buyers. Although in the graphics industry designing or printing a poster is one of the most excruciating areas where clients would like to convey the whole thing from company to product to catch the attention of the most number of prospective customers.</p>
<p>Poster designs symbolize the fundamental nature of a business or event, and therefore can be a great way to demonstrate one’s <strong>creativity</strong>. They permit artists to put themselves across in innumerable ways. Unlike other print media, posters do not confine graphic designers with certain layouts and design elements. In this post, we have compiled a list of 50 Poster Designs for your inspiration. Hope you enjoy this assortment.</p>
<p><img class="alignnone size-full wp-image-15814" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-cover.jpg" alt="Poster Designs" width="580" height="360" /></p>
<p><span id="more-15813"></span></p>
<h2>Showcase of Stunning Poster Designs</h2>
<h4>Movie Posters</h4>
<p><a title="Crank 2: High Voltage" href="http://www.impawards.com/2009/crank_two.html" target="_blank">Crank 2: High Voltage</a><br />
<a href="http://www.impawards.com/2009/crank_two.html" target="_blank"><img class="alignnone size-full wp-image-15816" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-2-2.jpg" alt="Crank 2: High Voltage" width="580" height="813" /></a></p>
<p><a title="Body Snatcher" href="http://www.flickr.com/photos/23749507@N06/3065923059/" target="_blank">Body Snatcher</a><br />
<a href="http://www.flickr.com/photos/23749507@N06/3065923059/" target="_blank"><img class="alignnone size-full wp-image-15817" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-3.jpg" alt="Body Snatcher" width="580" height="802" /></a></p>
<p><a title="Vector Movie Poster" href="http://www.behance.net/Gallery/VECTOR-MOVIE-POSTERS/146267" target="_blank">Vector Movie Poster</a><br />
<a href="http://www.behance.net/Gallery/VECTOR-MOVIE-POSTERS/146267" target="_blank"><img class="alignnone size-full wp-image-15818" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-4.jpg" alt="Vector Movie Poster" width="580" height="824" /></a></p>
<p><a title="Deep Red" href="http://www.behance.net/gallery/Movie-Poster-Re-Design/1792756" target="_blank">Deep Red</a><br />
<a href="http://www.behance.net/gallery/Movie-Poster-Re-Design/1792756" target="_blank"><img class="alignnone size-full wp-image-15867" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-53.jpg" alt="Deep Red" width="580" height="806" /></a></p>
<p><a title="Rockstar Posters" href="http://www.behance.net/gallery/Rockstar-Posters/2052764" target="_blank">Rockstar Posters</a><br />
<a href="http://www.behance.net/gallery/Rockstar-Posters/2052764" target="_blank"><img class="alignnone size-full wp-image-15868" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-54.jpg" alt="Rockstar Posters" width="580" height="773" /></a></p>
<p><a title="Avatar" href="http://www.impawards.com/2009/avatar.html" target="_blank">Avatar</a><br />
<a href="http://www.impawards.com/2009/avatar.html" target="_blank"><img class="alignnone size-full wp-image-15821" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-7.jpg" alt="Avatar" width="580" height="838" /></a></p>
<p><a title="Treasure Planet Poster" href="http://dolphy.deviantart.com/art/Treasure-Planet-poster-1819661" target="_blank">Treasure Planet poster</a><br />
<a href="http://dolphy.deviantart.com/art/Treasure-Planet-poster-1819661" target="_blank"><img class="alignnone size-full wp-image-15822" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-8.jpg" alt="Treasure Planet Poster" width="580" height="802" /></a></p>
<p><a title="Saw" href="http://www.behance.net/Gallery/Typographic-Movie-Posters/145370" target="_blank">Saw</a><br />
<a href="http://www.behance.net/Gallery/Typographic-Movie-Posters/145370" target="_blank"><img class="alignnone size-full wp-image-15823" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-10.jpg" alt="Saw" width="580" height="623" /></a></p>
<p><a title="Assassin's Creed movie poster" href="http://leknives.deviantart.com/art/Assassin-s-Creed-movie-poster-183820925" target="_blank">Assassin's Creed movie poster</a><br />
<a href="http://leknives.deviantart.com/art/Assassin-s-Creed-movie-poster-183820925" target="_blank"><img class="alignnone size-full wp-image-15865" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-1.jpg" alt="Assassin's Creed movie poster" width="580" height="821" /></a></p>
<h4>Retro Futurism in Poster Design</h4>
<p><a title="I Created Disco" href="http://creattica.com/posters/i-created-disco/29014" target="_blank">I Created Disco</a><br />
<a href="http://creattica.com/posters/i-created-disco/29014" target="_blank"><img class="alignnone size-full wp-image-15824" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-11.jpg" alt="I Created Disco" width="580" height="820" /></a></p>
<p><a title="Retro Space" href="http://creattica.com/posters/retro-space/34020" target="_blank">Retro Space</a><br />
<a href="http://creattica.com/posters/retro-space/34020" target="_blank"><img class="alignnone size-full wp-image-15825" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-12.jpg" alt="Retro Space" width="580" height="820" /></a></p>
<p><a title="Found" href="http://creattica.com/posters/found/25932" target="_blank">Found</a><br />
<a href="http://creattica.com/posters/found/25932" target="_blank"><img class="alignnone size-full wp-image-15826" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-13.jpg" alt="Found" width="580" height="870" /></a></p>
<p><a title="Retro Futurism III" href="http://www.behance.net/gallery/Retro-Futurism-III/568169" target="_blank">Retro Futurism III</a><br />
<a href="http://www.behance.net/gallery/Retro-Futurism-III/568169" target="_blank"><img class="alignnone size-full wp-image-15827" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-14.jpg" alt="Retro Futurism III" width="580" height="749" /></a></p>
<p><a title="Retro Futurism" href="http://www.behance.net/gallery/Retro-Futurism/96557" target="_blank">Retro Futurism</a><br />
<a href="http://www.behance.net/gallery/Retro-Futurism/96557" target="_blank"><img class="alignnone size-full wp-image-15828" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-15.jpg" alt="Retro Futurism" width="580" height="821" /></a></p>
<p><a title="Retro Futurism II" href="http://www.behance.net/gallery/Retro-Futurism-II/143517" target="_blank">Retro Futurism II</a><br />
<a href="http://www.behance.net/gallery/Retro-Futurism-II/143517" target="_blank"><img class="alignnone size-full wp-image-15829" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-16.jpg" alt="Retro Futurism II" width="580" height="820" /></a></p>
<p><a title="Omega Code" href="http://www.behance.net/gallery/Omega-code/204219" target="_blank">Omega code</a><br />
<a href="http://www.behance.net/gallery/Omega-code/204219" target="_blank"><img class="alignnone size-full wp-image-15830" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-17.jpg" alt="Omega Code" width="580" height="821" /></a></p>
<p><a title="Triobelisk" href="http://www.behance.net/gallery/Triobelisk/110599" target="_blank">Triobelisk</a><br />
<a href="http://www.behance.net/gallery/Triobelisk/110599" target="_blank"><img class="alignnone size-full wp-image-15831" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-18.jpg" alt="Triobelisk" width="580" height="580" /></a></p>
<p><a title="Computer Arts - Stereo" href="http://biomachina.deviantart.com/art/Computer-Arts-Stereo-164068599" target="_blank">Computer Arts - Stereo</a><br />
<a href="http://biomachina.deviantart.com/art/Computer-Arts-Stereo-164068599" target="_blank"><img class="alignnone size-full wp-image-15832" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-19.jpg" alt="Computer Arts - Stereo" width="580" height="820" /></a></p>
<h4>Vector Posters Design</h4>
<p><a title="Peanuts: great pumpkin" href="http://strongstuff.deviantart.com/art/peanuts-great-pumpkin-261935238" target="_blank">Peanuts: great pumpkin</a><br />
<a href="http://strongstuff.deviantart.com/art/peanuts-great-pumpkin-261935238" target="_blank"><img class="alignnone size-full wp-image-15842" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-29.jpg" alt="Peanuts: great pumpkin" width="580" height="750" /></a></p>
<p><a title="Sound Idea Presentation Cover Page" href="http://creattica.com/posters/sound-idea-presentation-cover-page/30203" target="_blank">Sound Idea Presentation Cover Page</a><br />
<a href="http://creattica.com/posters/sound-idea-presentation-cover-page/30203" target="_blank"><img class="alignnone size-full wp-image-15834" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-21.jpg" alt="Sound Idea Presentation Cover Page" width="580" height="821" /></a></p>
<p><a title="John Petrucci BFR" href="http://creattica.com/posters/john-petrucci-bfr/24763" target="_blank">John Petrucci BFR</a><br />
<a href="http://creattica.com/posters/john-petrucci-bfr/24763" target="_blank"><img class="alignnone size-full wp-image-15835" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-22.jpg" alt="John Petrucci BFR" width="580" height="751" /></a></p>
<p><a title="Every Color of Your Summer" href="http://creattica.com/posters/every-color-of-your-summer/21510" target="_blank">Every Color Of Your Summer</a><br />
<a href="http://creattica.com/posters/every-color-of-your-summer/21510" target="_blank"><img class="alignnone size-full wp-image-15836" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-23.jpg" alt="Every Color of Your Summer" width="580" height="820" /></a></p>
<p><a title="2008 Volleyball Poster" href="http://korywayne.deviantart.com/art/2008-Volleyball-Poster-85009764?" target="_blank">2008 Volleyball Poster</a><br />
<a href="http://korywayne.deviantart.com/art/2008-Volleyball-Poster-85009764?" target="_blank"><img class="alignnone size-full wp-image-15837" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-24.jpg" alt="2008 Volleyball Poster" width="580" height="751" /></a></p>
<p><a title="Ovenglove" href="http://www.lukemenzel.com/poster-design.html" target="_blank">Ovenglove</a><br />
<a href="http://www.lukemenzel.com/poster-design.html" target="_blank"><img class="alignnone size-full wp-image-15838" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-25.jpg" alt="Ovenglove" width="580" height="758" /></a></p>
<p><a title="Captain America Retro Poster" href="http://aidub.deviantart.com/art/Captain-America-Retro-Poster-214709496" target="_blank">Captain America Retro Poster</a><br />
<a href="http://aidub.deviantart.com/art/Captain-America-Retro-Poster-214709496" target="_blank"><img class="alignnone size-full wp-image-15839" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-26.jpg" alt="Captain America Retro Poster" width="580" height="861" /></a></p>
<p><a title="Cinema" href="http://creattica.com/posters/cinema/19660" target="_blank">Cinema</a><br />
<a href="http://creattica.com/posters/cinema/19660" target="_blank"><img class="alignnone size-full wp-image-15840" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-27.jpg" alt="Cinema" width="580" height="778" /></a></p>
<p><a title="WAR-PEACE" href="http://creattica.com/posters/war-peace/31171" target="_blank">WAR-PEACE</a><br />
<a href="http://creattica.com/posters/war-peace/31171" target="_blank"><img class="alignnone size-full wp-image-15841" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-28.jpg" alt="WAR-PEACE" width="580" height="936" /></a></p>
<h4>Typography Posters</h4>
<p><a title="Waste Not. Want Not" href="http://www.behance.net/Gallery/Waste-Not-Want-Not/145544" target="_blank">Waste Not. Want Not</a><br />
<a href="http://www.behance.net/Gallery/Waste-Not-Want-Not/145544" target="_blank"><img class="alignnone size-full wp-image-15833" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-20.jpg" alt="Waste Not. Want Not" width="580" height="781" /></a></p>
<p><a title="Typo-graphic Dope" href="http://www.behance.net/gallery/Typo-graphic-Dope/101865" target="_blank">Typo-graphic Dope</a><br />
<a href="http://www.behance.net/gallery/Typo-graphic-Dope/101865" target="_blank"><img class="alignnone size-full wp-image-15843" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-30.jpg" alt="Typo-graphic Dope" width="580" height="821" /></a></p>
<p><a title="Dsuvhh" href="http://www.flickr.com/photos/shoter/4551834370/" target="_blank">Dsuvhh</a><br />
<a href="http://www.flickr.com/photos/shoter/4551834370/" target="_blank"><img class="alignnone size-full wp-image-15844" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-31.jpg" alt="Dsuvhh" width="580" height="626" /></a></p>
<p><a title="Let's Rock Around the World" href="http://www.flickr.com/photos/60003616@N05/6203618133/" target="_blank">Let's Rock Around The World</a><br />
<a href="http://www.flickr.com/photos/60003616@N05/6203618133/" target="_blank"><img class="alignnone size-full wp-image-15845" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-32.jpg" alt="Let's Rock Around the World" width="580" height="626" /></a></p>
<p><a title="Hyper Spectrum" href="http://www.behance.net/Gallery/Beautiful-Decay-Issue-T/41498" target="_blank">Hyper Spectrum</a><br />
<a href="http://www.behance.net/Gallery/Beautiful-Decay-Issue-T/41498" target="_blank"><img class="alignnone size-full wp-image-15846" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-33.jpg" alt="Hyper Spectrum" width="580" height="773" /></a></p>
<p><a title="D-Edge Awards" href="http://www.behance.net/Gallery/D-Edge-Awards/56941" target="_blank">D-Edge Awards</a><br />
<a href="http://www.behance.net/Gallery/D-Edge-Awards/56941" target="_blank"><img class="alignnone size-full wp-image-15847" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-34.jpg" alt="D-Edge Awards" width="580" height="773" /></a></p>
<p><a title="N. JoyFlow Typo" href="http://www.behance.net/Gallery/N_Joy_Flow_Typo_/358327" target="_blank">N. JoyFlow Typo</a><br />
<a href="http://www.behance.net/Gallery/N_Joy_Flow_Typo_/358327" target="_blank"><img class="alignnone size-full wp-image-15848" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-35.jpg" alt="N. JoyFlow Typo" width="580" height="870" /></a></p>
<p><a title="Go Catch Some Waves" href="http://www.behance.net/Gallery/GO-Catch-some-waves/329740" target="_blank">Go Catch Some Waves</a><br />
<a href="http://www.behance.net/Gallery/GO-Catch-some-waves/329740" target="_blank"><img class="alignnone size-full wp-image-15849" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-36.jpg" alt="Go Catch Some Waves" width="580" height="821" /></a></p>
<p><a title="Guimaraes JAZZ 2009" href="http://www.behance.net/Gallery/GuimarAes-JAZZ-2009/327267" target="_blank">Guimaraes JAZZ 2009</a><br />
<a href="http://www.behance.net/Gallery/GuimarAes-JAZZ-2009/327267" target="_blank"><img class="alignnone size-full wp-image-15850" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-37.jpg" alt="Guimaraes JAZZ 2009" width="580" height="800" /></a></p>
<h4>Print Advertising Poster Design</h4>
<p><a title="Microsoft Virtualization: Universe" href="http://adsoftheworld.com/media/print/microsoft_virtualization_universe?size=_original" target="_blank">Microsoft Virtualization: Universe</a><br />
<a href="http://adsoftheworld.com/media/print/microsoft_virtualization_universe?size=_original" target="_blank"><img class="alignnone size-full wp-image-15851" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-38.jpg" alt="Microsoft Virtualization: Universe" width="580" height="798" /></a></p>
<p><a title="Levi's: Live unbuttoned 2" href="http://adsoftheworld.com/media/print/levis_live_unbuttoned_2" target="_blank">Levi's: Live unbuttoned, 2</a><br />
<a href="http://adsoftheworld.com/media/print/levis_live_unbuttoned_2" target="_blank"><img class="alignnone size-full wp-image-15852" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-39.jpg" alt="Levi's: Live unbuttoned 2" width="580" height="380" /></a></p>
<p><a title="Samsung: Teen" href="http://adsoftheworld.com/media/print/samsung_teen?size=_original" target="_blank">Samsung: Teen</a><br />
<a href="http://adsoftheworld.com/media/print/samsung_teen?size=_original" target="_blank"><img class="alignnone size-full wp-image-15853" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-40.jpg" alt="Samsung: Teen" width="580" height="387" /></a></p>
<p><a title="Panasonic 3D TV: Dino" href="http://adsoftheworld.com/media/print/panasonic_3d_tv_dino?size=_original" target="_blank">Panasonic 3D TV: Dino</a><br />
<a href="http://adsoftheworld.com/media/print/panasonic_3d_tv_dino?size=_original" target="_blank"><img class="alignnone size-full wp-image-15854" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-41.jpg" alt="Panasonic 3D TV: Dino" width="580" height="387" /></a></p>
<p><a title="Sony NEX5: A little professional. Press" href="http://adsoftheworld.com/media/print/sony_nex_5_a_little_professional_press?size=_original" target="_blank">Sony NEX 5: A little professional, Press</a><br />
<a href="http://adsoftheworld.com/media/print/sony_nex_5_a_little_professional_press?size=_original" target="_blank"><img class="alignnone size-full wp-image-15855" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-42.jpg" alt="Sony NEX5: A little professional. Press" width="580" height="694" /></a></p>
<p><a title="Harley-Davidson" href="http://www.behance.net/gallery/Harley-Davidson/155889" target="_blank">Harley-Davidson</a><br />
<a href="http://www.behance.net/gallery/Harley-Davidson/155889" target="_blank"><img class="alignnone size-full wp-image-15856" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-43.jpg" alt="Harley-Davidson" width="580" height="393" /></a></p>
<p><a title="Bacardi - Shoot &amp; Fly" href="http://www.behance.net/gallery/Bacardi-Shoot-_-Fly/225202" target="_blank">Bacardi - Shoot &amp; Fly</a><br />
<a href="http://www.behance.net/gallery/Bacardi-Shoot-_-Fly/225202" target="_blank"><img class="alignnone size-full wp-image-15857" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-44.jpg" alt="Bacardi - Shoot &amp; Fly" width="580" height="821" /></a></p>
<p><a title="Gatorade: Running" href="http://adsoftheworld.com/media/print/gatorade_running?size=_original" target="_blank">Gatorade: Running</a><br />
<a href="http://adsoftheworld.com/media/print/gatorade_running?size=_original" target="_blank"><img class="alignnone size-full wp-image-15858" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-46.jpg" alt="Gatorade: Running" width="580" height="439" /></a></p>
<h4>Global Warming Poster Design</h4>
<p><a title="Global Warming" href="http://dreamorphosis.deviantart.com/art/Global-Warming-66631798" target="_blank">Global Warming</a><br />
<a href="http://dreamorphosis.deviantart.com/art/Global-Warming-66631798" target="_blank"><img class="alignnone size-full wp-image-15859" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-47.jpg" alt="Global Warming" width="580" height="535" /></a></p>
<p><a title="Stop It Now" href="http://hoodaya.deviantart.com/art/Stop-It-Now-79722850" target="_blank">Stop It Now</a><br />
<a href="http://hoodaya.deviantart.com/art/Stop-It-Now-79722850" target="_blank"><img class="alignnone size-full wp-image-15860" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-48.jpg" alt="Stop It Now" width="580" height="850" /></a></p>
<p><a title="Stop Global Warming" href="http://ads.biteus.org/stop-global-warming/" target="_blank">Stop Global Warming</a><br />
<a href="http://ads.biteus.org/stop-global-warming/" target="_blank"><img class="alignnone size-full wp-image-15861" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-49.jpg" alt="Stop Global Warming" width="580" height="435" /></a></p>
<p><a title="Climate Change" href="http://www.behance.net/gallery/Climate-Change/391462" target="_blank">Climate Change</a><br />
<a href="http://www.behance.net/gallery/Climate-Change/391462" target="_blank"><img class="alignnone size-full wp-image-15862" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-50.jpg" alt="Climate Change" width="580" height="375" /></a></p>
<p><a title="Help Stop Global Warming Ad" href="http://pepey.deviantart.com/art/Help-Stop-Global-Warming-Ad-126649694" target="_blank">Help Stop Global Warming Ad</a><br />
<a href="http://pepey.deviantart.com/art/Help-Stop-Global-Warming-Ad-126649694" target="_blank"><img class="alignnone size-full wp-image-15863" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-51.jpg" alt="Help Stop Global Warming Ad" width="580" height="756" /></a></p>
<p><a title="Save the Earth 3" href="http://joe-antcliff.deviantart.com/art/Save-the-Earth-3-99668436" target="_blank">Save the Earth 3</a><br />
<a href="http://joe-antcliff.deviantart.com/art/Save-the-Earth-3-99668436" target="_blank"><img class="alignnone size-full wp-image-15864" src="http://net.onextrapixel.com/wp-content/uploads/2012/01/poster-design-52.jpg" alt="Save the Earth 3" width="580" height="821" /></a></p>
<h2>Conclusion</h2>
<p>We are sure that after browsing this collection of poster designs you are now convinced that poster design is always an essential part of a designer’s profile. Posters can be designed for a variety of reasons be it movies or events or only for personal reasons, the design needs to be convincing so that you do not have to force the viewers to think from your perspective. What do you have to say about this assortment?</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/03/28/fascinating-and-inspiring-canvas-prints/" title="Fascinating and Inspiring Canvas Prints">Fascinating and Inspiring Canvas Prints</a></li><li><a href="http://www.onextrapixel.com/2012/04/26/40-unique-and-beautiful-examples-of-brochure-design/" title="40 Unique and Beautiful Examples of Brochure Design">40 Unique and Beautiful Examples of Brochure Design</a></li><li><a href="http://www.onextrapixel.com/2012/04/11/the-grindhouse-30-awesome-fan-art-movie-posters-inspired-by-quentin-tarantino-films/" title="The Grindhouse &#8211; 30 Awesome Fan-Art Movie Posters Inspired by Quentin Tarantino Films">The Grindhouse &#8211; 30 Awesome Fan-Art Movie Posters Inspired by Quentin Tarantino Films</a></li><li><a href="http://www.onextrapixel.com/2012/03/13/50-beautiful-photos-on-instagram/" title="50 Beautiful Photos on Instagram">50 Beautiful Photos on Instagram</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=VH8oiU8_yxU:aoVWz6TUeD0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=VH8oiU8_yxU:aoVWz6TUeD0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=VH8oiU8_yxU:aoVWz6TUeD0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=VH8oiU8_yxU:aoVWz6TUeD0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=VH8oiU8_yxU:aoVWz6TUeD0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=VH8oiU8_yxU:aoVWz6TUeD0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=VH8oiU8_yxU:aoVWz6TUeD0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=VH8oiU8_yxU:aoVWz6TUeD0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=VH8oiU8_yxU:aoVWz6TUeD0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/VH8oiU8_yxU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/14/showcase-of-50-stunning-poster-designs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/14/showcase-of-50-stunning-poster-designs/</feedburner:origLink></item>
		<item>
		<title>7 Non-Web-Based Wireframe Tools</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/ZKYIp77dyUw/</link>
		<comments>http://www.onextrapixel.com/2012/05/11/7-non-web-based-wireframe-tools/#comments</comments>
		<pubDate>Fri, 11 May 2012 11:15:41 +0000</pubDate>
		<dc:creator>Ludmila Pasol</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wireframes]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17821</guid>
		<description><![CDATA[Wireframes are a simple yet effective way to plan and prototype the layout of a website before writing any code. They help structure ideas and test assumptions, and are great for facilitating early feedback from clients. That's why,... <a href="http://www.onextrapixel.com/2012/05/11/7-non-web-based-wireframe-tools/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/FHX3hjXcOrYBwYfXIWjplEswMg4/0/da"><img src="http://feedads.g.doubleclick.net/~a/FHX3hjXcOrYBwYfXIWjplEswMg4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FHX3hjXcOrYBwYfXIWjplEswMg4/1/da"><img src="http://feedads.g.doubleclick.net/~a/FHX3hjXcOrYBwYfXIWjplEswMg4/1/di" border="0" ismap="true"></img></a></p><p><a href="http://www.onextrapixel.com/2009/07/15/the-importance-of-wireframes-in-web-design-and-9-tools-to-create-wireframes/" title="The Importance of Wireframes in Web Design">Wireframes</a> are a simple yet effective way to plan and prototype the layout of a website before writing any code. They help structure ideas and test assumptions, and are great for facilitating early feedback from clients. That's why, over the past few years, wireframing has become an integral part of <strong>web design and web development</strong>. Therefore, the question is not whether to create wireframes, but rather how.</p>
<p><a href="http://wireframesketcher.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/wireframe-cover.jpg" alt="Non-Web-Based Wireframe Tools" width="580" height="360" class="alignnone size-full wp-image-17829" /></a><br />
<span id="more-17821"></span></p>
<p>Although there are dozens of web-based wireframe tools available, I prefer to do my wireframing in a native desktop application for the following reasons:</p>
<ul>
<li>I can work offline at places with poor or no internet connection, e.g. when riding the train or a plane.</li>
<li>I am not dependent on someone else to take good care of their servers.</li>
<li>I prefer to pay a one-time fee instead of monthly subscription charges.</li>
<li>I have the freedom of knowing that I can continue using the tool even if its vendor goes out of business tomorrow.</li>
</ul>
<p>In this article, I will introduce you to seven desktop-based wireframing tools for Windows, Mac OS X or Linux.</p>
<h2>Non-Web-Based Wireframe Tools</h2>
<p><a href="http://wireframesketcher.com/" title="WireframeSketcher">WireframeSketcher</a><br />
WireframeSketcher can be installed as a plug-in for any Eclipse-based IDE and is also available as a standalone application for Windows, Mac OS X and Linux. It lets you choose between two different styles for the look of your wireframes: Sketch (to make wireframes appear hand-drawn) and Clean (with crisp, straight lines). Other major features include the ability to create interactive prototypes and the possibility to present wireframes as storyboards.</p>
<p><a href="http://wireframesketcher.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/01-wireframesketcher.jpg" alt="WireframeSketcher" width="580" height="300" class="alignnone size-full wp-image-17822" /></a></p>
<p>WireframeSketcher can be tested for 14 days without restrictions; afterward, you have to pay $99 for a single-user license.</p>
<p><a href="http://www.powermockup.com/" title="PowerMockup">PowerMockup</a><br />
PowerMockup is an add-on for turning Microsoft PowerPoint into a wireframe tool. It provides a library of wireframe elements and icons that you can drag and drop onto a PowerPoint slide. You can also create your own elements using standard PowerPoint shapes and add them to the library.</p>
<p><a href="http://www.powermockup.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/02-powermockup.jpg" alt="PowerMockup" width="580" height="300" class="alignnone size-full wp-image-17823" /></a></p>
<p>PowerMockup works with PowerPoint 2007 and 2010 (Windows only) and can be tested as a trial version free of charge. The full version is priced at $39.95.</p>
<p><a href="http://www.microsoft.com/expression/products/SketchFlow_OverView.aspx" title="SketchFlow">SketchFlow</a><br />
Another wireframing solution for Windows only is SketchFlow, a UI prototyping tool provided by Microsoft as part of its Expression Studio suite. While SketchFlow is a little complicated to use and has a rather steep learning curve, it is extremely powerful when it comes to creating interactive prototypes that simulate real functionality. You can bind controls to data sources or even make use of the .NET Framework for adding application behavior.</p>
<p><a href="http://www.microsoft.com/expression/products/SketchFlow_OverView.aspx"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/03-sketchflow.jpg" alt="SketchFlow" width="580" height="300" class="alignnone size-full wp-image-17824" /></a></p>
<p>Expression Studio 4 Ultimate, which includes SketchFlow, costs $599. A 60-day free trial version can be downloaded from the Microsoft website.</p>
<p><a href="http://www.axure.com/" title="Azure RP">Axure RP</a><br />
Axure RP is one of the oldest and most comprehensive prototyping solutions available. It supports the whole chain from drawing quick wireframe sketches to creating interactive, high-fidelity design prototypes and generating detailed specifications.</p>
<p><a href="http://www.axure.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/04-axure-rp.jpg" alt="Azure RP" width="580" height="300" class="alignnone size-full wp-image-17825" /></a></p>
<p>Axure RP is available for Windows and Max OS X. To try it out, you can download a 30-day trial version from the Axure RP website. A single-user license for Axure RP costs $589.</p>
<p><a href="http://pencil.evolus.vn/" title="Pencil">Pencil</a><br />
Among the seven tools listed in this article, Pencil is the only one that's completely free and Open Source. It can be installed as a Firefox add-on or as a standalone application for Windows, Mac OS X or Linux. Pencil is easy to use, includes a large set of stencils, supports linking between pages, can export to various formats, and allows you to create your own personal collection of stencils.</p>
<p><a href="http://pencil.evolus.vn/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/05-pencil.jpg" alt="Pencil" width="580" height="300" class="alignnone size-full wp-image-17826" /></a></p>
<p>As mentioned before, Pencil is free (released under GPL version 2). Don't hesitate to give it a try.</p>
<p><a href="http://mockupscreens.com/" title="MockupScreens">MockupScreens</a><br />
By default, MockupScreens uses a Windows XP style for the screen prototypes that you create. This makes them look a bit outdated at first, but you can easily switch to a different skin via a drop-down menu in the toolbar. Compared to other wireframing tools, MockupScreens provides a relatively small number of basic user interface elements and icons. Two great features of this tool are its ability to annotate individual elements and the possibility to group and arrange screens in scenarios.</p>
<p><a href="http://mockupscreens.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/06-mockupscreens.jpg" alt="MockupScreens" width="580" height="300" class="alignnone size-full wp-image-17827" /></a></p>
<p>MockupScreens is available for both Windows and Mac OS X. The price for the full version is $99.95.</p>
<p><a href="http://designervista.com/" title="DesignerVista">DesignerVista</a><br />
DesignerVista allows you to create both low-fidelity wireframes and high-fidelity GUI mockups. It supports page templates and themes, can export to HTML and PDF, has a slide show feature, and is able to generate UI specification documents.</p>
<p><a href="http://designervista.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/07-designervista.jpg" alt="DesignerVista" width="580" height="300" class="alignnone size-full wp-image-17828" /></a><br />
DesignerVista runs on Windows XP or higher and is priced at $79.99 per license. A free 20-day trial version is available for download at the DesignerVista website.</p>
<h2>Conclusion</h2>
<p>Although some of these wireframe tools may seem costly, online tools can cost around $60 per month, so in the long run, offline tools can save you money and they are far more convenient.</p>
<p>Do you use an offline or web-based wireframe tool? Which is your choice? Please share your comments with us in the section below.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/05/01/protoshare-effective-and-efficient-website-wireframing-and-application-prototyping/" title="ProtoShare: Effective and Efficient Website Wireframing and Application Prototyping">ProtoShare: Effective and Efficient Website Wireframing and Application Prototyping</a></li><li><a href="http://www.onextrapixel.com/2012/03/06/mightydeals-giveaway-5-winners-of-any-current-deal/" title="MightyDeals Giveaway: 5 Winners of Any Current Deal!">MightyDeals Giveaway: 5 Winners of Any Current Deal!</a></li><li><a href="http://www.onextrapixel.com/2012/02/29/top-10-ways-to-embed-video-into-a-web-page/" title="Top 10 Ways to Embed Video into a Web Page">Top 10 Ways to Embed Video into a Web Page</a></li><li><a href="http://www.onextrapixel.com/2011/12/29/6-outstanding-wireframe-resources-to-inspire-your-next-design/" title="6 Outstanding Wireframe Resources to Inspire Your Next Design">6 Outstanding Wireframe Resources to Inspire Your Next Design</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZKYIp77dyUw:ACOuHgzG-JQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZKYIp77dyUw:ACOuHgzG-JQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ZKYIp77dyUw:ACOuHgzG-JQ:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZKYIp77dyUw:ACOuHgzG-JQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZKYIp77dyUw:ACOuHgzG-JQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ZKYIp77dyUw:ACOuHgzG-JQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZKYIp77dyUw:ACOuHgzG-JQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ZKYIp77dyUw:ACOuHgzG-JQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZKYIp77dyUw:ACOuHgzG-JQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/ZKYIp77dyUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/11/7-non-web-based-wireframe-tools/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/11/7-non-web-based-wireframe-tools/</feedburner:origLink></item>
		<item>
		<title>Food Packaging – 10 of The Tastiest Designs</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/0fRqLZpg8YA/</link>
		<comments>http://www.onextrapixel.com/2012/05/10/food-packaging-10-of-the-tastiest-designs/#comments</comments>
		<pubDate>Thu, 10 May 2012 11:00:19 +0000</pubDate>
		<dc:creator>Amina AlTai</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[showcases]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17769</guid>
		<description><![CDATA[Good packaging design is a formula; traffic stopping, relevant design + innovative and intuitive forms + language that speaks to the consumer's values. When it comes to food packaging, getting consumers to fantasize about what this food might... <a href="http://www.onextrapixel.com/2012/05/10/food-packaging-10-of-the-tastiest-designs/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/hbih1bLuJ2OfxzE_ueU_oOWOpl0/0/da"><img src="http://feedads.g.doubleclick.net/~a/hbih1bLuJ2OfxzE_ueU_oOWOpl0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hbih1bLuJ2OfxzE_ueU_oOWOpl0/1/da"><img src="http://feedads.g.doubleclick.net/~a/hbih1bLuJ2OfxzE_ueU_oOWOpl0/1/di" border="0" ismap="true"></img></a></p><p>Good <strong>packaging design</strong> is a formula; traffic stopping, relevant design + innovative and intuitive forms + language that speaks to the consumer's values. When it comes to food packaging, getting consumers to fantasize about what this food might taste like is paramount.  Effective food packaging curates insatiable cues that lead consumers to act irrationally and impulse buy based on the promise of a delicious reward.  </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/packaging-designs-cover.jpg" alt="Food Packaging" width="580" height="360" class="alignnone size-full wp-image-17776" /></p>
<p>Here are our 10 top picks for the <strong>tastiest food packaging design</strong> for their ability to tantalize our taste buds even before we’ve taken a bite.<br />
<span id="more-17769"></span> </p>
<h2>10 of the Tastiest Food Packaging Designs</h2>
<h4>Sir Kensington's Scooping Ketchup</h4>
<p>When a ketchup giant has cornered the market for so many years you may think that there is little opportunity for a newbie. Enter Sir Kensington Ketchup. Their innovative design brings sophistication to this often scorned condiment so much so that it may even be dinner party worthy.  Gasp!</p>
<p><a href="http://sirkensingtons.com/" title="Sir Kensington's Scooping Ketchup">Sir Kensington's Scooping Ketchup</a><br />
<a href="http://sirkensingtons.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/sir_kensington_ketchup.jpg" alt="Sir Kensington&#039;s Scooping Ketchup" width="580" height="400" class="alignnone size-full wp-image-17778" /></a> </p>
<h4>King's County Jerky Co</h4>
<p>Beef Jerky is a fairly no-frills type of food.  And what could be more reflective of that than this simple paper package. King's County’s bag is a strong departure from the usual plastic wrappers we see in this space and it’s also reflective of this product’s natural heritage. When you are used to seeing beef jerky marinating in its own juices within a tightly wrapped plastic film, this paper version certainly ups the gourmet ante and makes us want to sink our teeth right in.  </p>
<p><a href="http://www.kingscountyjerky.com/" title="King's County Jerky Co">King's County Jerky Co</a><br />
<a href="http://www.kingscountyjerky.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/kings_county_jerky.jpg" alt="King&#039;s County Jerky Co" width="580" height="400" class="alignnone size-full wp-image-17773" /></a> </p>
<h4>Sheffield &amp; Sons for Bloom Grocery</h4>
<p>I’m no whiz in the kitchen, but the Bloom Grocery’s line of private label spices makes me yearn to be the next iron chef. The diaphanous vials let the integrity of the product speak for itself and the colorful, information packed labels, add to the visual delight. Spicy! </p>
<p><a href="http://www.thedieline.com/blog/2011/8/25/sheffield-sons-for-bloom-grocery.html" title="Sheffield &amp; Sons for Bloom Grocery">Sheffield &amp; Sons for Bloom Grocery</a><br />
<a href="http://www.thedieline.com/blog/2011/8/25/sheffield-sons-for-bloom-grocery.html"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/bloom_grocery_spices.jpg" alt="Sheffield &amp; Sons for Bloom Grocery" width="580" height="400" class="alignnone size-full wp-image-17770" /></a></p>
<h4>Steve's Leaves</h4>
<p>Let’s face it, we may not always be in the mood to eat our greens, but Steve’s Leaves is making it a way more enjoyable experience. From the tongue-in-cheek copy to colorful designs geared towards shopability, these are not your average leaves. I never thought I’d be lusting for watercress?! </p>
<p><a href="http://www.stevesleaves.co.uk/" title="Steve's Leaves">Steve's Leaves</a><br />
<a href="http://www.stevesleaves.co.uk/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/steves_leaves.jpg" alt="Steve&#039;s Leaves" width="580" height="400" class="alignnone size-full wp-image-17779" /></a> </p>
<h4>Terra Chips</h4>
<p>Bravo to Terra, for their potato-chip innovation. Not only are these chips more nutritious, but they look absolutely delicious. The colorful array speaks of the various flavors and textures each bag holds and references the naturalness of this snack. You can practically taste the euphonious crunch you are about to experience! </p>
<p><a href="http://www.terrachips.com/" title="Terra Chips">Terra Chips</a><br />
<a href="http://www.terrachips.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/terra_chips.jpg" alt="Terra Chips" width="580" height="400" class="alignnone size-full wp-image-17780" /></a> </p>
<h4>Waitrose</h4>
<p>We have to applaud Waitrose for having some of the tastiest private label packaging across the board, but this pizza packaging takes the cake. Even as a gluten-free consumer, I’m yearning to take a bite. The artful cut-out is a nice reference to portion size but also highlights the use of wholesome ingredients. Simply mouthwatering!</p>
<p><a href="http://www.waitrose.com/" title="Waitrose">Waitrose</a><br />
<a href="http://www.waitrose.com/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/waitrose_pizza.jpg" alt="Waitrose" width="580" height="400" class="alignnone size-full wp-image-17781" /></a> </p>
<h4>Pom Wonderful</h4>
<p>The bottle shape is iconic, we’d know it anywhere.  Pom blazed a trail in the beverage category with this unique shape that pays homage to the powerful anti-oxidant-packed pomegranate you are about to imbibe. The rich colors of this natural beverage shine through to captivate consumers. It screams “Drink me!”, in a way that very few have the willpower to ignore.</p>
<p><a href="http://www.pomwonderful.co.uk/" title="Pom Wonderful">Pom Wonderful</a><br />
<a href="http://www.pomwonderful.co.uk/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/pom.jpg" alt="Pom Wonderful" width="580" height="400" class="alignnone size-full wp-image-17777" /></a> </p>
<h4>Haagen-Dazs Five</h4>
<p>Haagen-Dazs did a tremendous job with their packaging for five. This all-natural ice cream is prepared with only 5 wholesome ingredients and the pureness of their package is reflective of this natural philosophy. The use of singular flavor images amidst the clean backdrop makes us yearn for a taste of this frozen slice of heaven. I’ll take two, please.  </p>
<p><a href="http://www.haagen-dazs.com/products/five.aspx" title="Haagan Dazs Five">Haagen-Dazs Five</a><br />
<a href="http://www.haagen-dazs.com/products/five.aspx"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/Haagen_Dazs_Five.jpg" alt="Haagen Dazs Five" width="580" height="400" class="alignnone size-full wp-image-17772" /></a>   </p>
<h4>Gu Chocolate Puds and Fru Fruity Puds</h4>
<p>Pre-packaged desserts have never looked so good. The sumptuous desserts are at the forefront of these packaging designs so when you hit your 4pm sugar crash, these morsels feel like a little slice of heaven. Somehow when something so sinful is packaged in something so delicious…you feel a little less guilty. </p>
<p><a href="http://www.foodepedia.co.uk/food/2009/may/chocolate_puds.htm" title="Gu Chocolate Puds and Fru Fruity Puds">Gu Chocolate Puds and Fru Fruity Puds</a><br />
<a href="http://www.foodepedia.co.uk/food/2009/may/chocolate_puds.htm"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/Gu_Fru.jpg" alt="Gu Chocolate Puds and Fru Fruity Puds" width="580" height="400" class="alignnone size-full wp-image-17771" /></a> </p>
<h4>Migros Ravioloni</h4>
<p>And last, but not least, we have Migros’ private label packaging. From the beautiful photography to the stark white backdrop, this elegant and impactful package from the Swiss retailer is simply divine. Throwing this in your shopping cart makes you feel more like a gourmand and less like a glutton.   </p>
<p><a href="http://www.thedieline.com/blog/2008/4/24/migros.html" title="Migros Ravioloni">Migros Ravioloni</a><br />
<a href="http://www.thedieline.com/blog/2008/4/24/migros.html"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/Migros_Ravioloni.jpg" alt="Migros Ravioloni" width="580" height="400" class="alignnone size-full wp-image-17774" /></a> </p>
<h2>Conclusion</h2>
<p>If you’ve reached the bottom of this post and you’re feeling hungry, congratulations, your subconscious is buying in exactly the way marketers had hoped! We eat with our eyes as well as our mouths and the visual experience can be as satisfying as what we taste. So when you’re designing your food packaging the most important question you can ever ask yourself is, “<em>Does this look good enough to eat?</em>”  Bon appétit!</p>
<p><strong>Which one of the above showcased food packaging designs is your favorite? Let us know at the comment.</strong></p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/04/30/inspiring-digital-art-featuring-hands/" title="Inspiring Digital Art Featuring Hands">Inspiring Digital Art Featuring Hands</a></li><li><a href="http://www.onextrapixel.com/2012/04/12/50-amazing-console-mods/" title="50+ Amazing Console Mods">50+ Amazing Console Mods</a></li><li><a href="http://www.onextrapixel.com/2012/03/19/20-exquisite-portraits-of-poverty/" title="20 Exquisite Portraits of Poverty">20 Exquisite Portraits of Poverty</a></li><li><a href="http://www.onextrapixel.com/2012/02/23/a-tribute-to-the-dragon-35-awesome-examples-of-bruce-lee-artwork/" title="A Tribute to the Dragon – 35 Awesome Examples of Bruce Lee Artwork">A Tribute to the Dragon – 35 Awesome Examples of Bruce Lee Artwork</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=0fRqLZpg8YA:UWywnG9MPhM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=0fRqLZpg8YA:UWywnG9MPhM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=0fRqLZpg8YA:UWywnG9MPhM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=0fRqLZpg8YA:UWywnG9MPhM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=0fRqLZpg8YA:UWywnG9MPhM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=0fRqLZpg8YA:UWywnG9MPhM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=0fRqLZpg8YA:UWywnG9MPhM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=0fRqLZpg8YA:UWywnG9MPhM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=0fRqLZpg8YA:UWywnG9MPhM:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/0fRqLZpg8YA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/10/food-packaging-10-of-the-tastiest-designs/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/10/food-packaging-10-of-the-tastiest-designs/</feedburner:origLink></item>
		<item>
		<title>QuickValidate: Building a jQuery Validation Plugin</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/ZloLh8luVd8/</link>
		<comments>http://www.onextrapixel.com/2012/05/09/quickvalidate-building-a-jquery-validation-plugin/#comments</comments>
		<pubDate>Wed, 09 May 2012 11:00:39 +0000</pubDate>
		<dc:creator>Cedric Ruiz</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17913</guid>
		<description><![CDATA[Oh forms! For the most part, forms look ugly, old and inconsistent across browsers, but they play one of the most important roles on the web; user input. User input is everywhere, from contact forms to sign-up forms... <a href="http://www.onextrapixel.com/2012/05/09/quickvalidate-building-a-jquery-validation-plugin/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/X6UU6z8hQPyVpFdmyZ8Nn1zqISw/0/da"><img src="http://feedads.g.doubleclick.net/~a/X6UU6z8hQPyVpFdmyZ8Nn1zqISw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/X6UU6z8hQPyVpFdmyZ8Nn1zqISw/1/da"><img src="http://feedads.g.doubleclick.net/~a/X6UU6z8hQPyVpFdmyZ8Nn1zqISw/1/di" border="0" ismap="true"></img></a></p><p>Oh forms! For the most part, forms look ugly, old and inconsistent across browsers, but they play one of the most important roles on the web; <strong>user input</strong>. </p>
<p>User input is everywhere, from <strong>contact forms to sign-up forms</strong> and from surveys to complex user interfaces. Forms come in many shapes and sizes, colors and styles, but they all have something in common; validation. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/quick-validate.jpg" alt="QuickValidate: Building a jQuery Validation Plugin" title="QuickValidate: Building a jQuery Validation Plugin" width="580" height="360" class="alignnone size-full wp-image-17915" /></p>
<div class="demobtns"><a href="http://www.onextrapixel.com/examples/jq-quickvalidate/">Demo</a> <a href="https://github.com/elclanrs/jq-quickvalidate">Download</a></div>
<p><span id="more-17913"></span></p>
<h2>The Validation Process</h2>
<p>The validation process can occur in the back-end or in the front-end, using PHP or JavaScript respectively, but most of the time, both the server and the browser will be involved in order to create a robust and secure solution.</p>
<p>HTML5 brings many validation filters to the table and it works pretty well, but only on supported browsers, which means, no IE8 or less. The old fashion way, using PHP exclusively, will offer support for IE, but it's not up to current web standards, where the user expects validation to be processed on the same page, which is also much better in terms of usability. This is where JavaScript comes in handy.</p>
<p>These are some of the most common concepts of input validation in the front-end:</p>
<ul>
<li>Prompt a list of errors when the user submits the form providing a description for each and every field that failed to validate.</li>
<li>Display a description next to the field(s) that failed to validate when the user submits the form.</li>
<li>Live validation. Validate as the user types or when the field looses focus displaying a description next to the field that fails validation.</li>
</ul>
<p>The first and second examples are probably the most commonly used patterns to validate forms in the browser. The third option is less popular but it has that extra “feature” that makes it a bit more usable and predictable providing a better experience to the end-user.</p>
<h2>Regular Expressions</h2>
<p>Regular expressions are essential to the validation process. Each input has to match a set of rules or filters in order to determine if its value is valid or not. We'll be using regular expressions often in this tutorial.</p>
<p>Regular expressions are easier and more powerful than they seem. Think of them as a unique and independent micro-language that it's embedded in almost any other programming language in the world. </p>
<p>The best tutorial you can probably find on how to use regular expressions is <a href="http://www.regular-expressions.info/tutorial.html">regular-expressions.info</a>. It's a language agnostic resource on best practices and common uses of regular expressions that goes into every important detail providing easy to follow examples.</p>
<p>You can also use this quick <a href="http://www.w3schools.com/jsref/jsref_obj_regexp.asp">JavaScript RegExp Reference</a>.</p>
<p>In JavaScript you can create a regular expression in two ways. </p>
<ul>
<li>Literal notation: <code>/regularexpression/</code></li>
<li>As a RegExp object: <code>var regex = new RegExp('regularexpression')</code></li>
</ul>
<p>It's important that you understand the basics of regular expressions to follow this tutorial. Feel free to refer to those websites whenever you encounter something that you don't quite understand or that you think needs some more explanation.</p>
<h2>What You Need to Get Started</h2>
<p>We're going to build a small jQuery validation plugin based on the third concept mentioned in "The validation process".</p>
<p>This tutorial assumes that you have experience in HTML and CSS as well as some knowledge of JavaScript and jQuery.</p>
<p>Before we start, prepare a basic HTML template and load the latest jQuery library, an empty <code>plugin.js</code>, the <a href="http://necolas.github.com/normalize.css/">normalize.css</a> reset and a separate CSS stylesheet. </p>
<p>You can also use <a href="http://jsfiddle.net/">jsfiddle</a> as a starting point.</p>
<h4>Building the Form</h4>
<p>Let's build the basic markup and styles of the form. I'm not going into too much detail since this is a more JavaScript oriented tutorial.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;form id=&quot;my-form&quot;&gt;
    &lt;p&gt;&lt;label&gt;Name &lt;span&gt;*&lt;/span&gt;:&lt;/label&gt;&lt;input type=&quot;text&quot; class=&quot;required name&quot;/&gt;&lt;/p&gt;
    &lt;p&gt;&lt;label&gt;Password &lt;span&gt;*&lt;/span&gt;:&lt;/label&gt;&lt;input type=&quot;password&quot; class=&quot;required pass&quot;/&gt;&lt;/p&gt;
    &lt;p&gt;&lt;label&gt;E-Mail:&lt;/label&gt;&lt;input type=&quot;text&quot; class=&quot;email&quot;/&gt;&lt;/p&gt;
    &lt;p&gt;&lt;label&gt;Phone:&lt;/label&gt;&lt;input type=&quot;text&quot; class=&quot;phone&quot; placeholder=&quot;999-999-9999&quot;/&gt;&lt;/p&gt;
    &lt;!-- Empty label to align button to the rest of elements –-&gt;
    &lt;p&gt;&lt;label&gt;&amp;nbsp;&lt;/label&gt;&lt;button type=&quot;submit&quot;&gt;Submit&lt;/button&gt;&lt;/p&gt;
&lt;/form&gt;
</pre>
<p>We use classes to specify the filters we want to link to each input. You can name these filters whatever you want as long as you're consistent. We'll be using these class names in JavaScript to evaluate each field against a regular expression as we type.</p>
<p>Let's style the form with CSS. If you're using your own project template, make sure to load the <code>normalize.css</code> reset, otherwise it might look different.</p>
<pre class="brush: css; title: ; notranslate">
#my-form p {
    float: left; /* so it doesn't span 100% width */
    clear: both; /* so every input is in a new line */
    position: relative; /* to be able to position other elements */
    margin: .5em 0;
}
#my-form label,
#my-form input { display: inline-block; }
#my-form label { width: 100px; } /* depends on the length of your labels */
#my-form label span { color: red; } /* required star */
#my-form input {
    padding: 0 .3em;
    height: 24px;
    line-height: 24px; /* for IE */
    width: 200px;
    border: 1px solid #ccc;
}
</pre>
<p>At this stage, the form should look like this:</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/pic2.jpg" alt="Building the Form" title="Building the Form" width="367" height="263" class="alignnone size-full wp-image-17916" /></p>
<h4>Building the Plugin</h4>
<p>It's important to think about how do we want to use this plugin, or how will the user make use of it. The most obvious way is to be able to call the plugin like this:</p>
<pre class="brush: jscript; title: ; notranslate">
$('#my-form').quickValidate();
</pre>
<p>With that in mind we can begin building our plugin using a common jQuery plugin template as a base.</p>
<p>Open your <code>plugin.js</code> if you're working locally. If you're working with jsfiddle use the JavaScript panel and make sure the latest jQuery is loaded in the framework dropdown menu.</p>
<pre class="brush: jscript; title: ; notranslate">
(function($){
    $.fn.quickValidate = function () {

        // Cache variables
        var $form = this;

        // Only text and password fields will be processed
        var $inputs = $form.find('input:text, input:password');

        // Plugin code here

        // Allow jQuery to chain stuff to our plugin
        return this;
    };
})(jQuery);
</pre>
<p>The plugin will be divided in four parts so it's easier to follow and understand how it works:</p>
<ul>
<li>Filters</li>
<li>Validation</li>
<li>Error handling</li>
<li>Events</li>
</ul>
<p>We'll be putting everything that follows within the "Plugin code here" area.</p>
<h4>Filters</h4>
<p>We need to create a reference and store all the filters that we previously set as classes in our HTML. The most organized way of doing this is by using an object literal. We'll use the class name as the filter name or key, and each key will contain a regular expression and an error message linked to it.</p>
<p>The required filter is the only one that doesn't belong here. It's a really simple filter that doesn't need a regular expression. We'll go into more detail later on. </p>
<pre class="brush: jscript; title: ; notranslate">
var filters = {
    name : {
        regex : /^[A-Za-z]{3,}$/,
        error : 'Must be at least 3 characters long, and must only contain letters.'
    },
    pass : {
        regex : /(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{6,}/,
        error : 'Must be at least 6 characters long, and contain at least one number, one uppercase and one lowercase letter.'
    },
    email : {
        regex : /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/,
        error : 'Must be a valid e-mail address (user@gmail.com)'
    },
    phone : {
        regex : /^[2-9]\d{2}-\d{3}-\d{4}$/,
        error : 'Must be a valid US phone number (999-999-9999)'
    }
};
</pre>
<p>Using a structure like this is future proof. Adding new filters is as easy and fast as it can get. Now, take a moment to analyze the regular expressions you just wrote. Let's take the very first regex as a simple example and break it down:</p>
<pre class="brush: jscript; title: ; notranslate">
^[A-Za-z]{3,}$
</pre>
<ul>
<li><code>^</code>: matches a string that starts with</li>
<li><code>[A-Za-z]</code>: an uppercase or lowercase letter</li>
<li><code>{3,}</code>: at least 3 or more times</li>
<li><code>$</code>: and ends. (not allowing any other characters but letters)</li>
</ul>
<p>You can find most common regular expressions on Google, like e-mail, telephone, password, etc, but it's crucial to understand how they work. You can use the resources from "Regular expressions" to guide you.</p>
<h4>Validation</h4>
<p>This is the core of our plugin. The <code>validate()</code> function or method will evaluate all classes of a given input and it will test its value against the filter that matches the class. It's important to note that an input can have many classes, not only the ones related to our plugin but our plugin will only read two main classes; the <code>required</code> class and one of the filters from the filter object.</p>
<p>The <code>validate()</code> method takes two arguments, <code>klass</code> and <code>value</code>. The class will be a string containing all the classes of the given input, and the value, well, it's the value of the input which we'll test against the matching filter.</p>
<p>To build this function we're going to use the popular JavaScript <a href="http://addyosmani.com/resources/essentialjsdesignpatterns/book/#modulepatternjavascript">module pattern</a>. Let's break it down and comment out the important parts:</p>
<pre class="brush: jscript; title: ; notranslate">
var validate = function (klass, value) {

    // Initial values of the public variables
    var isValid = true,
        error = '';

    // If the field is empty
    // and it has the `required` filter...
    if (!value &amp;&amp; /required/.test(klass)) {
        error = 'This field is required';
        isValid = false;

    // If the field is not empty...
    } else {

        // Loop through all filters
        for (var f in filters) {

            // Create a new regex with the filter name
            var regex = new RegExp(f);

            // If the the current filter
            // in this iteration matches
            // a class...
            if (regex.test(klass)) {

                // If the value doesn't match the
                // regex of the current filter
                if (value &amp;&amp; !filters[f].regex.test(value)) {
                    error = filters[f].error;
                    isValid = false;
                }

                // Exit the loop as soon as we find
                // a filter that matches a class
                break;
            }
        }
    }

    // Return public variables
    return {
        isValid : isValid,
        error : error
    }
};
</pre>
<h4>Error Handling</h4>
<p>When we run the <code>validate()</code> method with some parameters, it will return the isValid variable as well as an error if the value failed to validate. The error is just a string assigned to a variable, but we want to create an HTML tag so we can style it with CSS and integrate it in our form.</p>
<p>When the value of an input doesn't validate we want to highlight the field and show and icon that indicates something is wrong. When the user hovers over the information icon, an error popup will appear next to it with a brief description on what's going on and/or how to fix it.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/pic3.jpg" alt="Error Handling" title="Error Handling" width="580" height="223" class="alignnone size-full wp-image-17917" /></p>
<p>Now, let's go back to our HTML and add some temporary markup to just the first field. This markup will be dynamically generated for every field with jQuery in the error handling function so we use this merely as a template for now, so we can style it with CSS.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;p&gt;&lt;label&gt;Name &lt;span&gt;*&lt;/span&gt;:&lt;/label&gt;&lt;input type=&quot;text&quot; class=&quot;required name invalid&quot;/&gt;&lt;i class=&quot;error-icon&quot;&gt;&lt;/i&gt;&lt;span class=”error”&gt;This is an error&lt;/span&gt;&lt;/p&gt;
</pre>
<p>We've just added an <code>invalid</code> class to the input, an icon <code>< i class="error-icon" ></code> and a <code>< span class="error" ></code> which will contain the error message. Again, this will be added dynamically with jQuery.</p>
<p>Let's style those new elements in CSS to look like the image above:</p>
<pre class="brush: css; title: ; notranslate">
/* Error highlight */
#my-form input.invalid {
    background: #FFFAC4;
}

#my-form .error-icon {
    position: absolute;
    top: 0;
    right: -32px;
    height: 24px;
    width: 24px;
    background: url(http://i43.tinypic.com/dbsh3m.png) no-repeat;
    cursor: pointer;
}

/* Error description */
#my-form .error {
    display: none;
    position: absolute;
    top: 10px;
    right: -195px;
    z-index: 999;
    padding: 10px;
    width: 120px;
    font-size: 12px;
    background: #222;
    color: white;
}

/* Popup arrow */
#my-form .error:after {
    content: &quot;&quot;;
    position: absolute;
    top: 0;
    left: -20px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent #222 transparent transparent;
}
</pre>
<p>The icon used in this tutorial can be downloaded for free at <a href="http://www.iconfinder.com/icondetails/53984/24/blue_info_information_square_icon">Iconfinder</a>.</p>
<p>Now that the styles are all set, you can remove that markup from the HTML and revert to the original code. Next, we have to create that markup with jQuery.</p>
<p>The <code>printError()</code> method takes an <code>$input</code> jQuery object as parameter and creates the necessary HTML markup. It uses the <code>validate()</code> method to test if the given input validates or not. Then it prints the error and icon accordingly.</p>
<pre class="brush: jscript; title: ; notranslate">
var printError = function($input) {
    // Cache variables
    var klass = $input.attr('class'),
        value = $input.val(),

        // Run the `validate()` method and store
        // it's returned values in a variable `test`
        test = validate(klass, value),

        // Create markup for the error and icon
        $error = $('&lt;span class=&quot;error&quot;&gt;' + test.error + '&lt;/span&gt;'),
        $icon = $('&lt;i class=&quot;error-icon&quot;&gt;&lt;/i&gt;');

    // Reset:
    // Remove the current markup
    // and `invalid` class if found
    $input.removeClass('invalid').siblings('.error, .error-icon').remove();

    // If the input fails to validate...
    if (!test.isValid) {
        $input.addClass('invalid');

        // Insert error and icon
        $error.add($icon).insertAfter($input);

        // Show the error when hovering the icon
        $icon.hover(function() {
            $(this).siblings('.error').toggle();
        });
    }
};
</pre>
<h4>Events</h4>
<p>We need to make sure that the required fields are invalid when the plugin loads. Then we'll bind the events to our inputs and form.</p>
<pre class="brush: jscript; title: ; notranslate">
// Initialize:
// Go through every input and
// check if it has a required class
// If it does, run the `printError()`
// method on that input
$inputs.each(function() {
    if ($(this).is('.required')) {
        printError($(this));
    }
});

// Run the `printError()` method
// everytime we press a key in an input
$inputs.keyup(function() {
    printError($(this));
});

// Make sure that no invalid inputs
// are found when we submit the form
// Otherwise stop the form from submitting
// and prompt an error
$form.submit(function(e) {
    if ($form.find('input.invalid').length) {
        e.preventDefault();

        // The `alert()` is the simplest example
        // but you can really do whatever you want
        alert('The form does not validate! Check again...');
    }
});
</pre>
<h4>The Final Step</h4>
<p>Finally, call the plugin on your form:</p>
<pre class="brush: jscript; title: ; notranslate">
$('#my-form').quickValidate();
</pre>
<h2>Conclusion</h2>
<p>QuickValidate brings easy to use validation in an unobtrusive small plugin with improved usability and very easy extensibility. </p>
<p>This plugin is GPL licensed and it's been tested in IE8+, Webkit and Firefox.</p>
<p>Download <a href="https://github.com/elclanrs/jq-quickvalidate">QuickValidate</a> at github.</p>
<p>Check out the final result an fiddle with it at <a href="http://jsfiddle.net/elclanrs/tJZ3c/">jsfiddle.net</a>.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/03/29/15-stunning-jquery-lightbox-plug-ins-for-your-upcoming-designs/" title="15 Stunning jQuery Lightbox Plug-ins for Your Upcoming Designs">15 Stunning jQuery Lightbox Plug-ins for Your Upcoming Designs</a></li><li><a href="http://www.onextrapixel.com/2012/03/15/15-simple-effective-jquery-plugins-that-enhance-your-forms/" title="15 Simple &#038; Effective jQuery Plugins that Enhance Your Forms">15 Simple &#038; Effective jQuery Plugins that Enhance Your Forms</a></li><li><a href="http://www.onextrapixel.com/2011/10/17/animating-colors-using-css3-transitions-with-jquery-fallback/" title="Animating Colors: Using CSS3 Transitions with jQuery Fallback">Animating Colors: Using CSS3 Transitions with jQuery Fallback</a></li><li><a href="http://www.onextrapixel.com/2011/09/09/gain-a-better-understanding-of-jquery/" title="Gain A Better Understanding of jQuery">Gain A Better Understanding of jQuery</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZloLh8luVd8:o3AghfWa3Qk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZloLh8luVd8:o3AghfWa3Qk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ZloLh8luVd8:o3AghfWa3Qk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZloLh8luVd8:o3AghfWa3Qk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZloLh8luVd8:o3AghfWa3Qk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ZloLh8luVd8:o3AghfWa3Qk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZloLh8luVd8:o3AghfWa3Qk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=ZloLh8luVd8:o3AghfWa3Qk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=ZloLh8luVd8:o3AghfWa3Qk:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/ZloLh8luVd8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/09/quickvalidate-building-a-jquery-validation-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/09/quickvalidate-building-a-jquery-validation-plugin/</feedburner:origLink></item>
		<item>
		<title>Giveaway: 3 Premium WordPress Themes from ThemeFuse</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/dYhIB52C2vc/</link>
		<comments>http://www.onextrapixel.com/2012/05/08/giveaway-3-premium-wordpress-themes-from-themefuse/#comments</comments>
		<pubDate>Tue, 08 May 2012 11:00:04 +0000</pubDate>
		<dc:creator>Onextrapixel Team</dc:creator>
				<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17920</guid>
		<description><![CDATA[Today, our pals from ThemeFuse would like to share 3 premium WordPress themes licenses with us. How about some free stuff to start the day off on a high note? When you're working with WordPress to run your... <a href="http://www.onextrapixel.com/2012/05/08/giveaway-3-premium-wordpress-themes-from-themefuse/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/Q5IfNuMS61YnFtmip2k38UuBv6c/0/da"><img src="http://feedads.g.doubleclick.net/~a/Q5IfNuMS61YnFtmip2k38UuBv6c/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Q5IfNuMS61YnFtmip2k38UuBv6c/1/da"><img src="http://feedads.g.doubleclick.net/~a/Q5IfNuMS61YnFtmip2k38UuBv6c/1/di" border="0" ismap="true"></img></a></p><p>Today, our pals from <strong>ThemeFuse</strong> would like to share 3 <a href="http://themefuse.com/">premium WordPress themes</a> licenses with us. How about some free stuff to start the day off on a high note? </p>
<p>When you're working with WordPress to run your site then you're in luck. The fortunate winners of today's giveaway will be given access to download one WordPress theme of their selection from ThemeFuse ... free of charge.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/themefuse.jpg" alt="Giveaway: 3 Premium WordPress Themes from ThemeFuse" title="Giveaway: 3 Premium WordPress Themes from ThemeFuse" width="580" height="360" class="alignnone size-full wp-image-17928" /><br />
<span id="more-17920"></span></p>
<h2>About ThemeFuse</h2>
<p>ThemeFuse is known inside the premium WordPress themes niche for their original designs and world-class support. At this point, they appear to be the first choice in case you are out there looking for an original WordPress theme.</p>
<p>ThemeFuse is the genuine top league in terms of WordPress theme stores. No matter what sort of website you are building you are sure to get yourself a proper theme at ThemeFuse.</p>
<p>Plus what you end up with is not only looks and stylish designs. The themes are carefully crafted on the source code side as well. Just to make your life easier they provide easy-to-use configuration interface with a lot of capabilities. Also, you can always visit the Support Forum, the FAQ section, or the online documentation to get more information about the theme you have won.</p>
<p>Following are a few examples of themes created and produced by ThemeFuse. View a full list of <a href="http://themefuse.com/">WordPress themes</a> on their website.</p>
<p><strong>Sportedge - Sport WordPress Theme</strong><br />
The versatile SportEdge Magazine is the best sport WordPress theme ThemeFuse could have come up with, that's a given! See for yourself.</p>
<p><a href="http://themefuse.com/wp-themes-shop/sportedge/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/sportedge.jpg" alt="Sport WordPress Theme" title="Sport WordPress Theme" width="580" height="305" class="alignnone size-full wp-image-17926" /></a></p>
<p><strong>Lifestyle - Magazine WordPress Theme</strong><br />
An online magazine oriented WordPress theme that also fits perfectly as a news, fashion or even a celebrity &amp; gossip blog.</p>
<p><a href="http://themefuse.com/wp-themes-shop/lifestyle/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/lifestyle.jpg" alt="Magazine WordPress Theme" title="Magazine WordPress Theme" width="580" height="305" class="alignnone size-full wp-image-17924" /></a></p>
<p><strong>Clean Classy Corporate - Enterprise WordPress Theme</strong><br />
Be it web products, cloud computing or SaaS, C3 has a clean corporate feel to it which caters to the new breed of web entrepreneurs.</p>
<p><a href="http://themefuse.com/wp-themes-shop/clean-classy-corporate/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/cleanclassycorporate.jpg" alt="Enterprise WordPress Theme" title="Enterprise WordPress Theme" width="580" height="305" class="alignnone size-full wp-image-17922" /></a></p>
<p><strong>PhotoArtist - Photography WordPress Theme</strong><br />
If you are a photographer looking to showcase your work in style then let us present you your soon to be portfolio website.</p>
<p><a href="http://themefuse.com/wp-themes-shop/photo-artist/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/photoartist.jpg" alt="Photography WordPress Theme" title="Photography WordPress Theme" width="580" height="305" class="alignnone size-full wp-image-17925" /></a></p>
<p><strong>Bon Apetit - Restaurant WordPress Theme</strong><br />
This WordPress theme is destined for a restaurant or coffee shop website but it can be also used for a pastry, catering or recipes portal.</p>
<p><a href="http://themefuse.com/wp-themes-shop/bon-apetit/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/bonapetit.jpg" alt="Restaurant WordPress Theme" title="Restaurant WordPress Theme" width="580" height="305" class="alignnone size-full wp-image-17921" /></a></p>
<p><strong>Creative Juice - Portfolio WordPress Theme</strong><br />
They've crafted this WordPress theme with a showcase portfolio in mind. It can be easily used by web agencies / studios or small design firms.</p>
<p><a href="http://themefuse.com/wp-themes-shop/creative-juice/"><img src="http://net.onextrapixel.com/wp-content/uploads/2012/05/creativejuice1.jpg" alt="Portfolio WordPress Theme" title="Portfolio WordPress Theme" width="580" height="305" class="alignnone size-full wp-image-17927" /></a></p>
<h4>Prizes</h4>
<p>3 coupons, each worth $49. Valid for any available themes.</p>
<h2>Enter the giveaway</h2>
<ul>
<li>Submit a comment to this post and tell us which is your favorite theme and where will you use it if you were one of the winners.</li>
<li>Spread the word on Twitter: Win a free copy of @ThemeFuse #WordPress Theme from @onextrapixel (RT to Enter) to increase your chance of winning.</li>
<li>Like ThemeFuse on <a href="http://www.facebook.com/themefuse?v=app_4949752878">ThemeFuse Facebook page</a> (they will notify the winners there too).</li>
</ul>
<p>This giveaway ends on <strong>14th May, 2012</strong>. Please use a valid email address when filling out the comment form. Please comment only once.</p>
<p>The winners will be selected at random, contacted by email within 3 business days after the contest is over and announced in this article.</p>
<p>Good luck, everyone!</p>
<div class="result">
<h2>Here Are The Lucky Winners</h2>
<p>We are glad to announce the lucky winners for ThemeFuse giveaway. They are:</p>
<ul>
<li>Sal</li>
<li>Tiana Chanell</li>
<li>Astrid Karsten</li>
</ul>
<p>Winners will be contacted through email soon. If you are one of them and have not received an email from us or our sponsor by next week, please <a href="http://www.onextrapixel.com/contact/">contact us</a>.</p>
<p>Thank you for all your support. For sure, we will be organising more giveaway contest so everyone will have a chance to win, stay tuned!
</p></div>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2011/11/11/wordpress-themes-giveaway-5-coupon-codes-from-themify/" title="WordPress Themes Giveaway: 5 coupon codes from Themify">WordPress Themes Giveaway: 5 coupon codes from Themify</a></li><li><a href="http://www.onextrapixel.com/2011/11/09/a-collection-of-the-most-recent-and-useful-wordpress-themes-and-plugins/" title="A Collection of the Most Recent and Useful WordPress Themes and Plugins">A Collection of the Most Recent and Useful WordPress Themes and Plugins</a></li><li><a href="http://www.onextrapixel.com/2011/09/06/wordpress-theme-giveaway-3-venture-themes-up-for-grabs/" title="WordPress Theme Giveaway: 3 Venture Themes Up for Grabs!">WordPress Theme Giveaway: 3 Venture Themes Up for Grabs!</a></li><li><a href="http://www.onextrapixel.com/2011/08/16/tokokoo-giveaway-5-x-parquet-premium-wordpress-ecommerce-themes/" title="Tokokoo Giveaway: 5 x Parquet Premium WordPress eCommerce Themes">Tokokoo Giveaway: 5 x Parquet Premium WordPress eCommerce Themes</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=dYhIB52C2vc:RTTMCKTV7vA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=dYhIB52C2vc:RTTMCKTV7vA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=dYhIB52C2vc:RTTMCKTV7vA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=dYhIB52C2vc:RTTMCKTV7vA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=dYhIB52C2vc:RTTMCKTV7vA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=dYhIB52C2vc:RTTMCKTV7vA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=dYhIB52C2vc:RTTMCKTV7vA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=dYhIB52C2vc:RTTMCKTV7vA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=dYhIB52C2vc:RTTMCKTV7vA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/dYhIB52C2vc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/08/giveaway-3-premium-wordpress-themes-from-themefuse/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/08/giveaway-3-premium-wordpress-themes-from-themefuse/</feedburner:origLink></item>
		<item>
		<title>Using Your Inner Child To Consistently Better Your Career</title>
		<link>http://feedproxy.google.com/~r/onextrapixel/~3/4uDqPPUh6A4/</link>
		<comments>http://www.onextrapixel.com/2012/05/07/using-your-inner-child-to-consistently-better-your-career/#comments</comments>
		<pubDate>Mon, 07 May 2012 11:00:19 +0000</pubDate>
		<dc:creator>Jamal Jackson</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[career]]></category>

		<guid isPermaLink="false">http://www.onextrapixel.com/?p=17135</guid>
		<description><![CDATA[To some degree, everyone never fully grows up. No matter how hard anyone wants to fight it, there will always be some part of your childhood self lingering around. Some people might not view this as being a... <a href="http://www.onextrapixel.com/2012/05/07/using-your-inner-child-to-consistently-better-your-career/">Read More</a>]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/dIYSSYwZD1UYlfmIJy0WgDLsc9s/0/da"><img src="http://feedads.g.doubleclick.net/~a/dIYSSYwZD1UYlfmIJy0WgDLsc9s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dIYSSYwZD1UYlfmIJy0WgDLsc9s/1/da"><img src="http://feedads.g.doubleclick.net/~a/dIYSSYwZD1UYlfmIJy0WgDLsc9s/1/di" border="0" ismap="true"></img></a></p><p>To some degree, everyone never fully grows up. No matter how hard anyone wants to fight it, there will always be some part of your <strong>childhood self</strong> lingering around. Some people might not view this as being a good quality for themselves to have. Let’s face it, children aren’t widely known for being the most wise and best decision makers.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/03/inner-child-cover.jpg" alt="Using Your Inner Child To Consistently Better Your Career" width="580" height="360" class="alignnone size-full wp-image-17141" /></p>
<p>However, there is one thing about children only an idiot can’t recognize or would ignore. This being that children are instinctively better learners than their adult counterparts. To them every day is a new learning experience, so its pretty obvious why an older person simply can’t compete here. That’s all okay though because for older people, that same ease of learning can be found when learning about something there is a personal passion for.</p>
<p>That is why in this article, we’re going to take a look at how to properly utilize your inner child to better your career.<br />
<span id="more-17135"></span></p>
<h2>Using Your Inner Child to Better Your Career</h2>
<h4>What Is the Inner Child of a Web Professional</h4>
<p>For any professional in their chosen field for the right reasons, it’s impossible not to have encountered your inner child. The inner child of any professional becomes most clear to the eye when what you’re doing no longer appears to be work, and pursuing a higher level of knowledge in this field it seems like the most fun idea that materializes into your head. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/03/inner-child-1.jpg" alt="What Is the Inner Child of a Web Professional" width="580" height="400" class="alignnone size-full wp-image-17136" /></p>
<p>For professionals apart from the web industry, the inner child is visible almost all the time. Here are a few instances where it is most easily recognizable to better illustrate this point.</p>
<h4>When You First Entered The Web Industry</h4>
<p>Remember how it felt having that first encounter with HTML? How about PhotoShop? An even better question, how clear is your memory of your first time looking at a website and just being dumbfounded from looking at it?</p>
<p>Speaking from personal experience, those moments will never be lost memories. For everyone that was a special time, and this is where your first encounter of your inner child occurs.</p>
<h4>Realizing Making a Quality Living is a Reality</h4>
<p>When we’re young, the thoughts of what was an ideal adult life were based off of being able to do what was fun then for a professional living. With that ideology in mind, and age range, its no wonder most children want to be professional athletes or entertainers. These were the people they saw all the time doing the things they enjoyed, and living quality lifestyles by doing it on a professional level.</p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/03/inner-child-2.jpg" alt="Realizing Making a Quality Living is a Reality" width="580" height="452" class="alignnone size-full wp-image-17137" /></p>
<p>The early adapters of web designers and developers didn’t have an industry as prosperous as we see now. Stories of long nights working diligently, on things we now can do in an instant, really showed the true passion and hunger for this field those early adapters had. Now try to imagine the feeling someone working a minimum wage job during the day, and studying web technologies at night would have when they realized what type of quality living was possible through the web industry when it grew a little. </p>
<p>This feeling felt is another instance where the inner child can be found.</p>
<h4>Learning a New Skill or Furthering One</h4>
<p>The main word anyone would be a fool to associate this fast paced industry we make up is boring. There is seemingly something new popping up everyday to learn and master, and new technology for viewing that is changing everything we know. It wasn’t too long ago when parallax design was the new trending practice leading the industry, but seemingly as fast as it came to prominence a new practice took its place. This practice of course being responsive design. </p>
<p>The way new skills and techniques keep popping up out of everywhere, even the most advanced professional has to be amazed from time to time. This amazement of embracing a new and foreign skill is the most common recurring instance where the inner child is present.</p>
<h4>How You Lose Sight of Your Inner Child</h4>
<p>Despite how fun and exciting this industry is, there are a lot of negative factors that can affect your connection with your inner child and your career. This is nothing new of course, these things are always present for any creative who chooses to use their creative talents for a living. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/03/inner-child-2a.jpg" alt="How You Lose Sight of Your Inner Child" width="580" height="400" class="alignnone size-full wp-image-17138" /></p>
<p>The only difference for web professionals is that seemingly everyone thinks they can give good insight into how a project should be carried out because they browse the web all the time. Instead of going into detail on these negative aspects, especially since they have been talked about in an abundance of other articles, simply listing them will suffice:</p>
<ul>
<li>The stress of pursing regular learning to stay up to date</li>
<li>The long hours</li>
<li>The sometimes awful clients</li>
<li>The never ending stress</li>
<li>The constant game changers almost making you obsolete</li>
</ul>
<p>The list can go on forever, but these five are good enough to get the point across. This may seem like there is no hope for ever maintaining the connection to your inner child because these factors mentioned above are continuous. However, it is quite possible to find and maintain it despite these factors contributing to its loss.</p>
<h4>Finding and Maintaining</h4>
<p>Energy is never created or destroyed, it is either present or moving to a new destination. Looking past the oblivious chopping up of the definition of energy to suit this article, it perfectly relates to the topic of finding and maintaining your inner child. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/03/inner-child-3.jpg" alt="Finding and Maintaining" width="580" height="400" class="alignnone size-full wp-image-17139" /></p>
<p>So with that in mind, let’s take the time to look at some ways of finding and maintaining your inner child in this joyfully chaotic industry.</p>
<h4>Spend Time Around Those Less Experienced</h4>
<p>There is nothing that can match the same pure excitement of someone new to the industry. That highly energized tumbling around in hopes of one day obtaining a higher grasp of web technologies creates a ton of wonderful memories. </p>
<p>For those more seasoned in the industry, these days are long gone. So by spending time around fresher industry faces, you’ll easily be able to pick up on all those good vibes they're sending off. The less seasoned one will also benefit from having someone with quality experience in their corner.</p>
<h4>Looking Back At Old Work</h4>
<p>For everyone, the work they did when they first started feels like it should never see the light of day. This of course is understandable, especially depending on when you started. </p>
<p><img src="http://net.onextrapixel.com/wp-content/uploads/2012/03/inner-child-4.jpg" alt="Looking Back At Old Work" width="580" height="400" class="alignnone size-full wp-image-17140" /></p>
<p>However taking the occasional quick glance into past projects, will give a quick laugh and energize you into pushing with what you are currently doing. </p>
<h4>Take the Time To Look At How Far You’ve Come</h4>
<p>As everyone with any amount of serious experience in any field will tell you, the best times were always in the unknown at the beginning. The questionable destination, the seemingly impossible goals, the unimaginable difficult learning curve imagined, and let’s not forget the making money aspect. Taking a few seconds to take note of where you are, compared to where you were when you started will give a great appreciation for what you have now, and the journey that led you there.</p>
<h2>Conclusion</h2>
<p>The person found in childhood youth is never truly gone as maturity begins to occur. It simply transfers from the conscious to the subconscious mind, waiting to find usefulness again. For any professional in a stressful industry, finding a career where finding your inner child is a breeze is vital to maintaining sanity. </p>
<p>In this article hopefully you’ve learned more about your inner child, and where to find him when things get a little unbearable.</p>
<ul class="related_post"><li><a href="http://www.onextrapixel.com/2012/01/12/finding-a-balance-between-personal-and-paid-work/" title="Finding a Balance Between Personal and Paid Work">Finding a Balance Between Personal and Paid Work</a></li></ul><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/onextrapixel?a=4uDqPPUh6A4:IqYsT30LkFo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=4uDqPPUh6A4:IqYsT30LkFo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=4uDqPPUh6A4:IqYsT30LkFo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=4uDqPPUh6A4:IqYsT30LkFo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=4uDqPPUh6A4:IqYsT30LkFo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=4uDqPPUh6A4:IqYsT30LkFo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=4uDqPPUh6A4:IqYsT30LkFo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/onextrapixel?i=4uDqPPUh6A4:IqYsT30LkFo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/onextrapixel?a=4uDqPPUh6A4:IqYsT30LkFo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/onextrapixel?d=l6gmwiTKsz0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/onextrapixel/~4/4uDqPPUh6A4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.onextrapixel.com/2012/05/07/using-your-inner-child-to-consistently-better-your-career/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.onextrapixel.com/2012/05/07/using-your-inner-child-to-consistently-better-your-career/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 50/88 queries in 0.125 seconds using apc
Object Caching 1209/1260 objects using apc
Content Delivery Network via net.onextrapixel.com

Served from: onextrapixel.com @ 2012-05-18 20:02:55 -->

