<?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>Codrops</title>
	
	<link>http://tympanus.net/codrops</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Fri, 24 Feb 2012 01:13:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/tympanus" /><feedburner:info uri="tympanus" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>tympanus</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Accordion with CSS3</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/oSxd_myxH2g/</link>
		<comments>http://tympanus.net/codrops/2012/02/21/accordion-with-css3/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 02:27:38 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[accordion]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7819</guid>
		<description><![CDATA[Using hidden inputs and labels, we will create a CSS-only accordion that will animate the content areas on opening and closing. ]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/yOVMUAHbtT_6ts1LRxPHLca1Xbo/0/da"><img src="http://feedads.g.doubleclick.net/~a/yOVMUAHbtT_6ts1LRxPHLca1Xbo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yOVMUAHbtT_6ts1LRxPHLca1Xbo/1/da"><img src="http://feedads.g.doubleclick.net/~a/yOVMUAHbtT_6ts1LRxPHLca1Xbo/1/di" border="0" ismap="true"></img></a></p><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>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/oSxd_myxH2g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/21/accordion-with-css3/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/21/accordion-with-css3/</feedburner:origLink></item>
		<item>
		<title>Establish a Mood with Typography</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/YgQfUddJRIk/</link>
		<comments>http://tympanus.net/codrops/2012/02/19/establish-a-mood-with-typography/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 15:44:08 +0000</pubDate>
		<dc:creator>Carrie Cousins</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7762</guid>
		<description><![CDATA[The typefaces you select for a project can impact what people think as much as the actual message you convey.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/KXm6za8fzf5HUpeHJ5u0Vca2Fiw/0/da"><img src="http://feedads.g.doubleclick.net/~a/KXm6za8fzf5HUpeHJ5u0Vca2Fiw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KXm6za8fzf5HUpeHJ5u0Vca2Fiw/1/da"><img src="http://feedads.g.doubleclick.net/~a/KXm6za8fzf5HUpeHJ5u0Vca2Fiw/1/di" border="0" ismap="true"></img></a></p><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"><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"><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"><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"><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"><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"><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>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/YgQfUddJRIk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/19/establish-a-mood-with-typography/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/19/establish-a-mood-with-typography/</feedburner:origLink></item>
		<item>
		<title>Overcoming the “User Designer” Disease</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/tEBTbUFNbFQ/</link>
		<comments>http://tympanus.net/codrops/2012/02/16/overcoming-the-user-designer-disease/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 10:58:04 +0000</pubDate>
		<dc:creator>Patrick Cox</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7793</guid>
		<description><![CDATA[I constantly struggle with design, it'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.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/kQSey_3XzUjHpx6rmm7pRw9WVYk/0/da"><img src="http://feedads.g.doubleclick.net/~a/kQSey_3XzUjHpx6rmm7pRw9WVYk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/kQSey_3XzUjHpx6rmm7pRw9WVYk/1/da"><img src="http://feedads.g.doubleclick.net/~a/kQSey_3XzUjHpx6rmm7pRw9WVYk/1/di" border="0" ismap="true"></img></a></p><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>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/tEBTbUFNbFQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/16/overcoming-the-user-designer-disease/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/16/overcoming-the-user-designer-disease/</feedburner:origLink></item>
		<item>
		<title>Conceptboard Giveaway</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/0ckNgYO73UI/</link>
		<comments>http://tympanus.net/codrops/2012/02/16/conceptboard-giveaway/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 10:10:48 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Giveaways]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7808</guid>
		<description><![CDATA[Conceptboard is giving away three professional accounts with unlimited coworkers for one year.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/7RSbUOffZilTirN8sgSQKTOOBkU/0/da"><img src="http://feedads.g.doubleclick.net/~a/7RSbUOffZilTirN8sgSQKTOOBkU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7RSbUOffZilTirN8sgSQKTOOBkU/1/da"><img src="http://feedads.g.doubleclick.net/~a/7RSbUOffZilTirN8sgSQKTOOBkU/1/di" border="0" ismap="true"></img></a></p><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>
<p><strong>(This contest is closed.)</strong></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 ended on the 23rd of February 2012 at 4 p.m. GMT+0.</strong></p>
<h3>The Winners</h3>
<p>We are happy to announce the following winners of the giveaway:</p>
<ul>
<li><a href="http://tympanus.net/codrops/2012/02/16/conceptboard-giveaway/comment-page-3/#comment-415919">Mary Makowsky</a></li>
<li><a href="http://tympanus.net/codrops/2012/02/16/conceptboard-giveaway/comment-page-4/#comment-416038">David Benton</a></li>
<li><a href="http://tympanus.net/codrops/2012/02/16/conceptboard-giveaway/comment-page-2/#comment-415903">Mack Richardson</a></li>
</ul>
<p>Congratulations, you will be contacted shortly!</p>
<p>Thank you!</p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/0ckNgYO73UI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/16/conceptboard-giveaway/feed/</wfw:commentRss>
		<slash:comments>92</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/16/conceptboard-giveaway/</feedburner:origLink></item>
		<item>
		<title>Type Effects and Modification</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/q9pJtSdh_10/</link>
		<comments>http://tympanus.net/codrops/2012/02/09/type-effects-and-modification/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 15:27:34 +0000</pubDate>
		<dc:creator>Carrie Cousins</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[type effects]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7691</guid>
		<description><![CDATA[Understanding type modifications can help designers focus on readability for chunks of type or a hint of flair for a more artistic approach.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/iHZtSzcFtqoZMQKFbflNIfUo6b4/0/da"><img src="http://feedads.g.doubleclick.net/~a/iHZtSzcFtqoZMQKFbflNIfUo6b4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/iHZtSzcFtqoZMQKFbflNIfUo6b4/1/da"><img src="http://feedads.g.doubleclick.net/~a/iHZtSzcFtqoZMQKFbflNIfUo6b4/1/di" border="0" ismap="true"></img></a></p><p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/FeaturedType4.jpg" alt="" title="Type Effects and Modification" width="580" height="315" class="alignnone size-full wp-image-7752" /></p>
<p>Setting type effectively in any project requires a little more thought than just selecting a font and point size. The way the letters relate to each other can be just as important of a consideration.</p>
<p>Type can be manipulated to be shorter or wider, have large gaps or lack thereof between letters, and have lines with varying depths of space between them. Each of these attributes affect the readability of a project and whether certain modifications work for your project or not can hinge on the message you are trying to convey.</p>
<p>Take time to play with various type options before settling on a final selection with each type driven project.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<h3>TRACKING AND KERNING</h3>
<p><img class="alignnone size-full wp-image-7698" title="Tracking" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/Tracking.jpg" alt="" width="580" height="276" /></p>
<p>Tracking and kerning refer to the horizontal spacing between letters. Although many people choose to use these terms interchangeably, they are different.</p>
<p>When making changes in tracking the horizontal space between each letter increases or decreases for all letters in a block of text. Tracking can be used to slightly tighten a paragraph to remove widows or orphans in text or add very loose spacing to create a more artistic effect. Tracking is measure in plus and minus units. Plus units add spacing while minus units tighten letter spacing.</p>
<p>Kerning is the reduction of space between a pair of letters. Some letter pairs such as AV, will have awkward gaps between the letters when using certain typefaces. A kerning adjustment will close the gap so the spacing looks more like the other letters in the sequence.</p>
<p>Changing the tracking and kerning directly affects the readability of type. For large blocks of type sharp tracking and kerning changes should be avoided. These techniques work best in large blocks of text when letter spacing is altered slightly. In projects where type is used as more of an art element, loose or tight tracking techniques can be effective.</p>
<p><a href="http://joshhemsley.com/"><img class="alignnone size-full wp-image-7731" title="Josh Hemsley" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/social.jpg" alt="" width="580" height="359" /></a></p>
<p><a href="http://www.kitchensinkstudios.com/"><img class="alignnone size-full wp-image-7732" title="Kitchen Sink Studios" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/sink.jpg" alt="" width="580" height="438" /></a></p>
<p>Web designer Josh Hemsley and Kitchen Sink Studios each use tracking techniques to achieve optimal line spacing on their pages. Hemsely uses tighter letter spacing for &#8220;TWITTER&#8221; but lets the letters breathe more with &#8220;DRIBBLE.&#8221; Alternating letter spacing adds visual interest when used with just a few words. Kitchen Sink Studios uses the same technique, alternating between tight and loose tracking to add emphasis and draw the eye to certain parts of the page.</p>
<h3>LEADING</h3>
<p><img class="alignnone size-full wp-image-7699" title="Leading" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/Leading.jpg" alt="" width="580" height="436" /></p>
<p>Leading is the vertical space between lines of type and refers to the distance from one baseline to the next. Leading is measure in points, just like a font, and the distance between baselines directly corresponds to the font being used.</p>
<p>Tight leading refers to any measure where the space between lines is at least two points below the size of the font being used. Normal leading is equal to or within a point size of the font and loose leading is anything greater than that.</p>
<p>Leading also affects readability. Normal leading or somewhat looser leading is used in most applications where large chunks of text must be read. Using slightly looser leading with small text can make it easier to read, such as in book publishing. Leading that is extremely loos or tight can be hard to read and works best when used with only a few words.</p>
<p><a href="http://leaderbe.com/"><img class="alignnone size-full wp-image-7729" title="Leaderbe Consulting" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/leaderbe.jpg" alt="" width="580" height="289" /></a></p>
<p><a href="http://http://www.whathappensnextbook.com/"><img class="alignnone size-full wp-image-7730" title="What Happens Next" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/next.jpg" alt="" width="580" height="424" /></a></p>
<p>Look at the use of tight leading from LeaderBe Consulting. The letters overlap to create an art element while ensuring that text remains readable.The website for the book &#8220;What Happens Next?&#8221; uses the opposite approach. Using loose leading for the copy makes a large block of text easy to read and less intimidating.</p>
<h3>SET WIDTH</h3>
<p><img class="alignnone size-full wp-image-7700" title="SetWidth" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/SetWidth.jpg" alt="" width="580" height="238" /></p>
<p>Set width is the measure of a letter and the space next to it and changing the set width results in the stretching or squeezing of typefaces. Many type purists disapprove of changing the set width of any font.</p>
<p>Set widths are measured in percentages. A normal set width of 100 percent is how the font was produced and intended for use by the designer. Set widths of less than 100 percent make a font narrower and more condensed. Set widths of more than 100 percent expand and make a font wider.</p>
<h3>SUBSCRIPTS AND SUPERSCRIPTS</h3>
<p><img class="alignnone size-full wp-image-7701" title="Scripts" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/Scripts.jpg" alt="" width="580" height="227" /></p>
<p>Subscripts and superscripts are most commonly used in for fractions and in scientific writing applications. Subscripts drop a letter below the baseline, while super scripts appear above it. Characters are 65 percent to 75 percent of actual size and have a slightly increased stroke. Most publishing software will also allow for the vertical movement of subscripts and superscripts.</p>
<h3>EXTRA EFFECTS</h3>
<p><img class="alignnone size-full wp-image-7702" title="DropCap" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/DropCap.jpg" alt="" width="580" height="372" /></p>
<p>Some designers also use a variety of other tools to manipulate type, such as word spacing, drop caps and even shadows and embossing.</p>
<p>Word spacing and drop cap techniques can add emphasis to certain parts of a type project and are common type modifications. Word spacing changes can affect readability and tight spacing should be avoided when large blocks of text are used because words can seem to run together. Drop caps are a great tool for adding emphasis and navigation through heavy text.</p>
<p>Shadows and embossing effects added to text are sometimes controversial. Typographers and designers do not always see eye-to-eye on adding effects to type, with the font design camp arguing that each font should stand alone. Designers see these effects as another tool in their repertoire. Regardless of your philosophy, shadows and embossing are most effective when using type as an artistic element and can be difficult to use effectively in applications with many words.</p>
<p><a href="http://www.appvita.com/"><img class="alignnone size-full wp-image-7733" title="Aappvita" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/appvita.jpg" alt="" width="580" height="414" /></a></p>
<p>Appvita uses shadow effects on text to create its logo and use it as an art element. The site also uses shadows on small blocks of text for emphasis such as &#8220;New &amp; Improved!&#8221; The shadows are most effective because they are used sparingly; too many shadows can make text difficult to read.</p>
<p><em>Featured Image Credit:</em><br />
<em>Abstract Vector Image By <a href="http://www.flickr.com/photos/vectorportal/5047055217/in/photostream/">Vectorportal.com</a></em></p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/q9pJtSdh_10" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/09/type-effects-and-modification/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/09/type-effects-and-modification/</feedburner:origLink></item>
		<item>
		<title>3D Gallery with CSS3 and jQuery</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/kgSbmLNJpo0/</link>
		<comments>http://tympanus.net/codrops/2012/02/06/3d-gallery-with-css3-and-jquery/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 07:30:10 +0000</pubDate>
		<dc:creator>Pedro Botelho</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7643</guid>
		<description><![CDATA[Today, we want to share an experimental 3D gallery with you that uses CSS 3D transforms.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/F3PboVbGZ6LxteATQ2FC809J4hY/0/da"><img src="http://feedads.g.doubleclick.net/~a/F3PboVbGZ6LxteATQ2FC809J4hY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/F3PboVbGZ6LxteATQ2FC809J4hY/1/da"><img src="http://feedads.g.doubleclick.net/~a/F3PboVbGZ6LxteATQ2FC809J4hY/1/di" border="0" ismap="true"></img></a></p><p><a href="http://tympanus.net/Development/3DGallery/"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/01/3DGallery.jpg" alt="3DGallery" title="" width="580" height="315" class="alignnone size-full wp-image-7646" /></a></p>
<p><a class="demo" href="http://tympanus.net/Development/3DGallery/">View demo</a> <a class="download" href="http://tympanus.net/Development/3DGallery/3DGallery.zip">Download source</a></p>
<p>With 3D transforms, we can make simple elements more interesting by setting them into three dimensional space. Together with CSS transitions, these elements can be moved in 3D space and create a realistic effect. Today, we want to share an experimental 3D gallery with you that uses CSS 3D transforms.</p>
<p>The main idea is to create a circular gallery where we have an image in the center and two on the sides. Since we are using perspective, the two lateral images will appear three dimensional when we rotate them.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<p><strong>Please note that this will only work in browsers that support CSS 3D transforms.</strong></p>
<h3>How it works</h3>
<p>The following HTML structure is used for the gallery:</p>
<pre class="brush:xml">
&lt;section id="dg-container" class="dg-container"&gt;
	&lt;div class="dg-wrapper"&gt;
		&lt;a href="#"&gt;
			&lt;img src="images/1.jpg" alt="image01"&gt;
			&lt;div&gt;http://www.colazionedamichy.it/&lt;/div&gt;
		&lt;/a&gt;
		&lt;a href="#"&gt;
			&lt;!-- ... --&gt;
		&lt;/a&gt;
		&lt;!-- ... --&gt;
	&lt;/div&gt;
	&lt;nav&gt;
		&lt;span class="dg-prev"&gt;&lt;&lt;/span&gt;
		&lt;span class="dg-next"&gt;&gt;&lt;/span&gt;
	&lt;/nav&gt;
&lt;/section&gt;
</pre>
<p>And this is how the gallery is initialized:</p>
<pre class="brush:js">
$('#dg-container').gallery();
</pre>
<h3>Options</h3>
<p>The following options are available:</p>
<pre class="brush:js">
current		: 0,
// index of current item

autoplay	: false,
// slideshow on / off

interval	: 2000
// time between transitions
</pre>
<p>I hope you enjoy it!</p>
<p><a class="demo" href="http://tympanus.net/Development/3DGallery/">View demo</a> <a class="download" href="http://tympanus.net/Development/3DGallery/3DGallery.zip">Download source</a></p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/kgSbmLNJpo0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/06/3d-gallery-with-css3-and-jquery/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/06/3d-gallery-with-css3-and-jquery/</feedburner:origLink></item>
		<item>
		<title>Keys to Email Creative Success: Marketing and Design</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/e5xG774ZhXs/</link>
		<comments>http://tympanus.net/codrops/2012/02/04/keys-to-email-creative-success-marketing-and-design/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 12:27:04 +0000</pubDate>
		<dc:creator>Patrick Cox</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7662</guid>
		<description><![CDATA[Let's talk about some ways to design and build better email creatives and campaigns.
]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/v0WtBGLclrUvEG9jiMyCf0Z1Ozs/0/da"><img src="http://feedads.g.doubleclick.net/~a/v0WtBGLclrUvEG9jiMyCf0Z1Ozs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/v0WtBGLclrUvEG9jiMyCf0Z1Ozs/1/da"><img src="http://feedads.g.doubleclick.net/~a/v0WtBGLclrUvEG9jiMyCf0Z1Ozs/1/di" border="0" ismap="true"></img></a></p><p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/featuredEmail.jpg" alt="featuredEmail" title="" width="580" height="315" class="alignnone size-full wp-image-7665" /><br />
Only a few years ago people were getting rich <strong>spamming</strong> and <strong>scamming</strong> our Grandma&#8217;s and Grandpa&#8217;s AOL email boxes. Today, people are smarter and now understand that the Nigerian Prince really doesn&#8217;t want to give them ten million dollars and only if you claim it in the next ten minutes. But email creatives are still a very important part of legit online marketing campaigns of high quality products and services.</p>
<p>Email ads and newsletters are still big converters mainly because you can directly reach your <strong>target audience</strong> and keep them informed of new products and services you are offering. However, even though people are smarter, the methods of building and rendering email creatives are not. Tables layouts, catchy subject lines and clear call to actions are still the email creative standards so let&#8217;s talk about some ways to design and build better email creatives and campaigns.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<p><em>I&#8217;ve sprinkled great email creative examples throughout the article that demonstrate these principles and hopefully offer some inspiration for your next email design project.</em></p>
<h3>Marketing Campaign Basics</h3>
<p><a href="http://whiskeymillitia.com"><img class="aligncenter size-full wp-image-7667" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/whiskeyMilitia.jpg" alt="whiskeyMilitia" width="500" height="500" /></a></p>
<p>There is a lot of trial and error when it comes to developing a successful email marketing campaign, but there are a few elements that have been proven to work time and time again. Despite whether you are sending out a monthly newsletter to your users or sending out a creative to promote your new product release, these elements will all contribute to a successful campaign.</p>
<ul>
<li>Attention-grabbing subject line</li>
<li>Relevant, useful content</li>
<li>Beautiful imagery</li>
<li>Consistent branding</li>
<li>Strong call to action</li>
<li>Social icons and/or feeds</li>
</ul>
<p>The first rule to good email marketing is a strong, attention-grabbing subject line. Email marketing is a two step process: click to open the email and click to your site. If the subject line isn&#8217;t compelling or interesting enough, no one will even get past the first click. You know your customers/users best, so make sure your subject line grabs their attention and gets them past the first click.</p>
<p>After the customer/user clicks to open the email because of your awesome, ridiculously interesting subject line — it&#8217;s now your job to get them to that all important second click. The first thing to get them there is content, relevant and useful content. Whether it&#8217;s a newsletter or ad, the content needs to be <strong>relevant</strong> to them, it needs to be useful and it also needs to be <strong>informative</strong> enough (but not too much) so that your users will trust your expertise and want to learn more.</p>
<p><a href="http://struckaxiom.com/"><img class="aligncenter size-full wp-image-7668" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/struckAxiom.jpg" alt="struckAxiom" width="500" height="554" /></a></p>
<p>Along with relevant content, images are an excellent way to communicate your message and an easy way for your customers to engage with the email quickly. It&#8217;s a myth that images in emails are worthless because &#8220;<em>most</em>&#8221; people have images turned off or that &#8220;<em>most</em>&#8221; email boxes don&#8217;t render images properly. We&#8217;ll discuss this more below in the design section, but &#8220;<em>most</em>&#8221; people I know don&#8217;t even know you can turn images off in the first place. Don&#8217;t be afraid to use images, cool fonts or anything that will catch the user&#8217;s/costumer&#8217;s eye.</p>
<p>Branding is the best way to tie your site, service or product into your email creative so make sure your name is all over the thing. Consider the email creative as a mini website. Brand the header with your logo and/or name, brand the footer with your logo and/or name and use your color scheme throughout the email to stay consistent.</p>
<p>Without a clear call to action the email creative is worthless, despite your attention grabbing subject line, informative content, its beautiful imagery and clear branding. Use contrasting buttons to guide the user to the next step. Take advantage of <strong>visual hierarchy</strong> methods to guide the user to where you want them to go. Any design methods you use to entice the user will be worthless if they don&#8217;t know what the next step is or where they need to go.</p>
<p><a href="http://inkd.com/"><img class="aligncenter size-full wp-image-7669" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/inkd.jpg" alt="inkd" width="500" height="586" /></a></p>
<p>Another thing to consider is building trust with your new customer/user. People don&#8217;t buy into scammy pitches and cheesy testimonials anymore. The best way to build trust is to show them that other people use your product or service — hopefully their friends. Add your social icons or even feeds to your email creatives so that they can see you&#8217;re not just some sneaky snake oil salesman. <strong>Social feeds</strong> and social proofs show to your future customer/user that you care about your product or service. Give them a chance to see what others are saying about you.</p>
<h3>Email Design Best Practices</h3>
<p>Designing and building an email creative can be a beast — and you thought it was hard to build a website browser compliant. Try email boxes that don&#8217;t even render CSS. The first rule of email creative design is just to make things <strong>simple</strong> and the second rule is to keep things <strong>simple</strong>. But we all know creating simplicity is the hardest thing to do.</p>
<h4>HTML Only</h4>
<p><a href="http://www.behance.com/"><img class="aligncenter size-full wp-image-7670" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/behance.jpg" alt="behance" width="500" height="593" /></a></p>
<p>So, forget everything you know about modern web design layout and stay away from using any CSS if possible. If you do use CSS it should be inline. I know, it goes against everything you stand for as a web designer. But with so many email rendering agents out there, it&#8217;s impossible to know whether any of your floats or display properties will render correctly. Don&#8217;t guess, just fall back to your old table layout, <strong>HTML only</strong> design layouts — even if it breaks your heart.</p>
<h4>Grids/Columns</h4>
<p>Since CSS layouts aren&#8217;t cool anymore and table layouts are back in now, stick to grids and columns so that your creative will be presented in the way you designed it — no matter what email box your user is using. Plus, grids are all the rage in web design these days so average users won&#8217;t know that you&#8217;re using tables to lay it out.</p>
<p>Besides making it easier for you to render your email creatives, grids also offer a better way to present your content and layout your information and images in a clean and methodical way. <strong>Columns and grids</strong> separate and present content in an easy to read and easy to scan way, so that your user doesn&#8217;t have to work hard to pull your message out.</p>
<h4>Don&#8217;t Skimp on the Images</h4>
<p><a href="http://www.thisisnation.com/"><img class="aligncenter size-full wp-image-7671" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/nationToys.jpg" alt="nationToys" width="500" height="480" /></a></p>
<p>Like we talked about above, images are awesome elements for email creatives, so don&#8217;t be afraid to use them. As long as your images are hosted on a good public URL and are embedded via the HTML img tag, you&#8217;re safe, so go ahead and use them. Keep in mind, email creatives are kind of an older beast so there&#8217;s really no need to have live text unless where necessary. It&#8217;s totally cool to use embedded text in images so take <strong>advantage</strong> of this and be as creative as you want.</p>
<p>Because CSS can be hard to work with in emails and because tables are also hard to work with, try to avoid background images. Usually, you&#8217;re safe to use a body background or table background, but beyond that try to use inline images so you don&#8217;t run into more bugs.</p>
<p>Don&#8217;t forget to <strong>optimize</strong> your images also. Despite the fact that your images are most likely gonna be hosted on your public server somewhere, don&#8217;t make the images so large that they take a second to load. Once your user opens that email make sure they see those beautiful images and not just the dreaded &#8220;x&#8221; mark where the image should be. Stick with JPGs and GIFs instead of PNGs — some viewers still don&#8217;t like PNGs… I know, pretty lame.</p>
<h4>600px</h4>
<p><a href="http://www.bigspaceship.com/"><img class="aligncenter size-full wp-image-7672" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/bigSpaceShip.jpg" alt="bigSpaceShip" width="500" height="589" /></a></p>
<p>That is the max width your email should be. Don&#8217;t go any wider than that. Unlike the flu browser, most email clients don&#8217;t have the luxury of wide screens. Typically, most clients use up to about 600-700px of their real estate to the email viewing window so avoid going too wide. Also, consider designing your table layout to be flexible (if you can) so that when someone shrinks their email client they will still be able to view your entire email.</p>
<h4>Quicker the Better</h4>
<p><a href="http://www.arrowsandicons.com/"><img class="aligncenter size-full wp-image-7673" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/arrowsAndIconsMag.jpg" alt="arrowsAndIconsMag" width="500" height="588" /></a></p>
<p>Beyond optimizing you images and content so that your email creative loads quickly, design you email to be scanned quickly by the reader. Take advantage of visual hierarchy to guide the user through your email, use bullet points and headers, use infographic style imagery or other visual cues to present you message and always design a clear call to action.</p>
<p>Basically, you want your user to <strong>scan down your email</strong> in a few seconds and still understand the overall message you&#8217;re presenting. If you can grab their attention in those few seconds, they may stick around to read the email in further detail and hopefully click through.</p>
<h4>Test, Test, Test</h4>
<p><a href="http://nike.com"><img class="aligncenter size-full wp-image-7674" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/nike.jpg" alt="nike" width="500" height="480" /></a></p>
<p>The last thing you want to do with your email creative is to test it to death. Load it up and hit it in as many email clients as humanly possible. Although it may not be possible to test it in every inbox, the more the better. Even if you think you have everything covered and you&#8217;re confident that everything will work beautifully, you&#8217;re guaranteed to find a bug or two in a few clients. If you just don&#8217;t have time to test a bunch of inboxes, make sure you hit the major web clients like Gmail, Yahoo and Hotmail — then make sure you hit the major desktop clients, Outlook and Apple Mail.</p>
<h3>Consider Mobile</h3>
<p>Okay, I didn&#8217;t forget about mobile email boxes — well, I sort of did. Mobile inboxes are just an entire beast all by themselves so they may actually require a whole new article to tackle them. But just consider how your email will be presented on a mobile phone. Make sure you are using proper alt and title tags for your images if you embedded important text into them. Like I said, mobile email creative best practices probably deserve an entire article to themselves so stayed tuned for that.</p>
<p><a href="http://www.hermanmiller.com"><img class="aligncenter size-full wp-image-7675" title="" src="http://tympanus.net/codrops/wp-content/uploads/2012/02/hermanMiller.jpg" alt="hermanMiller" width="500" height="733" /></a></p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/e5xG774ZhXs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/04/keys-to-email-creative-success-marketing-and-design/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/04/keys-to-email-creative-success-marketing-and-design/</feedburner:origLink></item>
		<item>
		<title>Original WordPress Themes Giveaway by ThemeFuse</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/HuKWSQB84kA/</link>
		<comments>http://tympanus.net/codrops/2012/02/01/original-wordpress-themes-giveaway-by-themefuse/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 14:01:36 +0000</pubDate>
		<dc:creator>Pedro Botelho</dc:creator>
				<category><![CDATA[Giveaways]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7655</guid>
		<description><![CDATA[Win one of 3 WordPress theme licenses from ThemeFuse]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/6cwAmrSW10B6i9pIhIePRM1Tosg/0/da"><img src="http://feedads.g.doubleclick.net/~a/6cwAmrSW10B6i9pIhIePRM1Tosg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6cwAmrSW10B6i9pIhIePRM1Tosg/1/da"><img src="http://feedads.g.doubleclick.net/~a/6cwAmrSW10B6i9pIhIePRM1Tosg/1/di" border="0" ismap="true"></img></a></p><p><img src="http://tympanus.net/codrops/wp-content/uploads/2012/02/themefuse_giveaway.jpg" alt="themefuse" title="ThemeFuse Giveaway" width="580" height="315" class="alignnone size-full wp-image-7656" /></p>
<p>Our friends over at <a href="http://themefuse.com">ThemeFuse</a> wanted to share 3 WordPress theme licenses with our readers, so if you are using WordPress that’s awesome because the winners of today’s giveaway will be given access to download an <a href="http://themefuse.com/wp-themes-shop/">original WordPress theme</a> of their choice from Themefuse free of charge. </p>
<p><strong>(This contest is closed.)</strong></p>
<p>Following are some examples of themes designed and developed by ThemeFuse. You can visit their site for a complete list. </p>
<h3>VideoGrid</h3>
<p>Showcase your lifetime work or blog like you never blogged before with this insanely great multimedia WordPress theme.</p>
<p><a href="http://themefuse.com/wp-themes-shop/videogrid/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/videogrid.jpg" alt="" /></a></p>
<h3>Sportedge</h3>
<p>The versatile SportEdge Magazine is the best Sport WordPress theme we could have come up with, that&#8217;s a given! See for yourself.</p>
<p><a href="http://themefuse.com/wp-themes-shop/sportedge/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/sportedge.jpg" alt="" /></a></p>
<h3>Medica</h3>
<p>Probably the best WordPress theme when it comes to Doctor&#8217;s websites, Health Clinics, Dentist&#8217;s Offices or anything medical related.</p>
<p><a href="http://themefuse.com/wp-themes-shop/medica/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/medica.jpg" alt="" /></a></p>
<h3>Writer</h3>
<p>Writer has all it takes to be a really great option for bloggers that want a stylish and premium look for their personal WordPress blog.</p>
<p><a href="http://themefuse.com/wp-themes-shop/writer/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/writer.jpg" alt="" /></a></p>
<h3>Brand Crafters</h3>
<p>The ultimate corporate WordPress theme that will guarantee to make your business website stand out from the crowd.</p>
<p><a href="http://themefuse.com/wp-themes-shop/brand-crafters/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/brandcrafters.jpg" alt="" /></a></p>
<h3>MobilityApp</h3>
<p>A theme best suited for smartphone developers that need to promote their iPad, iPhone or Android mobile applications.</p>
<p><a href="http://themefuse.com/wp-themes-shop/mobilityapp/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/mobilityapp.jpg" alt="" /></a></p>
<h3>Qlassik</h3>
<p>Be it your corporate business website or your personal web design portfolio, Qlassik will definitely deliver in both situations and more.</p>
<p><a href="http://themefuse.com/wp-themes-shop/qlassik/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/qlassik.jpg" alt="" /></a></p>
<h3>Lifestyle</h3>
<p>An online magazine oriented WP 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/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/lifestyle.jpg" alt="" /></a></p>
<h3>Welcome Inn</h3>
<p>If you need a hotel oriented wp theme, you have to try our latest project. It comes in 2 additional flavors: ski resort and spa. Enjoy!</p>
<p><a href="http://themefuse.com/wp-themes-shop/welcome-inn/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/welcomeinn.jpg" alt="" /></a></p>
<h3>Freshfolio</h3>
<p>An original, awesome and efficient way for showcasing photography, design, illustration portfolios&#8217; or even paintings and art.</p>
<p><a href="http://themefuse.com/wp-themes-shop/freshfolio/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/freshfolio.jpg" alt="" /></a></p>
<h3>Envision</h3>
<p>Try our most complex wp theme to date. It has shortcodes, 5 different sliders and a bunch of awesome features. You name it, we&#8217;ve got it!</p>
<p><a href="http://themefuse.com/wp-themes-shop/envison/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/envision.jpg" alt="" /></a></p>
<h3>WebStudio</h3>
<p>This theme can be used to showcase photography, illustration, design, paintings or art, in a simple, awesome and efficient way.</p>
<p><a href="http://themefuse.com/wp-themes-shop/web-studio/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/webstudio.jpg" alt="" /></a></p>
<h3>Exquisite Works</h3>
<p>WP theme designed for someone who needs a classy and stylish presence on the web for their corporate website.</p>
<p><a href="http://themefuse.com/wp-themes-shop/exquisite-works/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/exquisiteworks.jpg" alt="" /></a></p>
<h3>Clean Classy Corporate</h3>
<p>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/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/c3.jpg" alt="" /></a></p>
<h3>Art Gallery</h3>
<p>Showcase your art, photography, design work or even print. If you think of your work as art, this is the wp theme for you.</p>
<p><a href="http://themefuse.com/wp-themes-shop/art-gallery/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/artgallery.jpg" alt="" /></a></p>
<h3>Creative Juice</h3>
<p>We&#8217;ve crafted this wp 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/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/creativejuice.jpg" alt="" /></a></p>
<h3>SiliconApp</h3>
<p>We&#8217;ve built this wp theme with a software application wordpress template in mind, be it a mobile or a standard desktop product.</p>
<p><a href="http://themefuse.com/wp-themes-shop/siliconapp/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/siliconapp.jpg" alt="" /></a></p>
<h3>Bon Apetit</h3>
<p>This wp 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/" target="_blank"><img src="http://themefuse.com/ThemeFuse/themes_sceens_%28665_x_350%29/bonapetit.jpg" alt="" /></a></p>
<p>All you have to do is to comment below and mention why you&#8217;d like to win a theme. </p>
<p>Good luck to everyone!</p>
<p><strong>This giveaway ended on the 9th of February 2012 at 6 p.m. GMT+0.</strong></p>
<h3>The Winners</h3>
<p>We are happy to announce the following winners of the giveaway:</p>
<ul>
<li><a href="http://tympanus.net/codrops/2012/02/01/original-wordpress-themes-giveaway-by-themefuse/comment-page-1/#comment-415152">Aubrey C.</a></li>
<li><a href="http://tympanus.net/codrops/2012/02/01/original-wordpress-themes-giveaway-by-themefuse/comment-page-8/#comment-415352">Maurice Griffin</a></li>
<li><a href="http://tympanus.net/codrops/2012/02/01/original-wordpress-themes-giveaway-by-themefuse/comment-page-6/#comment-415265">Martin</a></li>
</ul>
<p>Congratulations, you will be contacted shortly!</p>
<p>Thank you!</p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/HuKWSQB84kA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/01/original-wordpress-themes-giveaway-by-themefuse/feed/</wfw:commentRss>
		<slash:comments>221</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/01/original-wordpress-themes-giveaway-by-themefuse/</feedburner:origLink></item>
		<item>
		<title>How to create animated tooltips with CSS3</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/bMoYBPvyOys/</link>
		<comments>http://tympanus.net/codrops/2012/02/01/how-to-create-animated-tooltips-with-css3/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 08:40:04 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[pseudo-elements]]></category>
		<category><![CDATA[tooltips]]></category>
		<category><![CDATA[transition]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7624</guid>
		<description><![CDATA[How to create some simple, animated tooltips using CSS transitions and the pseudo-classes :before and :after]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/9yrPB7_--xWlnnBNzmzbhc7gTCw/0/da"><img src="http://feedads.g.doubleclick.net/~a/9yrPB7_--xWlnnBNzmzbhc7gTCw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9yrPB7_--xWlnnBNzmzbhc7gTCw/1/da"><img src="http://feedads.g.doubleclick.net/~a/9yrPB7_--xWlnnBNzmzbhc7gTCw/1/di" border="0" ismap="true"></img></a></p><p><a href="http://tympanus.net/TipsTricks/CSS3Tooltips/"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/01/CSS3Tooltips.jpg" alt="CSS3Tooltips" title="" width="580" height="315" class="alignnone size-full wp-image-7636" /></a></p>
<p><a class="demo" href="http://tympanus.net/TipsTricks/CSS3Tooltips/" >View demo</a> <a class="download" href="http://tympanus.net/TipsTricks/CSS3Tooltips/CSS3Tooltips.zip">Download source</a></p>
<p>In today&#8217;s tip we&#8217;ll show you how to create some simple, animated tooltips using CSS transitions and the pseudo-classes :before and :after.</p>
<p>The idea is to have a list with links or in our case, social icons, that reveal a little tooltip on hover. </p>
<p>The unordered list will look like this:</p>
<pre class="brush:xml">
&lt;ul class="tt-wrapper"&gt;
	&lt;li&gt;&lt;a class="tt-gplus" href="#"&gt;&lt;span&gt;Google Plus&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class="tt-twitter" href="#"&gt;&lt;span&gt;Twitter&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class="tt-dribbble" href="#"&gt;&lt;span&gt;Dribbble&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class="tt-facebook" href="#"&gt;&lt;span&gt;Facebook&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class="tt-linkedin" href="#"&gt;&lt;span&gt;LinkedIn&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a class="tt-forrst" href="#"&gt;&lt;span&gt;Forrst&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>The list elements will be floating left and the anchors will have the following style:</p>
<pre class="brush:css">
.tt-wrapper li a{
	display: block;
	width: 68px;
	height: 70px;
	margin: 0 2px;
	outline: none;
	background: transparent url(../images/icons.png) no-repeat top left;
	position: relative;
}
</pre>
<p>Each anchor will have a different background position for the background image:</p>
<pre class="brush:css">
.tt-wrapper li .tt-gplus{
    background-position: 0px 0px;
}
.tt-wrapper li .tt-twitter{
    background-position: -68px 0px;
}
.tt-wrapper li .tt-dribbble{
    background-position: -136px 0px;
}
.tt-wrapper li .tt-facebook{
    background-position: -204px 0px;
}
.tt-wrapper li .tt-linkedin{
    background-position: -272px 0px;
}
.tt-wrapper li .tt-forrst{
    background-position: -340px 0px;
}
</pre>
<p>The span will work as our tooltip and we will &#8220;hide&#8221; it by setting its initial opacity to 0. The effect I want to share with you is the tooltip fading in and appearing from the top, so we will give it a bottom of 100px, placing it above the anchor:</p>
<pre class="brush:css">
.tt-wrapper li a span{
	width: 100px;
	height: auto;
	line-height: 20px;
	padding: 10px;
	left: 50%;
	margin-left: -64px;
	font-family: 'Alegreya SC', Georgia, serif;
	font-weight: 400;
	font-style: italic;
	font-size: 14px;
	color: #719DAB;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	text-align: center;
	border: 4px solid #fff;
	background: rgba(255,255,255,0.3);
	text-indent: 0px;
	border-radius: 5px;
	position: absolute;
    pointer-events: none;
	bottom: 100px;
	opacity: 0;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
	transition: all 0.3s ease-in-out;
}
</pre>
<p>Since we will make the tooltip appear on hover over the anchor (and the span counts as part of the anchor) the tooltip will also appear when hovering over the area <em>above</em> the anchor (the span is still there, it&#8217;s just the 0 opacity that makes it invisible).</p>
<p>For the little pointer, we will style the pseudo-elements :before and :after. We will style them the same way and create a triangle by using transparent left and right borders. The :before pseudo-element will serve as a shadow for the :after pseudo-element, so we&#8217;ll give it a black rgba value with a low opacity:</p>
<pre class="brush:css">
.tt-wrapper li a span:before,
.tt-wrapper li a span:after{
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	margin-left: -9px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid rgba(0,0,0,0.1);
}
</pre>
<p>The :after pseudo-element will be placed a pixel away and we&#8217;ll make it white, just like the border of the tooltip itself:</p>
<pre class="brush:css">
.tt-wrapper li a span:after{
	bottom: -14px;
	margin-left: -10px;
	border-top: 10px solid #fff;
}
</pre>
<p>So, on hover, we will make the span move from the top and fade in:</p>
<pre class="brush:css">
.tt-wrapper li a:hover span{
	opacity: 0.9;
	bottom: 70px;
}
</pre>
<p>And voilà! Very simple animated tooltips! In the <a href="http://tympanus.net/TipsTricks/CSS3Tooltips/index2.html">second demo</a>, you can see an alternative style for the tooltip (a funny circle) which scales up from the anchor and in the <a href="http://tympanus.net/TipsTricks/CSS3Tooltips/index3.html">third demo</a> the tooltips are rotated. The <a href="http://tympanus.net/TipsTricks/CSS3Tooltips/index3.html">forth demo</a> shows another neat effect.</p>
<p>The beautiful social icons in the demo are by <a href="http://www.growcase.com/2011/11/friday-freebie-the-social-gunman-icons-concept/">Emir Ayouni (growcase.com)</a>.</p>
<p>I hope you enjoyed this little effect and find it useful!</p>
<p><em>Needless to say, this will only work in browsers that support pseudo-elements and CSS transitions.</em></p>
<p><a class="demo" href="http://tympanus.net/TipsTricks/CSS3Tooltips/" >View demo</a> <a class="download" href="http://tympanus.net/TipsTricks/CSS3Tooltips/CSS3Tooltips.zip">Download source</a></p>
<p><em>Image Credits:</em><br />
<em>Abstract Vector Image By <a href="http://www.flickr.com/photos/vectorportal/3260705773/sizes/o/in/photostream/">Vectorportal.com</a></em></p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/bMoYBPvyOys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/02/01/how-to-create-animated-tooltips-with-css3/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/02/01/how-to-create-animated-tooltips-with-css3/</feedburner:origLink></item>
		<item>
		<title>Page Transitions with CSS3</title>
		<link>http://feedproxy.google.com/~r/tympanus/~3/XWhhwvwIJUU/</link>
		<comments>http://tympanus.net/codrops/2012/01/30/page-transitions-with-css3/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 08:47:47 +0000</pubDate>
		<dc:creator>Sergio Camalich</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[general sibling selector]]></category>
		<category><![CDATA[pseudo-element]]></category>
		<category><![CDATA[transition]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=7560</guid>
		<description><![CDATA[In the last few years, we've seen a lot of single page websites lying around the internet, most of them using JavaScript for some transitions effect. Well, now I'm gonna teach you how you can have your own, but instead I'll be using CSS Transitions and the :target property to do all the magic.]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/6pRnDPX6XReF-LW3u0-PEw6VDZA/0/da"><img src="http://feedads.g.doubleclick.net/~a/6pRnDPX6XReF-LW3u0-PEw6VDZA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6pRnDPX6XReF-LW3u0-PEw6VDZA/1/da"><img src="http://feedads.g.doubleclick.net/~a/6pRnDPX6XReF-LW3u0-PEw6VDZA/1/di" border="0" ismap="true"></img></a></p><p><a href="http://tympanus.net/Tutorials/CSS3PageTransitions/index.html#home"><img src="http://tympanus.net/codrops/wp-content/uploads/2012/01/CSS3PageTransitions.jpg" alt="CSS3PageTransitions" title="" width="580" height="315" class="alignnone size-full wp-image-7610" /></a></p>
<p><a class="demo" href="http://tympanus.net/Tutorials/CSS3PageTransitions/index.html#home">View demo</a> <a class="download" href="http://tympanus.net/Tutorials/CSS3PageTransitions/CSS3PageTransitions.zip">Download source</a></p>
<p>In the last few years, we&#8217;ve seen a lot of single page websites lying around the internet, most of them using JavaScript for some transitions effect. Well, now I&#8217;m gonna teach you how you can have your own, but instead I&#8217;ll be using CSS Transitions and the :target property to do all the magic.</p>
<p>The Dribbble shots used in the demos are by Matt Kaufenberg. Check out his <a href="http://dribbble.com/stuntman">Dribbble profile</a> or visit his <a href="http://www.illustrationaday.com/">An Illustration-a-Day Blog</a>.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<h3>Markup</h3>
<p>The HTML will contain five main divisions: a header and the four content sections. Each of the content sections is going to have an ID and the class <strong>panel</strong>. Moreover, we will add another division inside which will have the class <strong>content</strong>. The first content section which is #home will only have the <strong>content</strong> class and will not require an extra division:</p>
<pre class="brush:xml">
&lt;!-- Home --&gt;
&lt;div id="home" class="content"&gt;
	&lt;h2&gt;Home&lt;/h2&gt;
	&lt;p&gt;Some content&lt;/p&gt;
	&lt;!-- ... --&gt;
&lt;/div&gt;
&lt;!-- /Home --&gt;

&lt;!-- Portfolio --&gt;
&lt;div id="portfolio" class="panel"&gt;
	&lt;div class="content"&gt;
		&lt;h2&gt;Portfolio&lt;/h2&gt;
		&lt;p&gt;Some content&lt;/p&gt;
		&lt;!-- ... --&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;!-- /Portfolio --&gt;

&lt;!-- About --&gt;
&lt;div id="about" class="panel"&gt;
	&lt;div class="content"&gt;
		&lt;h2&gt;About&lt;/h2&gt;
		&lt;p&gt;Some content&lt;/p&gt;
		&lt;!-- ... --&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;!-- /About --&gt;

&lt;!-- Contact --&gt;
&lt;div id="contact" class="panel"&gt;
	&lt;div class="content"&gt;
		&lt;h2&gt;Contact&lt;/h2&gt;
		&lt;p&gt;Some content&lt;/p&gt;
		&lt;!-- ... --&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;!-- /Contact --&gt;
</pre>
<p>In the header we will have the main heading and the navigation:</p>
<pre class="brush:xml">
&lt;!-- Header with Navigation --&gt;
&lt;div id="header"&gt;
	&lt;h1&gt;Page Transitions with CSS3&lt;/h1&gt;
	&lt;ul id="navigation"&gt;
		&lt;li&gt;&lt;a id="link-home" href="#home"&gt;Home&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a id="link-portfolio" href="#portfolio"&gt;Portfolio&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a id="link-about" href="#about"&gt;About Me&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;&lt;a id="link-contact" href="#contact"&gt;Contact&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>The reason for having such an &#8220;unordered&#8221; structure by adding the header to the end, is that we make the navigation &#8220;reachable&#8221; using the general sibling selector (~), so that we can color the respective items differently.</p>
<p>Now, the main idea is to use the pseudo-class :target in order to add a transition to the current section. In this example, we will be sliding up and down our sections.</p>
<h3>CSS</h3>
<p>First we will give style to our header and the navigation. We want to keep these on the same spot at all the time, even though everything else will be moving.</p>
<pre class="brush:css">
#header{
	position: absolute;
	z-index: 2000;
	width: 235px;
	top: 50px;
}
#header h1{
	font-size: 30px;
	font-weight: 400;
	text-transform: uppercase;
	color: rgba(255,255,255,0.9);
	text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
	padding: 20px;
	background: #000;
}
#navigation {
	margin-top: 20px;
	width: 235px;
	display:block;
	list-style:none;
	z-index:3;
}
#navigation a{
	color: #444;
	display: block;
	background: #fff;
	background: rgba(255,255,255,0.9);
	line-height: 50px;
	padding: 0px 20px;
	text-transform: uppercase;
	margin-bottom: 6px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	font-size: 14px;
}
#navigation a:hover {
	background: #ddd;
}
</pre>
<p>All the sections except #home have the <strong>panel</strong> class. Here we will be using the transition whenever an element with this class gets &#8220;targeted&#8221;. The trick is to use a negative margin in the &#8220;normal&#8221; class and no margin at all in the :target pseudo-class. Adding a transitions will make the panel slide from the top whenever one is &#8220;selected&#8221;:</p>
<pre class="brush:css">
.panel{
	min-width: 100%;
	height: 98%;
	overflow-y: auto;
	overflow-x: hidden;
	margin-top: -150%;
	position: absolute;
	background: #000;
	box-shadow: 0px 4px 7px rgba(0,0,0,0.6);
	z-index: 2;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	-o-transition: all .8s ease-in-out;
	transition: all .8s ease-in-out;
}
.panel:target{
	margin-top: 0%;
	background-color: #ffcb00;
}
</pre>
<p>Next, let&#8217;s style the <strong>content</strong> class that all our sections have:</p>
<pre class="brush:css">
.content{
	right: 40px;
	left: 280px;
	top: 0px;
	position: absolute;
	padding-bottom: 30px;
}
.content h2{
	font-size: 110px;
	padding: 10px 0px 20px 0px;
	margin-top: 52px;
	color: #fff;
	color: rgba(255,255,255,0.9);
	text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}
.content p{
	font-size: 18px;
	padding: 10px;
	line-height: 24px;
	color: #fff;
	display: inline-block;
	background: black;
	padding: 10px;
	margin: 3px 0px;
}
</pre>
<p>In order to change the color of the current item in the navigation, we&#8217;ll use the :target pseudo-class with the general sibling selector to &#8220;get to&#8221; the respective navigation item:</p>
<pre class="brush:css">
#home:target ~ #header #navigation #link-home,
#portfolio:target ~ #header #navigation #link-portfolio,
#about:target ~ #header #navigation #link-about,
#contact:target ~ #header #navigation #link-contact{
	background: #000;
	color: #fff;
}
</pre>
<p>And that&#8217;s all you need. Check out the demos and you&#8217;ll see other examples of how you can do this.</p>
<p>Hope you liked this tutorial and maybe you can experiment with your own effects.</p>
<p>¡Hasta la próxima!</p>
<p><a class="demo" href="http://tympanus.net/Tutorials/CSS3PageTransitions/index.html#home">View demo</a> <a class="download" href="http://tympanus.net/Tutorials/CSS3PageTransitions/CSS3PageTransitions.zip">Download source</a></p>
<img src="http://feeds.feedburner.com/~r/tympanus/~4/XWhhwvwIJUU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2012/01/30/page-transitions-with-css3/feed/</wfw:commentRss>
		<slash:comments>53</slash:comments>
		<feedburner:origLink>http://tympanus.net/codrops/2012/01/30/page-transitions-with-css3/</feedburner:origLink></item>
	</channel>
</rss><!-- This Quick Cache file was built for (  tympanus.net/codrops/feed/ ) in 0.34581 seconds, on Feb 24th, 2012 at 1:26 am UTC. --><!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 24th, 2012 at 2:26 am UTC -->

