<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Grupo Desde Abajo</title>
	<atom:link href="http://grupodesdeabajo.com.ar/feed/" rel="self" type="application/rss+xml" />
	<link>http://grupodesdeabajo.com.ar</link>
	<description>WORDPRESS Web Design, WORDPRESS Design, Flash</description>
	<lastBuildDate>Tue, 21 Feb 2012 19:57:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Accordion with CSS3</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/21/accordion-with-css3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=accordion-with-css3</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/21/accordion-with-css3/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 19:57:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Accordion]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/21/accordion-with-css3/</guid>
		<description><![CDATA[


View demo Download source
Today we&#8217;ll experiment some more with the adjacent and general sibling combinator and the :checked pseudo-class. Using hidden inputs and labels, we will create an accordion that will animate the content areas on opening and closing. 
There are many variations of CSS-only accordions around, most of which are implemented using the :target [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tympanus.net/Tutorials/CSS3Accordion/"><br />
<img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/CSS3Accordion.jpg" alt="Accordion with CSS3" title="Accordion with CSS3" width="580" height="315" class="alignnone size-full wp-image-7829" /><br />
</a></p>
<p><a class="demo" href="http://tympanus.net/Tutorials/CSS3Accordion/">View demo</a> <a class="download" href="http://tympanus.net/Tutorials/CSS3Accordion/CSS3Accordion.zip">Download source</a></p>
<p>Today we&#8217;ll experiment some more with the adjacent and general sibling combinator and the :checked pseudo-class. Using hidden inputs and labels, we will create an accordion that will animate the content areas on opening and closing. </p>
<p>There are many variations of CSS-only accordions around, most of which are implemented using the :target pseudo-class. The problem with using :target is that we can&#8217;t really close the content areas again or have multiple sections open at the same time. By using hidden checkboxes, we can control the opening and closing. Alternatively, we can also use radio buttons if only one section should be open at a time.</p>
<p>So, let start!</p>
<p><strong>Please note: the result of this tutorial will only work as intended in browsers that support the CSS3 properties in use.</strong></p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div>
<div style="clear:both;"></div>
<h3>The Markup</h3>
<p>We will be going through an example that uses checkboxes where one content section is open by default (the input needs to be &#8216;checked&#8217;). Everything will be wrapped in a container with the class <strong>ac-container</strong>. For each item, we will have a checkbox, a label and an article which is the content section of that item:</p>
<pre class="brush:xml">
&lt;section class="ac-container"&gt;
	&lt;div&gt;
		&lt;input id="ac-1" name="accordion-1" type="checkbox" /&gt;
		&lt;label for="ac-1"&gt;About us&lt;/label&gt;
		&lt;article class="ac-small"&gt;
			&lt;p&gt;Some content... &lt;/p&gt;
		&lt;/article&gt;
	&lt;/div&gt;
	&lt;div&gt;
		&lt;input id="ac-2" name="accordion-1" type="checkbox" checked /&gt;
		&lt;label for="ac-2"&gt;How we work&lt;/label&gt;
		&lt;article class="ac-medium"&gt;
			&lt;p&gt;Some content... &lt;/p&gt;
		&lt;/article&gt;
	&lt;/div&gt;
	&lt;div&gt;&lt;!--...--&gt;&lt;/div&gt;
&lt;/section&gt;
</pre>
<p>Note that we need to give each input an ID which we will then use in the <em>for</em> attribute of the label. We need this in order to check the checkbox when clicking on the label.</p>
<p>Each article will have a class that will help us determine to which height we it to expand to. (Optimally, we could use &#8216;auto&#8217; as the expanded height value, but unfortunately it will not animate like that.)</p>
<p>Let&#8217;s have a look at the style.</p>
<h3>The CSS</h3>
<p><em>I will omit all the vendor prefixes, but you will, of course, find them in the files.</em></p>
<p>Let&#8217;s define a width for the accordion and center it:</p>
<pre class="brush:css">
.ac-container{
	width: 400px;
	margin: 10px auto 30px auto;
}
</pre>
<p>Next, we&#8217;ll make the labels appear as clickable buttons by giving them some slick background gradient. With multiple box shadows, we&#8217;ll create a subtle border and an inset effect. We&#8217;ll also set the z-index to 20, to make sure it will be on top of the content section:</p>
<pre class="brush:css">
.ac-container label{
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	padding: 5px 20px;
	position: relative;
	z-index: 20;
	display: block;
	height: 30px;
	cursor: pointer;
	color: #777;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
	line-height: 33px;
	font-size: 19px;
	background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
	box-shadow:
		0px 0px 0px 1px rgba(155,155,155,0.3),
		1px 0px 0px 0px rgba(255,255,255,0.9) inset,
		0px 2px 2px rgba(0,0,0,0.1);
}
</pre>
<p>On hover, we&#8217;ll make the label white:</p>
<pre class="brush:css">
.ac-container label:hover{
	background: #fff;
}
</pre>
<p>When we click on a label, the checkbox get&#8217;s checked and when that happens we want the respective label to have the following &#8220;selected&#8221; style:</p>
<pre class="brush:css">
.ac-container input:checked + label,
.ac-container input:checked + label:hover{
	background: #c6e1ec;
	color: #3d7489;
	text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
	box-shadow:
		0px 0px 0px 1px rgba(155,155,155,0.3),
		0px 2px 2px rgba(0,0,0,0.1);
}
</pre>
<p>As you can see, we are using the adjacent sibling combinator to select the label since it is directly preceded by the checkbox input. </p>
<p>Let&#8217;s add a little arrow icon on hover. For that we&#8217;ll simply use the pseudo-class &#8220;after&#8221; so that we don&#8217;t add unecessary markup:</p>
<pre class="brush:css">
.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 7px;
	background: transparent url(../images/arrow_down.png) no-repeat center center;
}
</pre>
<p>For the &#8220;selected&#8221; item, we want to show the up-pointing arrow:</p>
<pre class="brush:css">
.ac-container input:checked + label:hover:after{
	background-image: url(../images/arrow_up.png);
}
</pre>
<p>And since we don&#8217;t want the inputs to show, we&#8217;ll hide them:</p>
<pre class="brush:css">
.ac-container input{
	display: none;
}
</pre>
<p>The content area will have an initial height of 0px and any overflow will be hidden. We&#8217;ll add a transition for the height and for the box shadow. The transition that we are adding here will act upon &#8220;closing&#8221; the item. We define another transition for the selected item. So, we can basically control the two behaviors by doing this. As you can see, we will make the closing a bit faster than the opening.</p>
<pre class="brush:css">
.ac-container article{
	background: rgba(255, 255, 255, 0.5);
	margin-top: -1px;
	overflow: hidden;
	height: 0px;
	position: relative;
	z-index: 10;
	transition:
		height 0.3s ease-in-out,
		box-shadow 0.6s linear;
}
.ac-container input:checked ~ article{
	transition:
		height 0.5s ease-in-out,
		box-shadow 0.1s linear;
	box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}
</pre>
<p>Let&#8217;s style the content a bit:</p>
<pre class="brush:css">
.ac-container article p{
	font-style: italic;
	color: #777;
	line-height: 23px;
	font-size: 14px;
	padding: 20px;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}
</pre>
<p>Now we define the three classes for the different heights. These are the heights that an item&#8217;s content will animate to:</p>
<pre class="brush:css">
.ac-container input:checked ~ article.ac-small{
	height: 140px;
}
.ac-container input:checked ~ article.ac-medium{
	height: 180px;
}
.ac-container input:checked ~ article.ac-large{
	height: 230px;
}
</pre>
<p>As already mentioned, &#8220;auto&#8221; height would of course be the best option here, but since we can&#8217;t animate to that, we need to set some heights for the transition.</p>
<p>Please note that in some mobile browsers, clicking on a label <strong>might not</strong> trigger the checking or focusing of the associated input.</p>
<h3>Demos</h3>
<ol>
<li><strong><a href="http://tympanus.net/Tutorials/CSS3Accordion/index.html">Demo 1: Using Checkboxes</a></strong></li>
<li><strong><a href="http://tympanus.net/Tutorials/CSS3Accordion/index2.html">Demo 2: Using Radio Buttons</a></strong></li>
<li><strong><a href="http://tympanus.net/Tutorials/CSS3Accordion/index3.html">Demo 3: Using Checkboxes (default open)</a></strong></li>
</ol>
<p>And that&#8217;s it! I hope you enjoyed this tutorial and find it useful!</p>
<p><a class="demo" href="http://tympanus.net/Tutorials/CSS3Accordion/">View demo</a> <a class="download" href="http://tympanus.net/Tutorials/CSS3Accordion/CSS3Accordion.zip">Download source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/21/accordion-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ConvergeSE</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=convergese-2</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese-2/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 23:50:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[ConvergeSE]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese-2/</guid>
		<description><![CDATA[
ConvergeSE &#8594;

      


]]></description>
			<content:encoded><![CDATA[<p><a href="http://convergese.com/"><img src="http://stylesinspiration.com/wp-content/uploads/2012/02/spstyles_05_large.jpg" alt="ConvergeSE"/></a></p>
<div id="visiturl"><a href="http://convergese.com/"><span>ConvergeSE &rarr;</span></a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/stylesinspiration/feed/~4/BDVlSvSfVO0" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ConvergeSE</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=convergese</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 23:50:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[ConvergeSE]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese/</guid>
		<description><![CDATA[
ConvergeSE &#8594;

      


]]></description>
			<content:encoded><![CDATA[<p><a href="http://convergese.com/"><img src="http://stylesinspiration.com/wp-content/uploads/2012/02/spstyles_05_large.jpg" alt="ConvergeSE"/></a></p>
<div id="visiturl"><a href="http://convergese.com/"><span>ConvergeSE &rarr;</span></a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=BDVlSvSfVO0:2AT8iqjCwxM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=BDVlSvSfVO0:2AT8iqjCwxM:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/stylesinspiration/feed/~4/BDVlSvSfVO0" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/20/convergese/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Establish a Mood with Typography</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/20/establish-a-mood-with-typography/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=establish-a-mood-with-typography</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/20/establish-a-mood-with-typography/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 04:27:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Establish]]></category>
		<category><![CDATA[Mood]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/20/establish-a-mood-with-typography/</guid>
		<description><![CDATA[
Almost any website or design project will include the use of type. From a few words to a page filled with text the font choices you make in the early planning phases will carry through the project. Fonts can help create and establish a mood and set the tone for how your work is received.
Do [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/Mood.jpg" alt="Establish a Mood with Typography" title="Establish a Mood with Typography" width="580" height="315" class="alignnone size-full wp-image-7822" /></p>
<p>Almost any website or design project will include the use of type. From a few words to a page filled with text the font choices you make in the early planning phases will carry through the project. Fonts can help create and establish a mood and set the tone for how your work is received.</p>
<p>Do you want a modern look and feel? Or is the desired effect more classical? Is text being used primarily as art or in logo design or does it need to meet readability standards? All of these are questions you should answer before selecting typefaces for a project.</p>
<p>Keep in mind that each typeface on its own can say almost as much about the project as actual words on the page (or screen). Carefully evaluate typefaces so that each represents projects in the proper way.</p>
<h3>Project Goals</h3>
<p>The first step with any design project is to determine what you expect as a final outcome. Think about how type will be used. You would not use the same font on a wedding invitation as for a wanted poster, right?</p>
<p>Stick to simple typefaces that are highly readable for projects with large blocks of text. In web design the trend is to use a sans serif body font – think Arial, Tahoma and Verdana. Using a simple choice will take the emphasis off the look of the text so that it is easy to read, such as the simple sans serif font used on this website. Look for a font with average width strokes and lines – stay away from super thin or thick letter forms – to ensure readability.</p>
<p><a href="http://caravanonexmouth.co.uk/" target="_blank" title="caravan"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/caravan.jpg" alt="" title="caravan" width="580" height="387" class="alignnone size-full wp-image-7766" /></a></p>
<p>Consider the impact of type on images as well. If the image is driving the design, keep type simple so the image stands out. <a href="http://caravanonexmouth.co.uk/" target="_blank">Caravan Restaurant &#038; Bar</a> does this with a striking image of its interior on the landing page while using simple type to direct you to other parts of the website.</p>
<p>More engaging font choices often work best when used sparingly and when they can stand on their own. Use a funkier font for items that will be used as artistic elements or that do not rely on readability. Old style, cursive, script and display typefaces can quickly establish a mood and work best when used at large sizes.</p>
<p><a href="http://www.indubitablee.com/" target="_blank" title="gooddesign"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/gooddesign.jpg" alt="" title="gooddesign" width="580" height="398" class="alignnone size-full wp-image-7771" /></a></p>
<p>For example, “Good Design” establishes a light mood for this site. The same goes for the company name, <a href="http://www.indubitablee.com/" target="_blank">Indubitablee</a>, in the top left corner. The typefaces have curvy, loose styles and look fun. Now imagine either of those typefaces while trying to read this article. It would be a lot less fun and would be difficult to read.</p>
<h3>Moods</h3>
<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/moodfonts.jpg" alt="" title="moodfonts" width="580" height="436" class="alignnone size-full wp-image-7772" /></p>
<p>Although there are many factors that contribute to the overall feel of a website, some type choices alone can set the mood. (Although some fonts, such as Helvetica, are considered “moodless.” This means these letter forms take on the feel of other typefaces.)<br />
Font selections can feel formal or informal, light or dramatic, modern or traditional and warm or cool. Fonts are not limited to a single mood and combinations of typefaces can create different mood associations.</p>
<p><a href="http://www.teamfannypack.com/" target="_blank" title="fannypack"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/fannypack.jpg" alt="" title="fannypack" width="580" height="408" class="alignnone size-full wp-image-7769" /></a></p>
<p>The <a href="http://www.teamfannypack.com/" target="_blank">Team Fannypack</a> website combines traditional and dramatic typefaces for a very old-style feel but with hints of modernism (not the icon in the top left corner).</p>
<p><a href="http://www.adpacks.com/" target="_blank" title="adpacks"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/adpacks.jpg" alt="" title="adpacks" width="580" height="347" class="alignnone size-full wp-image-7764" /></a></p>
<p><a href="http://www.adpacks.com/" target="_blank">AdPacks.com</a> uses scripts and sans serif typefaces to create a page with a look that mirrors the theme “classy” the site is pushing. The old-style image and background in combination with the type creates a harmony in what the page says and its visual identity.</p>
<p><a href="http://wakwaw.com/" target="_blank"><br />
<img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/wakwaw.jpg" alt="" title="wakwaw" width="580" height="388" class="alignnone size-full wp-image-7773" /></a></p>
<p><a href="http://wakwaw.com/" target="_blank">WakWAW</a> takes a completely different approach. It uses a very dramatic typeface to catch your attention and the font is used throughout for headers and as a navigational tool. It combines with a “moodless” font that is easy to read but does not take away from the chaotic feel of the site.</p>
<h3>Consider Established Themes</h3>
<p>Keep in mind that establishing mood and feeling is pretty complex and can come across differently based on each person’s experiences. While there are some pretty universally accepted moods – think back to that “Wanted” poster – others are not so clearly defined.<br />
Developing a mood based on distinct type selections from certain time periods can help. Using a typeface with an established identity can create an instant mood.</p>
<p><a href="http://www.fontdiner.com/main.html" target="_blank"><br />
<img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/fontdiner.jpg" alt="" title="fontdiner" width="580" height="419" class="alignnone size-full wp-image-7770" /></a></p>
<p><a href="http://www.fontdiner.com/main.html" target="_blank">Font Diner</a> uses a 50’s theme, with the main title having the look of the logo from a classic Chevrolet. This visual association is quick. With just a glance you are instantly taken back in time. And the site name, Font Diner, further expands on that theme.</p>
<p><a href="http://www.cakesweetcake.co.uk/" target="_blank"><br />
<img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/cake.jpg" alt="" title="cake" width="580" height="422" class="alignnone size-full wp-image-7765" /></a></p>
<p><a href="http://addymeira.net/weddings/" target="_blank" title="addy"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/addy.jpg" alt="" title="addy" width="580" height="415" class="alignnone size-full wp-image-7763" /></a></p>
<p>Script and cursive type choices instantly create a feminine mood and are commonly used on websites targets at women. (Think of how many wedding and party invitations use this brand of typography.) <a href="http://www.cakesweetcake.co.uk/" target="_blank">Cake Sweet Cake</a> and <a href="http://addymeira.net/weddings/" target="_blank">Addy Meira</a> each use a collection of cursive and italics to create a lights and delightful moods on sites with woman-appeal.</p>
<h3>Trends</h3>
<p>With the number of items competing for your attention on websites, font choices are becoming increasingly dramatic. But at the same time, type driven sites are opting for more traditional sans serif choices to set them apart.</p>
<p>High impact, high drama fonts are not always readable and can create a sense of intrigue or chaos. These type selections can do one of two things: Bring in new people to the site because of interest, or confuse and turn them away. Make sure to use “super moody,” bold choices with strong images that help convey a message if the type falls short. </p>
<p><a href="https://tuispace.com/" target="_blank" title="earthlings"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/earthlings.jpg" alt="" title="earthlings" width="580" height="383" class="alignnone size-full wp-image-7768" /></a></p>
<p><a href="https://tuispace.com/" target="_blank">“Greetings Earthlings”</a> is a great example of a moody choice paired with a strong image and nice supporting type. It immediately sets a space odyssey feel with an image and typeface on the landing page but the rest of the site uses an easy to read typeface. Site developers merged impact and readability.</p>
<h3>Adding Color</h3>
<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/color.jpg" alt="" title="color" width="580" height="116" class="alignnone size-full wp-image-7767" /></p>
<p>Mood can sometimes be about more than just a font. Think about color choices and how just a simple hue change can alter how you feel. Traditional color mood rules still apply and should be considered to avoid an inadvertent emotional association.</p>
<p>Reds and blacks, especially when paired with dramatic typefaces, can create a sense of passion or anger. Blues and greens are more peaceful, with blue also sometimes establishing a sense of melancholy and greens linking to nature. Yellow can be cheerful or comforting and oranges are also exciting or energetic. White emphasizes emptiness or space.</p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/20/establish-a-mood-with-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thibaud</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/19/thibaud/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=thibaud</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/19/thibaud/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 04:27:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Thibaud]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/19/thibaud/</guid>
		<description><![CDATA[
Thibaud &#8594;

      


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thibaud.be/#"><img src="http://stylesinspiration.com/wp-content/uploads/2012/02/spstyles_06_large.jpg" alt="Thibaud"/></a></p>
<div id="visiturl"><a href="http://www.thibaud.be/#"><span>Thibaud &rarr;</span></a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=MhEI4xM0sxo:H0wjzCvJspc:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=MhEI4xM0sxo:H0wjzCvJspc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=MhEI4xM0sxo:H0wjzCvJspc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=MhEI4xM0sxo:H0wjzCvJspc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=MhEI4xM0sxo:H0wjzCvJspc:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/stylesinspiration/feed/~4/MhEI4xM0sxo" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/19/thibaud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress tip: Add extra contact methods to user profiles</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/18/wordpress-tip-add-extra-contact-methods-to-user-profiles/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-tip-add-extra-contact-methods-to-user-profiles</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/18/wordpress-tip-add-extra-contact-methods-to-user-profiles/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 20:04:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[extra]]></category>
		<category><![CDATA[methods]]></category>
		<category><![CDATA[profiles]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/18/wordpress-tip-add-extra-contact-methods-to-user-profiles/</guid>
		<description><![CDATA[Nothing complicated: Just paste the following code into your function.php file. Edit lines 4 and 5 according to your needs.

add_filter('user_contactmethods', 'my_user_contactmethods');

function my_user_contactmethods($  user_contactmethods){
  $  user_contactmethods['twitter'] = 'Twitter Username';
  $  user_contactmethods['facebook'] = 'Facebook Username';

  return $  user_contactmethods;
}
Hungry for code snippets? I just opened a snippet library on CatsWhoCode, which [...]]]></description>
			<content:encoded><![CDATA[<p>Nothing complicated: Just paste the following code into your function.php file. Edit lines 4 and 5 according to your needs.</p>
<pre>
add_filter('user_contactmethods', 'my_user_contactmethods');

function my_user_contactmethods($  user_contactmethods){
  $  user_contactmethods['twitter'] = 'Twitter Username';
  $  user_contactmethods['facebook'] = 'Facebook Username';

  return $  user_contactmethods;
}</pre>
<p>Hungry for code snippets? I just opened a <a href="http://www.catswhocode.com/blog/snippets">snippet library on CatsWhoCode</a>, which include lots of WordPress snippets. Have a look, and don&#8217;t hesitate to submit yours!</p>
<p><strong><em>Thanks to <a href="http://wp.tutsplus.com/tutorials/quick-tip-add-extra-contact-methods-to-user-profiles/">TutsPlus</a> for the cool tip!</em></strong></p>
<p><img src="http://feeds.feedburner.com/~r/Wprecipes/~4/eos0y9_nrOg" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/18/wordpress-tip-add-extra-contact-methods-to-user-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conceptboard Giveaway</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/18/conceptboard-giveaway/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=conceptboard-giveaway</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/18/conceptboard-giveaway/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 12:50:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Conceptboard]]></category>
		<category><![CDATA[Giveaway]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/18/conceptboard-giveaway/</guid>
		<description><![CDATA[
The three winners of Conceptboard&#8217;s giveaway will get a professional account with unlimited coworkers free of charge for one year.
What is Conceptboard?
It’s everything you ever wanted when working on your drafts with coworkers or clients. Conceptboard is a versatile space to upload images and documents combined with simple but powerful scribble, highlight and commenting tools. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/conceptboard_promotion_1.jpg" alt="" title="Conceptboard Giveaway" width="580" height="429" class="alignnone size-full wp-image-7809" /></p>
<p>The three winners of Conceptboard&#8217;s giveaway will get a professional account with unlimited coworkers free of charge for one year.</p>
<h3>What is Conceptboard?</h3>
<p>It’s everything you ever wanted when working on your drafts with coworkers or clients. <a href="http://conceptboard.com/">Conceptboard</a> is a versatile space to upload images and documents combined with simple but powerful scribble, highlight and commenting tools. It&#8217;s wrapped up in real time collaboration features such as presentations and guest access.</p>
<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/conceptboard_promotion_2.jpg" alt="conceptboard_promotion_2" title="" width="580" height="232" class="alignnone size-full wp-image-7810" /></p>
<p>Check out the sample board of a <a href="http://conceptboard.com/load/example-photodiscussion">photo shooting</a> or create a <a href="http://conceptboard.com/__/newboard">new demo board</a> to play around with.</p>
<h3>How to use it</h3>
<ul>
<li>idea visualization &amp; decision processes</li>
<li>brainstorming &amp; mind mapping</li>
<li>design &amp; document review</li>
<li>task management &amp; approval</li>
<li>mock-ups &amp; sketches</li>
</ul>
<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/screenshot_annotations.jpg" alt="screenshot_annotations" title="" width="580" height="386" class="alignnone size-full wp-image-7811" /></p>
<h3>Features</h3>
<ul>
<li>upload concepts, drafts &#038; office documents
<li>scribble, highlight &#038; underline
<li>take screenshots with the integrated tool
<li>work with your team in real time
<li>start ad hoc presentations
<li>make precise comments &#038; assign tasks
<li>use your own corporate branding
<li>manage your staff
<li>work together with freelancers and customers
</ul>
<p>To enter the giveaway, simply add your comment below and tell us why you&#8217;d like to try Conceptboard.</p>
<p>Good luck to everyone!</p>
<p><strong>This giveaway will end on the 23rd of February 2012 at 4 p.m. GMT+0.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/18/conceptboard-giveaway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Postmates</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/17/postmates/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=postmates</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/17/postmates/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 09:04:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Postmates]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/17/postmates/</guid>
		<description><![CDATA[
Postmates &#8594;

      


]]></description>
			<content:encoded><![CDATA[<p><a href="http://postmates.com/"><img src="http://stylesinspiration.com/wp-content/uploads/2012/02/si_specky_02_large.jpg" alt="Postmates"/></a></p>
<div id="visiturl"><a href="http://postmates.com/"><span>Postmates &rarr;</span></a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=rXrGAqP6AJU:lgzKN25LDRE:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=rXrGAqP6AJU:lgzKN25LDRE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=rXrGAqP6AJU:lgzKN25LDRE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=rXrGAqP6AJU:lgzKN25LDRE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=rXrGAqP6AJU:lgzKN25LDRE:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/stylesinspiration/feed/~4/rXrGAqP6AJU" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/17/postmates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overcoming the “User Designer” Disease</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/16/overcoming-the-user-designer-disease/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=overcoming-the-user-designer-disease</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/16/overcoming-the-user-designer-disease/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 21:14:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[Designer”]]></category>
		<category><![CDATA[Disease]]></category>
		<category><![CDATA[Overcoming]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/16/overcoming-the-user-designer-disease/</guid>
		<description><![CDATA[
Look, just because you know Photoshop, Illustrator and Indesign really well, doesn&#8217;t make you a fantastic designer — it makes you a really great Photoshop, Illustrator and Indesign user. I constantly struggle with design, it&#8217;s sort of a never ending three sided war: my imagination vs. design knowledge vs. design tool proficiency. But I came [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/featured.jpg" alt="" title="Overcoming the User Designer Disease" width="580" height="315" class="alignnone size-full wp-image-7801" /></p>
<p>Look, just because you know Photoshop, Illustrator and Indesign really well, doesn&#8217;t make you a fantastic designer — it makes you a really great Photoshop, Illustrator and Indesign user. I constantly struggle with design, it&#8217;s sort of a never ending three sided war: my imagination vs. design knowledge vs. design tool proficiency. But I came to a realization a while back that most of us rely too heavily on the last part — the tools — and forget what actually makes a quality design.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div>
<div style="clear:both;"></div>
<p>How many designers do you know (or maybe even you) that will instantly get into a pissing contest about what Adobe product is best for web design? But, as soon as somebody brings up &#8220;hierarchy&#8221; or &#8220;typography&#8221; those designers tend to duck back into their cubes. Despite our proficiency with the tools of the trade, web designs are not created by these programs.</p>
<p>Really great designers aren&#8217;t users, they are creators. To them, designs are created way before they grab their sharpie or click open Photoshop. For me it&#8217;s the classic rivalry between Kurt Cobain and Joe Satriani — alright, there&#8217;s no rivalry here, but trust me it&#8217;s an awesome analogy. Satriani is arguably one of the most polished and skilled guitar players in the universe. He does amazing things with a piece of maple and redwood; nobody on the planet would ever say he &#8220;sucked&#8221; at the guitar. Where Satriani is a calculated master guitarist, Cobain is a mediocre guitarist at best. So then why was Cobain able to create one of the most unique musical revolutions in the last forty years? Among other things, Cobain was not simply a user of the guitar, but instead he was a creator who used the instrument to express his ideas.</p>
<h3>The Disease</h3>
<p><img class="aligncenter size-full wp-image-7798" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/id.jpg" alt="" width="580" height="315" /></p>
<p>I affectionately call this type of disease the &#8220;user designer disease&#8221;. The disease usually starts early and usually infects newer designers: designers who first graduate college or first start to work in the business. Becoming a user designer starts innocently enough. You learn how powerful these great tools are and you start to build a dependency on them. You start to realize that these applications can do so much that you start to toss away your sketchbooks and notepads. Anytime you have a creative thought you start to pop open your Mac, launch Photoshop and start playing around with the pen tool.</p>
<p>As a recovering user designer I now see the disease all to well. It&#8217;s like buying a new luxury car that can parallel park for you, it&#8217;s sounds great when you use it, but eventually you start to realize who is really in charge. The disease is a designer killer. It&#8217;s a skills killer and most importantly it&#8217;s an imagination killer. Like the chicken pox, the &#8220;user design&#8221; disease is something we all need to get in order to become healthy, happy designers. You&#8217;ll experience many different effects when you have the disease, but there are two main, horrible effects that can and will cripple your growth as a designer: deterioration of versatility and reproduction.</p>
<h3>The Effects</h3>
<p><img class="aligncenter size-full wp-image-7799" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/ps.jpg" alt="" width="580" height="315" /></p>
<p>Being a great designer doesn&#8217;t simply mean learning how to use the tools of creation, it&#8217;s about being able to create despite the tools of creation. Often times our proficiency with design tools becomes a crutch for us: propping us up and helping us get around, but never allowing us to run.</p>
<p>There are some bad effects to allowing yourself to use creative tools as a crutch, aka, become a &#8220;user designer&#8221;. The first major effect is the deterioration of versatility and imagination. When you start to use the tools as creative devices and allow them to take over your creative process you start to limit your expression to what you are only capable of doing in the application.</p>
<p>Real design is not limited to how you can create something in Illustrator; rather, design should only be limited to the delivery of the design and the needs of the user (or client). When you limit your creative expression to the tools&#8217; abilities, you are only as versatile or imaginative as the tool itself.</p>
<p>The second horrible and awful effect of being a user designer is reproduction. Instead of finding clever design solutions to your client&#8217;s or users&#8217; requirements and finding a design solution that is best for all parties involved, it&#8217;s much easier to copy what other popular sites are doing and using nifty Photoshop techniques to accomplish it. That is not design, that is reproduction. Reproduction is a bi-product of buying into popular trends and limiting your process to the tools of the trade. Cookie cutter web designs are simply the designer&#8217;s inability to express themselves and solve design problems.</p>
<h3>The Cure</h3>
<p><img class="aligncenter size-full wp-image-7800" title="ai" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/ai.jpg" alt="" width="580" height="315" /></p>
<p>Don&#8217;t worry, there is a cure for the disease that is becoming the &#8220;user designer&#8221;. Depending on how far the disease has spread you may have a long hard road to recovery. Now, I&#8217;m not the greatest designer and I have some major weaknesses when it comes to design. But in my experience, the best way to throw down the crutches and run is to continually learn, continually grow and continually be aware of your strengths and weaknesses. This takes time, energy and most importantly the ability to be open to new ideas.</p>
<p>Overcoming the itch to rely on design tools and replicate only what is trendy at the time, starts with going back to the basics:</p>
<ul>
<li>understanding design principles/elements</li>
<li>understanding what makes a design good or bad</li>
<li>be willing to drop your own personal bias</li>
<li>step out and experiment; fail when needed</li>
<li>continually study the craft</li>
<li>don&#8217;t copy, find inspiration from others</li>
</ul>
<p>Proficiency of the tools isn&#8217;t a bad thing however, I&#8217;m not saying that you shouldn&#8217;t spend time learning the power behind the applications. But be careful with them, don&#8217;t let them start become your creative process, rather, let them be a part of your creative process. Going back to the Cobain vs. Satriani analogy, you don&#8217;t have to become one or the other. Instead, set your goals higher and work towards both — become Jimi Hendrix instead.</p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/16/overcoming-the-user-designer-disease/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RAPP</title>
		<link>http://grupodesdeabajo.com.ar/blog/2012/02/15/rapp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rapp</link>
		<comments>http://grupodesdeabajo.com.ar/blog/2012/02/15/rapp/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 13:44:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our Blog]]></category>
		<category><![CDATA[RAPP]]></category>

		<guid isPermaLink="false">http://grupodesdeabajo.com.ar/blog/2012/02/15/rapp/</guid>
		<description><![CDATA[
RAPP &#8594;

      


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rappfrance.com/"><img src="http://stylesinspiration.com/wp-content/uploads/2012/02/si_specky_05_large.jpg" alt="RAPP"/></a></p>
<div id="visiturl"><a href="http://www.rappfrance.com/"><span>RAPP &rarr;</span></a></div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=KJgfLIM5IIw:MgJD04o3QJg:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=KJgfLIM5IIw:MgJD04o3QJg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=KJgfLIM5IIw:MgJD04o3QJg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stylesinspiration/feed?a=KJgfLIM5IIw:MgJD04o3QJg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/stylesinspiration/feed?i=KJgfLIM5IIw:MgJD04o3QJg:gIN9vFwOqvQ" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/stylesinspiration/feed/~4/KJgfLIM5IIw" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://grupodesdeabajo.com.ar/blog/2012/02/15/rapp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

