<?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>Codrops &#187; design</title>
	<atom:link href="http://tympanus.net/codrops/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Mon, 06 Feb 2012 07:30:10 +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>Pimp Your Tables with CSS3</title>
		<link>http://tympanus.net/codrops/2010/05/03/pimp-your-tables-with-css3/</link>
		<comments>http://tympanus.net/codrops/2010/05/03/pimp-your-tables-with-css3/#comments</comments>
		<pubDate>Mon, 03 May 2010 21:06:54 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=2010</guid>
		<description><![CDATA[View demoDownload source Today I am going to show you how to use some neat CSS3 properties to beautify your tables. With so many new selectors we can address specific table cells and rows in order to create a unique style without adding classes to the markup. We will be applying the -webkit and -moz [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tympanus.net/Tutorials/CSS3Tables/" target="_blank"><img class="aligncenter size-full wp-image-2025" title="pimptables" src="http://tympanus.net/codrops/wp-content/uploads/2010/05/pimptables.jpg" alt="" width="580" height="315" /></a></p>
<p><a class="demo" href="http://tympanus.net/Tutorials/CSS3Tables/" target="_blank">View demo</a><a class="download" href="http://tympanus.net/Tutorials/CSS3Tables/CSS3Tables.zip">Download source</a></p>
<p>Today I am going to show you how to use some neat CSS3 properties to beautify your tables. With so many new selectors we can address specific table cells and rows in order to create a unique style without adding classes to the markup.</p>
<p>We will be applying the -webkit and -moz gradients for creating a great look without images and learn how to insert content into elements with a specific class.</p>
<p>Let&#8217;s start with the markup.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<h3>The Markup</h3>
<p>The following will be our basic table structure:</p>
<pre class="brush:xml">&lt;table class="table1"&gt;
	&lt;thead&gt;
		&lt;tr&gt;
			&lt;th&gt;&lt;/th&gt;
			&lt;th scope="col" abbr="Starter"&gt;Smart Starter&lt;/th&gt;
			&lt;th scope="col" abbr="Medium"&gt;Smart Medium&lt;/th&gt;
			&lt;th scope="col" abbr="Business"&gt;Smart Business&lt;/th&gt;
			&lt;th scope="col" abbr="Deluxe"&gt;Smart Deluxe&lt;/th&gt;
		&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tfoot&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;Price per month&lt;/th&gt;
			&lt;td&gt;$ 2.90&lt;/td&gt;
			&lt;td&gt;$ 5.90&lt;/td&gt;
			&lt;td&gt;$ 9.90&lt;/td&gt;
			&lt;td&gt;$ 14.90&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tfoot&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;Storage Space&lt;/th&gt;
			&lt;td&gt;512 MB&lt;/td&gt;
			&lt;td&gt;1 GB&lt;/td&gt;
			&lt;td&gt;2 GB&lt;/td&gt;
			&lt;td&gt;4 GB&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;Bandwidth&lt;/th&gt;
			&lt;td&gt;50 GB&lt;/td&gt;
			&lt;td&gt;100 GB&lt;/td&gt;
			&lt;td&gt;150 GB&lt;/td&gt;
			&lt;td&gt;Unlimited&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;MySQL Databases&lt;/th&gt;
			&lt;td&gt;Unlimited&lt;/td&gt;
			&lt;td&gt;Unlimited&lt;/td&gt;
			&lt;td&gt;Unlimited&lt;/td&gt;
			&lt;td&gt;Unlimited&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;Setup&lt;/th&gt;
			&lt;td&gt;19.90 $&lt;/td&gt;
			&lt;td&gt;12.90 $&lt;/td&gt;
			&lt;td&gt;free&lt;/td&gt;
			&lt;td&gt;free&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;PHP 5&lt;/th&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th scope="row"&gt;Ruby on Rails&lt;/th&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;span class="check"&gt;&lt;/span&gt;&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
&lt;/table</pre>
<p>We have all the elements a table needs, a header, a body and a footer.  In this tutorial we will use a hosting plan comparison table as example. The three following styles can be applied to this table by changing the class to table1, table2 or table3.</p>
<h3>CSS Table 1</h3>
<p><img class="aligncenter size-full wp-image-2022" title="table1" src="http://tympanus.net/codrops/wp-content/uploads/2010/05/table1.jpg" alt="" width="580" height="347" /></p>
<p>The first table will be in green tones with some gradients for the descriptive cells, the &#8220;th&#8221; elements. Let&#8217;s start with the general style for the table:</p>
<pre class="brush:css">table.table1{
    font-family: "Trebuchet MS", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4em;
    font-style: normal;
    border-collapse:separate;
}</pre>
<p>We want to have some space between the table cells, so we will make the border-collapse separate.</p>
<p>I usually take the style for the font from <a href="http://www.typechart.com/" target="_blank">Typechart</a>, a really useful site with nice font examples and the CSS code ready for copy.</p>
<p>The th elements of the head will have the following style:</p>
<pre class="brush:css">.table1 thead th{
    padding:15px;
    color:#fff;
    text-shadow:1px 1px 1px #568F23;
    border:1px solid #93CE37;
    border-bottom:3px solid #9ED929;
    background-color:#9DD929;
    background:-webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.02, rgb(123,192,67)),
        color-stop(0.51, rgb(139,198,66)),
        color-stop(0.87, rgb(158,217,41))
        );
    background: -moz-linear-gradient(
        center bottom,
        rgb(123,192,67) 2%,
        rgb(139,198,66) 51%,
        rgb(158,217,41) 87%
        );
    -webkit-border-top-left-radius:5px;
    -webkit-border-top-right-radius:5px;
    -moz-border-radius:5px 5px 0px 0px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
}</pre>
<p>We use the gradient property for Firefox and for Webkit browsers (Safari and Chrome) to create a beautiful gradient with three colors. The border-radius property rounds the top left and top right border of the cells.</p>
<p>Now, we need to take care of that on th that is empty. With CSS3 selectors we can do some incredible things, and this is one of them: select the th that is empty. And this is how:</p>
<pre class="brush:css">.table1 thead th:empty{
    background:transparent;
    border:none;
}</pre>
<p>The footer of the table will have the following style:</p>
<pre class="brush:css">.table1 tfoot td{
    color: #9CD009;
    font-size:32px;
    text-align:center;
    padding:10px 0px;
    text-shadow:1px 1px 1px #444;
}
.table1 tfoot th{
    color:#666;
}</pre>
<p>Nothing special about that, just some text shadow to enhance the font.</p>
<p>The inner table cells will have a light green background and a white text shadow for an engraved effect:</p>
<pre class="brush:css">.table1 tbody td{
    padding:10px;
    text-align:center;
    background-color:#DEF3CA;
    border: 2px solid #E7EFE0;
    -moz-border-radius:2px;
    -webkit-border-radius:2px;
    border-radius:2px;
    color:#666;
    text-shadow:1px 1px 1px #fff;
}</pre>
<p>We also add some very subtle border and border radius to the cells. This will invoke a slight glowing effect. We could also use some box shadow to create a similar effect.</p>
<p>Now, we want to add an icon to all the cells that have a span with the class &#8220;check&#8221;. With the following CSS with can achieve that:</p>
<pre class="brush:css">.table1 tbody span.check::before{
    content : url(../images/check0.png)
}</pre>
<p>This property allows us to add some specific content (in this case it is an image) inside of the element. We could have also added some text here. We can say &#8220;::before&#8221; or &#8220;::after&#8221; which would insert it after the content.</p>
<p>And that&#8217;s all the style for the first table! Let&#8217;s take a look at the second one.</p>
<h3>CSS Table 2</h3>
<p><img class="aligncenter size-full wp-image-2023" title="table2" src="http://tympanus.net/codrops/wp-content/uploads/2010/05/table2.jpg" alt="" width="580" height="415" /></p>
<p>The second table will be more of the elegant type, with a black header and footer.</p>
<p>This table will not have any space in between the cells, so we collapse it:</p>
<pre class="brush:css">table.table2{
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    letter-spacing: -1px;
    line-height: 1.2em;
    border-collapse:collapse;
    text-align:center;
}</pre>
<p>The footer and the header are going to have a similar style, so we can define the common properties as follows:</p>
<pre class="brush:css">.table2 thead th, .table2 tfoot td{
    padding:20px 10px 40px 10px;
    color:#fff;
    font-size: 26px;
    background-color:#222;
    font-weight:normal;
    border-right:1px dotted #666;
    border-top:3px solid #666;
    -moz-box-shadow:0px -1px 4px #000;
    -webkit-box-shadow:0px -1px 4px #000;
    box-shadow:0px -1px 4px #000;
    text-shadow:0px 0px 1px #fff;
    text-shadow:1px 1px 1px #000;
}</pre>
<p>The th of the footer will have this style:</p>
<pre class="brush:css">.table2 tfoot th{
    padding:10px;
    font-size:18px;
    text-transform:uppercase;
    color:#888;
}</pre>
<p>The footer cells which we already defined together with the header cells, will need a different box shadow. The header box shadow points to the top and the footer one should point to the bottom. We also want to change the color of the text:</p>
<pre class="brush:css">.table2 tfoot td{
    font-size:36px;
    color:#EF870E;
    border-top:none;
    border-bottom:3px solid #666;
    -moz-box-shadow:0px 1px 4px #000;
    -webkit-box-shadow:0px 1px 4px #000;
    box-shadow:0px 1px 4px #000;
}</pre>
<p>Let&#8217;s get back to the header where we still need to define that the empty cell should not have any style:</p>
<pre class="brush:css">.table2 thead th:empty{
    background:transparent;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}</pre>
<p>We also need to remove the box shadow that we defined for the header elements before.</p>
<p>With the :nth-last-child selector we can select the last cell element in our header and say that it should not have a right border, like the other ones:</p>
<pre class="brush:css">.table2 thead :nth-last-child(1){
    border-right:none;
}</pre>
<p>With the :first-child selector we can address the first cell in the header, which is empty and we don&#8217;t want it to have a border. We also want to remove the border from the last td elements in our table body:</p>
<pre class="brush:css">.table2 thead :first-child,
.table2 tbody :nth-last-child(1){
    border:none;
}</pre>
<p>Now, lets add some style to the outer left descriptions, the th elements of the table body:</p>
<pre class="brush:css">.table2 tbody th{
    text-align:right;
    padding:10px;
    color:#333;
    text-shadow:1px 1px 1px #ccc;
    background-color:#f9f9f9;
}</pre>
<p>And the following style will be applied to the other cells:</p>
<pre class="brush:css">.table2 tbody td{
    padding:10px;
    background-color:#f0f0f0;
    border-right:1px dotted #999;
    text-shadow:-1px 1px 1px #fff;
    text-transform:uppercase;
    color:#333;
}</pre>
<p>Now we just need to insert an icon for the check spans:</p>
<pre class="brush:css">.table2 tbody span.check::before{
    content : url(../images/check1.png)
}</pre>
<h3>CSS Table 3</h3>
<p><img class="aligncenter size-full wp-image-2024" title="table3" src="http://tympanus.net/codrops/wp-content/uploads/2010/05/table3.jpg" alt="" width="580" height="373" /></p>
<p>The third table will have a few more CSS properties since we want all the column headers to have a different color. I will show you how to do that by using selectors only.</p>
<p>The general table style will be the following:</p>
<pre class="brush:css">table.table3{
    font-family:Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.7em;
    text-align:center;
    border-collapse:collapse;
}</pre>
<p>The common style for all th cells in the header will be:</p>
<pre class="brush:css">.table3 thead th{
    padding:6px 10px;
    text-transform:uppercase;
    color:#444;
    font-weight:bold;
    text-shadow:1px 1px 1px #fff;
    border-bottom:5px solid #444;
}</pre>
<p>The empty cell will be treated as follows:</p>
<pre class="brush:css">.table3 thead th:empty{
    background:transparent;
    border:none;
}</pre>
<p>Now we want to select specific th cells in the header and td cells in the footer to give them a unique color. With the :nth-child(number) we can select the exact child:</p>
<pre class="brush:css">.table3 thead :nth-child(2),
.table3 tfoot :nth-child(2){
    background-color: #7FD2FF;
}
.table3 tfoot :nth-child(2){
    -moz-border-radius:0px 0px 0px 5px;
    -webkit-border-bottom-left-radius:5px;
    border-bottom-left-radius:5px;
}
.table3 thead :nth-child(2){
    -moz-border-radius:5px 0px 0px 0px;
    -webkit-border-top-left-radius:5px;
    border-top-left-radius:5px;
}
.table3 thead :nth-child(3),
.table3 tfoot :nth-child(3){
    background-color: #45A8DF;
}
.table3 thead :nth-child(4),
.table3 tfoot :nth-child(4){
    background-color: #2388BF;
}
.table3 thead :nth-child(5),
.table3 tfoot :nth-child(5){
    background-color: #096A9F;
}
.table3 thead :nth-child(5){
    -moz-border-radius:0px 5px 0px 0px;
    -webkit-border-top-right-radius:5px;
    border-top-right-radius:5px;
}
.table3 tfoot :nth-child(5){
    -moz-border-radius:0px 0px 5px 0px;
    -webkit-border-bottom-right-radius:5px;
    border-bottom-right-radius:5px;
}</pre>
<p>We also added a border radius to the selected corner cells.</p>
<p>The common style for all the td cells in the footer will be:</p>
<pre class="brush:css">.table3 tfoot td{
    font-size:38px;
    font-weight:bold;
    padding:15px 0px;
    text-shadow:1px 1px 1px #fff;
}</pre>
<p>Let&#8217;s add some padding to the cells:</p>
<pre class="brush:css">.table3 tbody td{
    padding:10px;
}</pre>
<p>We want the row of the prices for the setup to have a stronger font:</p>
<pre class="brush:css">.table3 tbody tr:nth-child(4) td{
    font-size:26px;
    font-weight:bold;
}</pre>
<p>The columns of the body of the table should have altering styles, so we will use again the :nth-child selector but this time with the values &#8220;even&#8221; and &#8220;odd&#8221;:</p>
<pre class="brush:css">.table3 tbody td:nth-child(even){
    background-color:#444;
    color:#444;
    border-bottom:1px solid #444;
    background:-webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.39, rgb(189,189,189)),
        color-stop(0.7, rgb(224,224,224))
        );
    background:-moz-linear-gradient(
        center bottom,
        rgb(189,189,189) 39%,
        rgb(224,224,224) 70%
        );
    text-shadow:1px 1px 1px #fff;
}
.table3 tbody td:nth-child(odd){
    background-color:#555;
    color:#f0f0f0;
    border-bottom:1px solid #444;
    background:-webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.39, rgb(85,85,85)),
        color-stop(0.7, rgb(105,105,105))
        );
    background:-moz-linear-gradient(
        center bottom,
        rgb(85,85,85) 39%,
        rgb(105,105,105) 70%
        );
    text-shadow:1px 1px 1px #000;
}</pre>
<p>We also add a right border to the last tds in a row:</p>
<pre class="brush:css">.table3 tbody td:nth-last-child(1){
    border-right:1px solid #222;
}</pre>
<p>The left description is going to have the following style:</p>
<pre class="brush:css">.table3 tbody th{
    color:#696969;
    text-align:right;
    padding:0px 10px;
    border-right:1px solid #aaa;
}</pre>
<p>Just the check icon is left:</p>
<pre class="brush:css">.table3 tbody span.check::before{
    content : url(../images/check2.png)
}</pre>
<p>And that&#8217;s it! Three differently styled tables with pure CSS!</p>
<p>I hope you enjoyed the tutorial!</p>
<p>Here are some very useful related links:</p>
<p>Create CSS3 Gradients: <a href="http://gradients.glrzad.com/">http://gradients.glrzad.com/</a></p>
<p>W3C Selectors Level 3: <a href="http://www.w3.org/TR/css3-selectors/">http://www.w3.org/TR/css3-selectors/</a></p>
<p><a class="demo" href="http://tympanus.net/Tutorials/CSS3Tables/" target="_blank">View demo</a><a class="download" href="http://tympanus.net/Tutorials/CSS3Tables/CSS3Tables.zip">Download source</a></p>
<p><!-- wp_ad_camp_1 --></p>
<div class="partner_section_post"><span>Message from Testking</span>Using <a href="http://www.testkingsite.com/cisco/650-575.html">testking 650-575</a> demos and <a href="http://www.testkingsite.com/microsoft/70-433.html">testking 70-433</a> css3 tutorials learn how to increase to create inspiring design templates.  learn all about  css and jQuery with <a href="http://www.testkingsite.com/citrix/1Y0-A14.html">testking 1Y0-A14</a> web designing course.</div>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2010/05/03/pimp-your-tables-with-css3/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Collective: 35 Amazing Premium WordPress Themes of April 2010</title>
		<link>http://tympanus.net/codrops/2010/05/01/collective-35-amazing-premium-wordpress-themes-of-april-2010/</link>
		<comments>http://tympanus.net/codrops/2010/05/01/collective-35-amazing-premium-wordpress-themes-of-april-2010/#comments</comments>
		<pubDate>Sat, 01 May 2010 18:36:09 +0000</pubDate>
		<dc:creator>Community</dc:creator>
				<category><![CDATA[Collective]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1978</guid>
		<description><![CDATA[When it comes to blogging, WordPress is the 1st word which comes in my mind. And I have reasons for that: WordPress is the most flexible easy to use and customize CMS platform among all. Premium WordPress Themes are the first solution when building a blog. Are fully supported, fully featured, perfectly coded and way [...]]]></description>
			<content:encoded><![CDATA[<p><!-- Digg Digg Disabled --></p>
<p><a href="http://www.ourtuts.com/35-amazing-premium-wordpress-themes-of-april-2010/"><img class="aligncenter size-full wp-image-1979" title="wordpressthemes" src="http://tympanus.net/codrops/wp-content/uploads/2010/05/wordpressthemes.jpg" alt="" width="580" height="446" /></a></p>
<p>When it comes to blogging, WordPress is the 1st word which comes in my mind. And I have reasons for that: WordPress is the most flexible easy to use and customize CMS platform among all.</p>
<p>Premium WordPress Themes are the first solution when building a blog. Are fully supported, fully featured, perfectly coded and way too visual appealing, so choosing a premium wordpress theme is a no-brainer for the majority of bloggers.</p>
<p>Take a look at these 35 fresh Premium WordPress Themes. If your website needs a facelift, you probably don’t want to miss this showcase.</p>
<h3>Source</h3>
<p><a href="http://www.ourtuts.com/35-amazing-premium-wordpress-themes-of-april-2010/" target="_blank">http://www.ourtuts.com/35-amazing-premium-wordpress-themes-of-april-2010/</a></p>
<p><!-- wp_ad_camp_1 --></p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2010/05/01/collective-35-amazing-premium-wordpress-themes-of-april-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>60+ Interior Design and Furniture Websites for Your Inspiration</title>
		<link>http://tympanus.net/codrops/2010/04/27/60-interior-design-and-furniture-websites-for-your-inspiration-2/</link>
		<comments>http://tympanus.net/codrops/2010/04/27/60-interior-design-and-furniture-websites-for-your-inspiration-2/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 13:32:16 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[Navigation]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1906</guid>
		<description><![CDATA[It is interesting to explore the design of websites associated to a certain category. There are many collections out there that showcase websites from certain areas, and today I want to share a couple of designs of websites from the interior design category. As one might assume, the level of design might be pretty interesting [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1914" title="furniturey" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/furniturey.png" alt="" width="580" height="362" /></p>
<p>It is interesting to explore the design of websites associated to a certain category. There are many collections out there that showcase websites from certain areas, and today I want to share a couple of designs of websites from the interior design category.</p>
<p>As one might assume, the level of design might be pretty interesting since there should be a tight connection between the sense of design applied in interior design or architecture and web design. The fundamental design principles that come with the knowledge of an interior designer can only be helpful when used in designing a page (or letting a page be designed).</p>
<p>I was curious to which extend designers of real objects and interior designers let their skill be reflected in their websites. One would expect that especially in this category, designs would be expressive and unique.</p>
<p>Unfortunately, not many designers seem to recognize the importance of an intriguing web presence. Most of the websites of interior designers seem outdated and don&#8217;t show much of a design spirit. But there are also some that show a reflection of style and do that in a quite fashionable and interesting way.</p>
<p>This collection consists of some furniture store websites, portfolios and interior design blogs. Take a look:</p>
<h3><a href="http://www.moderndigsfurniture.com/">http://www.moderndigsfurniture.com/</a></h3>
<p style="text-align: center;"><a href="http://www.moderndigsfurniture.com/"><img class="size-full wp-image-2906 aligncenter" title="DesignerFurniture60" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture601.jpg" alt="" width="570" height="524" /></a></p>
<p>A beautiful example of a contemporary and uncluttered look with the focus on the design elements with an elegant product catalogue.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<h3><a href="http://www.atelierid.com/">http://www.atelierid.com/</a></h3>
<p><a href="http://www.atelierid.com/"><img class="aligncenter size-full wp-image-1903" title="DesignerFurniture60" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture60.jpg" alt="" width="570" height="296" /></a></p>
<p>Atelier expresses it&#8217;s design direction beautifully with it&#8217;s website. Note, how the soft green complements the warm colors of the photos that represent the design choices. Also, a lot of black element are used which get&#8217;s reflected in the main color choice of the website. And check out that smooth fade in effect of the menu.</p>
<h3><a href="http://www.bentheim.co.uk/">http://www.bentheim.co.uk/</a></h3>
<p><a href="http://www.bentheim.co.uk/"><img class="aligncenter size-full wp-image-1902" title="DesignerFurniture59" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture59.jpg" alt="" width="570" height="297" /></a></p>
<p>The website of Bentheim is a nice example of a minimalistic style that focuses on representing the design direction by it&#8217;s images.</p>
<h3><a href="http://www.amok.co.uk/">http://www.amok.co.uk/</a></h3>
<p><a href="http://www.amok.co.uk/"><img class="aligncenter size-full wp-image-1901" title="DesignerFurniture58" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture58.jpg" alt="" width="570" height="345" /></a></p>
<p>Flash with nice usage example of pattern and light fonts.</p>
<h3><a href="http://www.noraschneider.com/">http://www.noraschneider.com/</a></h3>
<p><a href="http://www.noraschneider.com/"><img class="aligncenter size-full wp-image-1900" title="DesignerFurniture57" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture57.jpg" alt="" width="570" height="375" /></a></p>
<p>This one has some interesting navigation animations.</p>
<h3><a href="http://www.francelavin.com/">http://www.francelavin.com/</a></h3>
<p><a href="http://www.francelavin.com/"><img class="aligncenter size-full wp-image-1899" title="DesignerFurniture56" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture56.jpg" alt="" width="570" height="374" /></a></p>
<h3><a href="http://www.design4space.com.au/">http://www.design4space.com.au/</a></h3>
<p><a href="http://www.design4space.com.au/"><img class="aligncenter size-full wp-image-1898" title="DesignerFurniture55" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture55.jpg" alt="" width="570" height="347" /></a></p>
<p>Flash used very nicely, check out the navigation as part of the room.</p>
<h3><a href="http://www.geoform.com.au/">http://www.geoform.com.au/</a></h3>
<p><a href="http://www.geoform.com.au/"><img class="aligncenter size-full wp-image-1897" title="DesignerFurniture54" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture54.jpg" alt="" width="570" height="373" /></a></p>
<p>Entirely flash as well. The geoform banner is following the mouse movements vertically.</p>
<h3><a href="http://www.acosdesign.com/">http://www.acosdesign.com/</a></h3>
<p><a href="http://www.acosdesign.com/"><img class="aligncenter size-full wp-image-1896" title="DesignerFurniture53" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture53.jpg" alt="" width="570" height="466" /></a></p>
<p>Interesting use of round bubbles that keep moving around&#8230;</p>
<h3><a href="http://berlinrodeo.com/">http://berlinrodeo.com/</a></h3>
<p><a href="http://berlinrodeo.com/"><img class="aligncenter size-full wp-image-1895" title="DesignerFurniture52" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture52.jpg" alt="" width="570" height="394" /></a></p>
<p>Slick design with change of color when choosing one from the palette.</p>
<h3><a href="http://www.rgrdesignassociates.com/">http://www.rgrdesignassociates.com/</a></h3>
<p><a href="http://www.rgrdesignassociates.com/"><img class="aligncenter size-full wp-image-1894" title="DesignerFurniture51" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture51.jpg" alt="" width="570" height="372" /></a></p>
<h3><a href="http://www.jdesigngroup.com/">http://www.jdesigngroup.com/</a></h3>
<p><a href="http://www.jdesigngroup.com/"><img class="aligncenter size-full wp-image-1893" title="DesignerFurniture50" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture50.jpg" alt="" width="570" height="358" /></a></p>
<p>Another page where the design used seems to reflect the interior design direction. I like the color choice.</p>
<h3><a href="http://www.tommasoziffer.it/">http://www.tommasoziffer.it/</a></h3>
<p><a href="http://www.tommasoziffer.it/"><img class="aligncenter size-full wp-image-1892" title="DesignerFurniture49" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture49.jpg" alt="" width="570" height="342" /></a></p>
<p>Very interesting navigation with focus on the photos. The color choices fit the taste of the designer.</p>
<h3><a href="http://www.betterlivingthroughdesign.com/">http://www.betterlivingthroughdesign.com/</a></h3>
<p><a href="http://www.betterlivingthroughdesign.com/"><img class="aligncenter size-full wp-image-1891" title="DesignerFurniture48" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture48.jpg" alt="" width="570" height="314" /></a></p>
<p>I really like the clean design of this one.</p>
<h3><a href="http://www.wellylai.com/">http://www.wellylai.com/</a></h3>
<p><a href="http://www.wellylai.com/"><img class="aligncenter size-full wp-image-1890" title="DesignerFurniture47" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture47.jpg" alt="" width="570" height="288" /></a></p>
<h3><a href="http://www.amandanisbetdesign.com/">http://www.amandanisbetdesign.com/</a></h3>
<p><a href="http://www.amandanisbetdesign.com/"><img class="aligncenter size-full wp-image-1889" title="DesignerFurniture46" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture46.jpg" alt="" width="570" height="300" /></a></p>
<h3><a href="http://www.shawnhenderson.com/">http://www.shawnhenderson.com/</a></h3>
<p><a href="http://www.shawnhenderson.com/"><img class="aligncenter size-full wp-image-1888" title="DesignerFurniture45" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture45.jpg" alt="" width="570" height="298" /></a></p>
<h3><a href="http://www.willeydesign.com/">http://www.willeydesign.com/</a></h3>
<p><a href="http://www.willeydesign.com/"><img class="aligncenter size-full wp-image-1887" title="DesignerFurniture44" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture44.jpg" alt="" width="570" height="334" /></a></p>
<h3><a href="http://mocoloco.com/">http://mocoloco.com/</a></h3>
<p><a href="http://mocoloco.com/"><img class="aligncenter size-full wp-image-1886" title="DesignerFurniture43" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture43.jpg" alt="" width="570" height="300" /></a></p>
<p>MoCo Loco has a really fresh design and the website is scrolled horizontally. Each area (Design, Art, Fresh) has it&#8217;s own complement color.</p>
<h3><a href="http://www.browndesigninc.com/">http://www.browndesigninc.com/</a></h3>
<p><a href="http://www.browndesigninc.com/"><img class="aligncenter size-full wp-image-1885" title="DesignerFurniture42" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture42.jpg" alt="" width="570" height="329" /></a></p>
<p>Interesting stacking of the menu items. Brown really seems to be their color.</p>
<h3><a href="http://www.architonic.com/">http://www.architonic.com/</a></h3>
<p><a href="http://www.architonic.com/"><img class="aligncenter size-full wp-image-1884" title="DesignerFurniture41" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture41.jpg" alt="" width="570" height="334" /></a></p>
<p>I really like the style of the columns in this website. It is very unusual and it makes the site very interesting while keeping functionality and readability.</p>
<h3><a href="http://www.kelloggcollection.com/">http://www.kelloggcollection.com/</a></h3>
<p><a href="http://www.kelloggcollection.com/"><img class="aligncenter size-full wp-image-1883" title="DesignerFurniture40" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture40.jpg" alt="" width="570" height="346" /></a></p>
<h3><a href="http://www.ethanallen.com/">http://www.ethanallen.com/</a></h3>
<p><a href="http://www.ethanallen.com/"><img class="aligncenter size-full wp-image-1882" title="DesignerFurniture39" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture39.jpg" alt="" width="570" height="399" /></a>Great way of complementing pattern with font, just check out how the big type fits to the patterns. Love the palette  choice.</p>
<h3><a href="http://www.orsonandblake.com.au/">http://www.orsonandblake.com.au/</a></h3>
<p><a href="http://www.orsonandblake.com.au/"><img class="aligncenter size-full wp-image-1881" title="DesignerFurniture38" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture38.jpg" alt="" width="570" height="366" /></a></p>
<h3><a href="http://www.bonluxat.com/">http://www.bonluxat.com/</a></h3>
<p><a href="http://www.bonluxat.com/"><img class="aligncenter size-full wp-image-1880" title="DesignerFurniture37" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture37.jpg" alt="" width="570" height="328" /></a></p>
<h3><a href="http://www.boconcept.us/">http://www.boconcept.us/</a></h3>
<p><a href="http://www.boconcept.us/"><img class="aligncenter size-full wp-image-1879" title="DesignerFurniture36" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture36.jpg" alt="" width="570" height="389" /></a></p>
<h3><a href="http://www.ozdesignfurniture.com.au/">http://www.ozdesignfurniture.com.au/</a></h3>
<p><a href="http://www.ozdesignfurniture.com.au/"><img class="aligncenter size-full wp-image-1878" title="DesignerFurniture35" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture35.jpg" alt="" width="570" height="440" /></a>Very nice color choices here.</p>
<h3><a href="http://www.leighharmer.co.uk/">http://www.leighharmer.co.uk/</a></h3>
<p><a href="http://www.leighharmer.co.uk/"><img class="aligncenter size-full wp-image-1877" title="DesignerFurniture34" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture34.jpg" alt="" width="570" height="405" /></a></p>
<h3><a href="http://www.beyondfurniture.com.au/">http://www.beyondfurniture.com.au/</a></h3>
<p><a href="http://www.beyondfurniture.com.au/"><img class="aligncenter size-full wp-image-1876" title="DesignerFurniture33" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture33.jpg" alt="" width="570" height="394" /></a></p>
<h3><a href="http://www.heals.co.uk/">http://www.heals.co.uk/</a></h3>
<p><a href="http://www.heals.co.uk/"><img class="aligncenter size-full wp-image-1875" title="DesignerFurniture32" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture32.jpg" alt="" width="570" height="363" /></a></p>
<h3><a href="http://www.bebitalia.it/">http://www.bebitalia.it/</a></h3>
<p><a href="http://www.bebitalia.it/"><img class="aligncenter size-full wp-image-1874" title="DesignerFurniture31" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture31.jpg" alt="" width="570" height="297" /></a></p>
<h3><a href="http://www.galeriedowntown.com/">http://www.galeriedowntown.com/</a></h3>
<p><a href="http://www.galeriedowntown.com/"><img class="aligncenter size-full wp-image-1873" title="DesignerFurniture30" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture30.jpg" alt="" width="570" height="354" /></a></p>
<h3><a href="http://baker.kohlerinteriors.com/">http://baker.kohlerinteriors.com/</a></h3>
<p><a href="http://baker.kohlerinteriors.com/"><img class="aligncenter size-full wp-image-1872" title="DesignerFurniture29" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture29.jpg" alt="" width="570" height="317" /></a>I like how the background pattern changes over time. And it always looks awesome.</p>
<h3><a href="http://www.whos-perfect.de/">http://www.whos-perfect.de/</a></h3>
<p><a href="http://www.whos-perfect.de/"><img class="aligncenter size-full wp-image-1871" title="DesignerFurniture28" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture28.jpg" alt="" width="570" height="388" /></a></p>
<h3><a href="http://www.sixay.com/">http://www.sixay.com/</a></h3>
<p><a href="http://www.sixay.com/"><img class="aligncenter size-full wp-image-1870" title="DesignerFurniture27" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture27.png" alt="" width="570" height="449" /></a></p>
<h3><a href="http://www.gabrielabellon.com/">http://www.gabrielabellon.com/</a></h3>
<p><a href="http://www.gabrielabellon.com/"><img class="aligncenter size-full wp-image-1869" title="DesignerFurniture26" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture26.jpg" alt="" width="570" height="339" /></a></p>
<h3><a href="http://www.bestofbauhaus.com/">http://www.bestofbauhaus.com/</a></h3>
<p><a href="http://www.bestofbauhaus.com/"><img class="aligncenter size-full wp-image-1868" title="DesignerFurniture25" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture25.jpg" alt="" width="570" height="356" /></a></p>
<p>Very light color choice which actually enhances the products shown. Structures are kept very simple.</p>
<h3><a href="http://www.wogg.ch/">http://www.wogg.ch/</a></h3>
<p><a href="http://www.wogg.ch/"><img class="aligncenter size-full wp-image-1867" title="DesignerFurniture24" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture24.jpg" alt="" width="570" height="349" /></a>The website logo does not always have to be on the top left &#8211; it looks pretty nice at the bottom, too.</p>
<h3><a href="http://www.proformshop.com/">http://www.proformshop.com/</a></h3>
<p><a href="http://www.proformshop.com/"><img class="aligncenter size-full wp-image-1866" title="DesignerFurniture23" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture23.jpg" alt="" width="570" height="323" /></a></p>
<h3><a href="http://www.domainefurniture.com.cn/">http://www.domainefurniture.com.cn/</a></h3>
<p><a href="http://www.domainefurniture.com.cn/"><img class="aligncenter size-full wp-image-1865" title="DesignerFurniture22" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture22.jpg" alt="" width="570" height="339" /></a></p>
<h3><a href="http://www.kmpfurniture.com/">http://www.kmpfurniture.com/</a></h3>
<p><a href="http://www.kmpfurniture.com/"><img class="aligncenter size-full wp-image-1864" title="DesignerFurniture21" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture21.jpg" alt="" width="570" height="431" /></a></p>
<h3><a href="http://www.westelm.com/">http://www.westelm.com/</a></h3>
<p><a href="http://www.westelm.com/"><img class="aligncenter size-full wp-image-1863" title="DesignerFurniture20" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture20.jpg" alt="" width="570" height="421" /></a></p>
<h3><a href="http://www.modernfurniture4home.com/">http://www.modernfurniture4home.com/</a></h3>
<p><a href="http://www.modernfurniture4home.com/"><img class="aligncenter size-full wp-image-1862" title="DesignerFurniture19" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture19.jpg" alt="" width="570" height="395" /></a></p>
<h3><a href="http://www.inmod.com/">http://www.inmod.com/</a></h3>
<p><a href="http://www.inmod.com/"><img class="aligncenter size-full wp-image-1861" title="DesignerFurniture18" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture18.jpg" alt="" width="570" height="412" /></a></p>
<h3><a href="http://www.laflat.com/">http://www.laflat.com/</a></h3>
<p><a href="http://www.laflat.com/"><img class="aligncenter size-full wp-image-1860" title="DesignerFurniture17" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture17.jpg" alt="" width="570" height="321" /></a></p>
<h3><a href="http://www.broyhillfurniture.com/">http://www.broyhillfurniture.com/</a></h3>
<p><a href="http://www.broyhillfurniture.com/"><img class="aligncenter size-full wp-image-1859" title="DesignerFurniture16" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture16.jpg" alt="" width="570" height="373" /></a></p>
<h3><a href="http://www.modusfurniture.co.uk/">http://www.modusfurniture.co.uk/</a></h3>
<p><a href="http://www.modusfurniture.co.uk/"><img class="aligncenter size-full wp-image-1858" title="DesignerFurniture15" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture15.jpg" alt="" width="570" height="310" /></a></p>
<h3><a href="http://www.conranusa.com/">http://www.conranusa.com/</a></h3>
<p><a href="http://www.conranusa.com/"><img class="aligncenter size-full wp-image-1857" title="DesignerFurniture14" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture14.jpg" alt="" width="570" height="477" /></a></p>
<h3><a href="http://www.moderncollections.com/">http://www.moderncollections.com/</a></h3>
<p><a href="http://www.moderncollections.com/"><img class="aligncenter size-full wp-image-1856" title="DesignerFurniture13" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture13.jpg" alt="" width="570" height="284" /></a></p>
<h3><a href="http://www.modernlinefurniture.com/">http://www.modernlinefurniture.com/</a></h3>
<p><a href="http://www.modernlinefurniture.com/"><img class="aligncenter size-full wp-image-1855" title="DesignerFurniture12" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture12.jpg" alt="" width="570" height="420" /></a></p>
<h3><a href="http://www.707.com.au/">http://www.707.com.au/</a></h3>
<p><a href="http://www.707.com.au/"><img class="aligncenter size-full wp-image-1854" title="DesignerFurniture11" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture11.jpg" alt="" width="570" height="337" /></a></p>
<h3><a href="http://www.spacify.com/">http://www.spacify.com/</a></h3>
<p><a href="http://www.spacify.com/"><img class="aligncenter size-full wp-image-1853" title="DesignerFurniture10" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture10.jpg" alt="" width="570" height="398" /></a></p>
<h3><a href="http://www.dwr.com/">http://www.dwr.com/</a></h3>
<p><a href="http://www.dwr.com/"><img class="aligncenter size-full wp-image-1852" title="DesignerFurniture09" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture09.jpg" alt="" width="570" height="433" /></a></p>
<h3><a href="http://www.gomodern.co.uk/">http://www.gomodern.co.uk/</a></h3>
<p><a href="http://www.gomodern.co.uk/"><img class="aligncenter size-full wp-image-1851" title="DesignerFurniture08" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture08.jpg" alt="" width="570" height="394" /></a></p>
<h3><a href="http://www.plushpod.com/">http://www.plushpod.com/</a></h3>
<p><a href="http://www.plushpod.com/"><img class="aligncenter size-full wp-image-1850" title="DesignerFurniture07" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture07.jpg" alt="" width="570" height="400" /></a></p>
<h3><a href="http://www.designpublic.com/">http://www.designpublic.com/</a></h3>
<p><a href="http://www.designpublic.com/"><img class="aligncenter size-full wp-image-1849" title="DesignerFurniture06" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture06.jpg" alt="" width="570" height="446" /></a></p>
<h3><a href="http://www.ikea.com/">http://www.ikea.com/</a></h3>
<p><a href="http://www.ikea.com/"><img class="aligncenter size-full wp-image-1848" title="DesignerFurniture05" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture05.jpg" alt="" width="570" height="451" /></a></p>
<p>I can&#8217;t stop hovering over &#8220;All departments&#8221; &#8211; I love the way the menu slides out! I would like to see more contrast in the website in general, though.</p>
<h3><a href="http://www.zarahome.com/">http://www.zarahome.com/</a></h3>
<p><a href="http://www.zarahome.com/"><img class="aligncenter size-full wp-image-1847" title="DesignerFurniture04" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture04.jpg" alt="" width="570" height="413" /></a></p>
<p>If you ever visited a Zara Home store you will notice that their website fits very nicely to the feeling you get in the store: lots of light colors and romantic shapes.</p>
<h3><a href="http://www.the-store-designers.com/">http://www.the-store-designers.com/</a></h3>
<p><a href="http://www.the-store-designers.com/"><img class="aligncenter size-full wp-image-1846" title="DesignerFurniture03" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture03.jpg" alt="" width="570" height="352" /></a></p>
<h3><a href="http://www.yourhome.de/">http://www.yourhome.de/</a></h3>
<p><a href="http://www.yourhome.de/"><img class="aligncenter size-full wp-image-1845" title="DesignerFurniture02" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture02.jpg" alt="" width="570" height="249" /></a>Although many furniture websites sell furniture out of wood, you don&#8217;t see wood textures on the websites very often. I liked this one because it makes use of this obvious connection.</p>
<h3><a href="http://www.fashion4home.de/">http://www.fashion4home.de/</a></h3>
<p><a href="http://www.fashion4home.de/"><img class="aligncenter size-full wp-image-1844" title="DesignerFurniture01" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/DesignerFurniture01.jpg" alt="" width="570" height="372" /></a></p>
<h3>Conclusions</h3>
<p>Many contemporary furniture websites and interior designer websites make use of light structures and colors. Some websites make use of interesting navigation techniques and color palette choices.</p>
<p>This is not an entirely beautiful collection which is sad since one would expect more of a website of that category. I would expect to see more daring styles and ways to express ones creativity. Website design can conceptually be seen as decorating a room: you have some structure and you want to fill the white room with color and content for a purpose, with personal traces and lots of creative beauty.</p>
<p>What do you think? Do you know some websites in this category that you believe express their designers&#8217; style?</p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2010/04/27/60-interior-design-and-furniture-websites-for-your-inspiration-2/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Share the Love: Social Bookmark Designs in Blogs</title>
		<link>http://tympanus.net/codrops/2010/04/06/share-the-love-social-bookmark-designs-in-blogs/</link>
		<comments>http://tympanus.net/codrops/2010/04/06/share-the-love-social-bookmark-designs-in-blogs/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 18:03:13 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[social bookmarks]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1710</guid>
		<description><![CDATA[The other day it came to my attention that there are so many beautiful social bookmark icon sets around but no blog seems to use them. Now, that has to do a lot with the fact that many publishing platforms require a certain amount of programming knowledge in order to personalize the sharing buttons. We [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1763" title="socialb" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/socialb1.png" alt="" width="580" height="362" /></p>
<p>The other day it came to my attention that there are so many beautiful social bookmark icon sets around but no blog seems to use them. Now, that has to do a lot with the fact that many publishing platforms require a certain amount of programming knowledge in order to personalize the sharing buttons.</p>
<p>We use the <a href="http://www.sexybookmarks.net/">Sexy Bookmarks WordPress Plugin</a>, simply because it is really nice and it works well. For the Retweet Button we use the <a href="http://wordpress.org/extend/plugins/digg-digg/">Digg Digg Plugin</a> which is easy to integrate but not really stylable.</p>
<p>It would be really great to have some kind of plugin, that let&#8217;s you just add your own buttons, I bet that would increase the creativity of the social bookmarking designs found in blogs.</p>
<p>During my search for some examples of designs, I found this set that I thought, shows some nice ways of engaging the reader to share the post or bookmark it. Although the opinions about in which way the user should be engaged to share a post at all might differ (some blogs don&#8217;t offer any social bookmarking options), I think that it is ultimately a very important tool for any blog.</p>
<p>Before I start with the collection, I would like to share one more thing with all of you that use the Digg Digg Plugin for the integration of the TweetMeme Button. It took my some time to find out, why the retweet would contain @tweetmeme instead of our Twitter name &#8220;codrops&#8221;. Ultimately I found the solution:  in the settings we chose the &#8220;Integration Type&#8221; to be &#8220;none&#8221; because we called the PHP function manually. Even if you put your TweetMeme source RT name, this will cause the retweet to contain the @tweetmeme instead of your name. (I actually don&#8217;t know if that issue is fixed by now, I just noticed that a lot of blogs seem to have that problem.)</p>
<p>And here comes the collection! Enjoy!</p>
<h3><a href="http://www.blog.spoongraphics.co.uk/">http://www.blog.spoongraphics.co.uk</a></h3>
<p><a href="http://www.blog.spoongraphics.co.uk/"><img class="aligncenter size-full wp-image-1716" title="0" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/0.gif" alt="" width="543" height="170" /></a><br />
This is a really nice way to show those quite &#8220;ugly&#8221; sharing buttons: wrap them in a box so that they look similar and homogeneous.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<h3><a href="http://www.hongkiat.com">http://www.hongkiat.com</a></h3>
<p><a href="http://www.hongkiat.com"><img class="aligncenter size-full wp-image-1717" title="1" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/1.gif" alt="" width="418" height="257" /></a><br />
I really like the big type, fits nicely to the blog.</p>
<h3><a href="http://cellphones.org">http://cellphones.org</a></h3>
<p><a href="http://cellphones.org"><img class="aligncenter size-full wp-image-1718" title="2" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/2.gif" alt="" width="580" height="133" /></a><br />
This one is definitely my favorite, it is very unique and it is completely adapted to the style of the blog.</p>
<h3><a href="http://designinformer.com/">http://designinformer.com</a></h3>
<p><a href="http://designinformer.com/"><img class="aligncenter size-full wp-image-1719" title="3" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/3.gif" alt="" width="580" height="160" /></a></p>
<h3><a href="http://buildinternet.com">http://buildinternet.com</a></h3>
<p><a href="http://buildinternet.com"><img class="aligncenter size-full wp-image-1720" title="4" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/4.gif" alt="" width="580" height="127" /></a></p>
<h3><a href="http://10steps.sg">http://10steps.sg</a></h3>
<p><a href="http://10steps.sg"><img class="aligncenter size-full wp-image-1723" title="7" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/7.gif" alt="" width="315" height="255" /></a><br />
Although we are stuck to the designs and &#8220;identities&#8221; of the sharing buttons, we can make the them interesting by surrounding the buttons with some nice design. This is a good example of how to do it.</p>
<h3><a href="http://www.9lessons.info">http://www.9lessons.info</a></h3>
<p><a href="http://www.9lessons.info"><img class="aligncenter size-full wp-image-1724" title="8" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/8.gif" alt="" width="532" height="127" /></a></p>
<h3><a href="http://www.minervity.com">http://www.minervity.com</a></h3>
<p><a href="http://www.minervity.com"><img class="aligncenter size-full wp-image-1725" title="9" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/9.gif" alt="" width="582" height="63" /></a></p>
<h3><a href="http://creativeoverflow.net">http://creativeoverflow.net</a></h3>
<p><a href="http://creativeoverflow.net"><img class="aligncenter size-full wp-image-1726" title="10" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/10.gif" alt="" width="580" height="257" /></a></p>
<h3><a href="http://desizntech.info">http://desizntech.info</a></h3>
<p><a href="http://desizntech.info"><img class="aligncenter size-full wp-image-1727" title="11" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/11.gif" alt="" width="580" height="131" /></a></p>
<h3><a href="http://designora.com">http://designora.com</a></h3>
<p><a href="http://designora.com"><img class="aligncenter size-full wp-image-1728" title="12" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/12.gif" alt="" width="580" height="112" /></a></p>
<h3><a href="http://www.sitesketch101.com">http://www.sitesketch101.com</a></h3>
<p><a href="http://www.sitesketch101.com"><img class="aligncenter size-full wp-image-1729" title="14" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/14.gif" alt="" width="580" height="92" /></a></p>
<h3><a href="http://www.hairstylesdesign.com/blog">http://www.hairstylesdesign.com/blog</a></h3>
<p><a href="http://www.hairstylesdesign.com/blog"><img class="aligncenter size-full wp-image-1730" title="15" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/15.gif" alt="" width="573" height="257" /></a></p>
<h3><a href="http://www.tutorialboard.net">http://www.tutorialboard.net</a></h3>
<p><a href="http://www.tutorialboard.net"><img class="aligncenter size-full wp-image-1731" title="16" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/16.gif" alt="" width="487" height="257" /></a></p>
<h3><a href="http://www.outlawdesignblog.com">http://www.outlawdesignblog.com</a></h3>
<p><a href="http://www.outlawdesignblog.com"><img class="aligncenter size-full wp-image-1732" title="17" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/17.jpg" alt="" width="580" height="120" /></a></p>
<h3><a href="http://www.fuelyourcreativity.com">http://www.fuelyourcreativity.com</a></h3>
<p><a href="http://www.fuelyourcreativity.com"><img class="aligncenter size-full wp-image-1733" title="18" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/18.gif" alt="" width="580" height="90" /></a><br />
Now, this one is really nice. You have to try it out by hovering, it makes a really nice effect.</p>
<h3><a href="http://www.clickonf5.org">http://www.clickonf5.org</a></h3>
<p><a href="http://www.clickonf5.org"><img class="aligncenter size-full wp-image-1734" title="19" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/19.jpg" alt="" width="516" height="257" /></a></p>
<h3><a href="http://www.onextrapixel.com">http://www.onextrapixel.com</a></h3>
<p><a href="http://www.onextrapixel.com"><img class="aligncenter size-full wp-image-1735" title="20" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/20.jpg" alt="" width="580" height="236" /></a></p>
<h3><a href="http://www.threestyles.com">http://www.threestyles.com</a></h3>
<p><a href="http://www.threestyles.com"><img class="aligncenter size-full wp-image-1736" title="21" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/21.jpg" alt="" width="578" height="184" /></a></p>
<h3><a href="http://blogof.francescomugnai.com">http://blogof.francescomugnai.com</a></h3>
<p><a href="http://blogof.francescomugnai.com"><img class="aligncenter size-full wp-image-1737" title="22" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/22.jpg" alt="" width="190" height="162" /></a></p>
<h3><a href="http://www.inspiredm.com">http://www.inspiredm.com</a></h3>
<p><a href="http://www.inspiredm.com"><img class="aligncenter size-full wp-image-1738" title="23" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/23.jpg" alt="" width="92" height="423" /></a><br />
Here we have an alternative way of showing the social bookmarking options. It saves space in the blog and it is always accessible.</p>
<h3><a href="http://d-lists.co.uk">http://d-lists.co.uk</a></h3>
<p><a href="http://d-lists.co.uk"><img class="aligncenter size-full wp-image-1739" title="24" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/24.jpg" alt="" width="580" height="149" /></a></p>
<h3><a href="http://www.littleboxofideas.com">http://www.littleboxofideas.com</a></h3>
<p><a href="http://www.littleboxofideas.com"><img class="aligncenter size-full wp-image-1740" title="25" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/25.jpg" alt="" width="500" height="149" /></a><br />
This one is charming, but it also shows the problems many of us face: using different plugins and manual insertions do not let us adapt the style like we would like to.</p>
<h3><a href="http://www.designussion.com">http://www.designussion.com</a></h3>
<p><a href="http://www.designussion.com"><img class="aligncenter size-full wp-image-1741" title="26" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/26.jpg" alt="" width="580" height="90" /></a></p>
<h3><a href="http://www.psdeluxe.com">http://www.psdeluxe.com</a></h3>
<p><a href="http://www.psdeluxe.com"><img class="aligncenter size-full wp-image-1755" title="Screenshot03" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/Screenshot03.jpg" alt="" width="332" height="302" /></a></p>
<h3><a href="http://designmess.com">http://designmess.com</a></h3>
<p><img class="aligncenter size-full wp-image-1743" title="28" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/28.jpg" alt="" width="369" height="149" /><br />
I like the approach of integrating the social bookmarking options as part of the post, like the comment section. It looks clean and it gives the sharing buttons a functional appearance.</p>
<h3><a href="http://www.dezinerfolio.com">http://www.dezinerfolio.com</a></h3>
<p><a href="http://www.dezinerfolio.com"><img class="aligncenter size-full wp-image-1744" title="29" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/29.jpg" alt="" width="319" height="125" /></a><br />
Here we have a really nice and clean sharing &#8220;button&#8221;. When clicked, a sharing box pops out. This is a good example on how to integrate the social bookmarking option elegantly and discretely.</p>
<h3><a href="http://www.tutorial9.net">http://www.tutorial9.net</a></h3>
<p><a href="http://www.tutorial9.net"><img class="aligncenter size-full wp-image-1745" title="30" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/30.jpg" alt="" width="422" height="149" /></a></p>
<h3><a href="http://games.venturebeat.com">http://games.venturebeat.com</a></h3>
<p><a href="http://games.venturebeat.com"><img class="aligncenter size-full wp-image-1746" title="31" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/31.jpg" alt="" width="580" height="104" /></a></p>
<h3><a href="http://www.geeksucks.com">http://www.geeksucks.com</a></h3>
<p><a href="http://www.geeksucks.com"><img class="aligncenter size-full wp-image-1752" title="32" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/32.jpg" alt="" width="565" height="102" /></a></p>
<h3><a href="http://www.webresourcesdepot.com">http://www.webresourcesdepot.com</a></h3>
<p><a href="http://www.webresourcesdepot.com"><img class="aligncenter size-full wp-image-1753" title="33" src="http://tympanus.net/codrops/wp-content/uploads/2010/04/33.jpg" alt="" width="499" height="38" /></a><br />
This one is beautifully integrated under the title of the blog post.</p>
<h3>And that&#8217;s it!</h3>
<p>These were the designs that I found nicely fitting to their blog styles. Although I am not terribly excited about the level of creativity used, I understand why it is so hard to adapt this very crucial part of a post to our design needs.</p>
<p>What do you think? Is it important to bring some attention on the social bookmarking option in a blog? Would you as well like to have some more freedom in adapting the style of sharing buttons? Or do you think it should not be obtrusive in any way? Have you seen some interesting sharing button styles that you would like to add to this list?</p>
<p>I hope you liked it and got inspired!</p>
<p>You might be interested in some sets of social bookmarking icons:<br />
<a href="http://www.wpzoom.com/design/21-sets-of-free-social-bookmarking-icons-for-your-blog/">21 Sets of Free Social Bookmarking Icons for Your Blog</a><br />
<a href="http://www.geeksucks.com/icons/72-sets-of-free-social-bookmarking-icons.htm">72 Sets of Free Social Bookmarking Icons</a><br />
<a href="http://www.bloggodown.com/2009/07/75-beautiful-free-social-bookmarking.html">75 Beautiful Free Social Bookmarking Icon Sets</a><br />
<a href="http://www.webresourcesdepot.com/social-bookmarking-icons-collection/">Social Bookmarking Icons Collection</a><br />
<a href="http://www.rizwanashraf.com/2010/03/27/70-free-social-media-icon-sets/">70 Free Social Media Icon Sets </a><br />
<a href="http://speckyboy.com/2009/01/26/30-amazingly-creative-social-bookmarks-icon-sets/">30 Amazingly Creative Social Bookmarks Icon Sets</a><br />
<a href="http://webtreats.mysitemyway.com/108-free-black-magic-marker-social-bookmarking-icons/">108 Free Black Magic Marker Social Bookmarking Icons</a><br />
<a href="http://www.youthedesigner.com/2010/02/25/40-new-and-trendy-free-social-media-bookmark-icon-sets/">40 New and Trendy Free Social Media Bookmark Icon Sets</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2010/04/06/share-the-love-social-bookmark-designs-in-blogs/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>A Love Letter to the Design Community</title>
		<link>http://tympanus.net/codrops/2010/03/05/a-love-letter-to-the-design-community/</link>
		<comments>http://tympanus.net/codrops/2010/03/05/a-love-letter-to-the-design-community/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:45:27 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=1617</guid>
		<description><![CDATA[Dear Design Community, I don&#8217;t really know if I can consider myself a part of you, but I have the strong urge to tell you how I feel about you. About six month ago, when I first met you, I was completely overwhelmed &#8211; your creativity and beauty struck me and I felt that this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1633" title="loveletter" src="http://tympanus.net/codrops/wp-content/uploads/2010/03/loveletter.png" alt="loveletter" width="580" height="362" /></p>
<p>Dear Design Community,</p>
<p>I don&#8217;t really know if I can consider myself a part of you, but I have the strong urge to tell you how I feel about you.</p>
<p>About six month ago, when I first met you, I was completely overwhelmed &#8211; your <a href="http://tutorialzine.com/2010/01/halftone-navigation-menu-jquery-css/" target="_blank">creativity</a> and <a href="http://blog.zeemp.com/60-beautiful-oriental-style-artworks/" target="_blank">beauty</a> struck me and I felt that this would be the place where I would finally feel at home! Coming from a place where rationality and <a href="http://en.wikipedia.org/wiki/Cognitive_science" target="_blank">the workings of the brain</a> were center of my live, I could ultimately see the holistic functioning of all that inside of you.</p>
<p>After I had spend some cozy moments with you, I began to hear some criticism about you. Some of your members started to impose on you! They claimed that you became shallow and lost your old charm, that your discussions and post were becoming dull. You became greedy, they said, and you transformed into a business oriented capitalist who just wanted to grow to increase profit, no &#8230; I mean traffic.</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<p>Your critics blamed the <a href="http://elitebydesign.com/killing-the-list-post/" target="_blank">list makers</a> and wannabe designers of destroying you and seducing you to become a tool for their foolery. I was shocked at first, but then I started to see their points. I must admit, I became one of the critics. My heart broke that moment because I saw your ugly sides, your repetitive behavior, your boring arguments, your endless lists&#8230;</p>
<p>After I fell into a hole of grief and anger, I decided to give you another chance. I felt that I would just need to look at your beautiful sides and ignore your ugly ones in order to fall in love with you again. So I began to turn to your talented, <a href="http://www.1stwebdesigner.com/development/designers-bloggers-you-should-follow-twitter/" target="_blank">well established members</a>, their fruitful posts and discussions, their <a href="http://www.jankoatwarpspeed.com/post/2010/02/16/redesigning-jankoatwarpspeed.aspx" target="_blank">oh-so in-depth analysis of design processes</a> and <a href="http://line25.com/articles/tips-for-designing-unique-and-attractive-blog-posts" target="_blank">incredible helpful tips on how to get creative.</a></p>
<p>After a while, I got completely confused: where was the so proclaimed value and where were the insightful elaborations on web design and design theory? Where were the unique and different stories and inventions that everybody was hailing so much? Where were the design bloggers that don&#8217;t care about traffic, money and spreading their wisdom instead of just their words (and lists&#8230; and thoughtful comments)? Was your modest and decorous side full of shit after all?</p>
<p>And then it hit me.</p>
<p>I don&#8217;t love you because of your beauty, your intelligence and merit. I don&#8217;t love you because of your fruitful discussions and in-depth analysis of design processes and tips on getting inspired. I don&#8217;t love you because of your <a href="http://www.webdesignerdepot.com/2010/03/how-to-kill-the-design-community/" target="_blank">wit</a>, your arrogance and your pride.</p>
<p>I love you for being a shelter to so many different opinions and strong, creative and passionate minds.</p>
<p>I love you for being a cultural and social tool, a capitalist opportunity and a tool for hearing tiny voices.</p>
<p>I love you for having so many facets and sides, so many wannabes and so many geeks.</p>
<p>I love you for making it difficult to discover the gems, but once they are found, you make them timeless.</p>
<p>I love you for giving me incredible inspiration each single day from all across the globe in so many languages.</p>
<p>I love you unconditionally, design community!</p>
<p>Dive into the community:</p>
<ul>
<li><a href="http://www.webdesignerdepot.com/2010/03/how-to-kill-the-design-community/">How to Kill the Design Community</a></li>
<li><a href="http://designinformer.com/understanding-value-constructive-discussion-design-community/">Understanding the Value of Constructive Discussion in the Design Community</a></li>
<li><a href="http://www.paper-leaf.com/blog/2010/01/on-giving-back-to-the-design-community/">On Giving Back to the Design Community</a></li>
<li><a href="http://elitebydesign.com/killing-the-list-post/">Killing The List Post</a></li>
<li><a href="http://www.catswhoblog.com/should-you-write-list-posts-on-your-blog">Should you write “List posts” on your blog?</a></li>
<li><a href="http://designinformer.com/sparing-thought-readers-design-community/">Some People Actually Read: Sparing a Thought for ‘Readers’ in the Design Community</a></li>
<li><a href="http://www.drawar.com/articles/smashing-magazine-killed-the-community-or-maybe-it-was-me/">Smashing Magazine Killed The Community (Or Maybe It Was Me)</a></li>
<li><a href="http://www.trippingwords.com/index.php/trippingwords/inner/a_bystanders_perspective_on_the_design_community/">A “Bystander’s Perspective” on the Design Community</a></li>
<li><a href="http://www.thisisaaronslife.com/valuing-your-design-community/">Valuing Your Design Community</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2010/03/05/a-love-letter-to-the-design-community/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The &#8220;new&#8221; design of IMDb</title>
		<link>http://tympanus.net/codrops/2009/10/27/the-new-design-of-imdb/</link>
		<comments>http://tympanus.net/codrops/2009/10/27/the-new-design-of-imdb/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:38:44 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[imdb]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=710</guid>
		<description><![CDATA[Some time ago the incredible happened: our beloved movie database site IMDb finally realized that it was not 1996 anymore and dared to hire some designers in order to &#8211; you won&#8217;t believe it &#8211; change the design of the page! When I visited the site the other day, I couldn&#8217;t believe my eyes: a [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago the incredible happened: our beloved movie database site IMDb finally realized that it was not 1996 anymore and dared to hire some designers in order to &#8211; you won&#8217;t believe it &#8211; change the design of the page! When I visited the site the other day, I couldn&#8217;t believe my eyes: a fixed width page layout with a smooth black gradient banner background and an overall cleaner appearance.</p>
<p><span id="more-710"></span></p>
<p>The blue boxes and the blue button link units in the header that formed the upper row of a 3 (!) row navigation have disappeared. In fact, the only blue thing (slightly darker than before) that is left, are the links.</p>
<p>Here is an old screenshot of the site back in 2007:</p>
<p><img class="alignnone size-large wp-image-711" title="imdb_old" src="http://tympanus.net/codrops/wp-content/uploads/2009/10/imdb_old-1024x429.jpg" alt="imdb_old" width="435" height="182" /></p>
<p>And here is the new design:</p>
<p><img class="alignnone size-large wp-image-716" title="imdb_new" src="http://tympanus.net/codrops/wp-content/uploads/2009/10/imdb_new-1024x501.jpg" alt="imdb_new" width="433" height="211" /></p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<p>Nothing was changed dramatically, but the impact of just changing details can be enormous. It is toned down in clutter and it looks more functional, and they  actually gave it a touch of glamor and &#8220;Oscar&#8217;s&#8221; which really fits well.</p>
<p>Unfortunately, they did not change the registration form&#8230; which has a good side to it: I don&#8217;t need to update my previous post on <a href="http://tympanus.net/codrops/2009/09/20/42-famous-login-and-registration-forms/" target="_blank">Famous Login and Registration Forms</a> ;-)</p>
<p>What do you think about the new style?</p>
<p>Enjoy!</p>
<p><!-- wp_ad_camp_1 --></p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2009/10/27/the-new-design-of-imdb/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>42 Famous Login and Registration Forms</title>
		<link>http://tympanus.net/codrops/2009/09/20/42-famous-login-and-registration-forms/</link>
		<comments>http://tympanus.net/codrops/2009/09/20/42-famous-login-and-registration-forms/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 20:45:56 +0000</pubDate>
		<dc:creator>Mary Lou</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[registration]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=519</guid>
		<description><![CDATA[Today, I want to showcase some of the most famous login and registration forms on the web. As a web developer you might be interested in having a compact overview of the different designs of these essential website elements. For your design, what would you do better? Do you think being a top site gives [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I want to showcase some of the most famous login and registration forms on the web. As a web developer you might be interested in having a compact overview of the different designs of these essential website elements.</p>
<p>For your design, what would you do better? Do you think being a top site gives you trend setter status? Or should some sites rather be ashamed of their poor design skills?</p>
<p>Share your opinion and maybe you have some interesting showcases to add?</p>
<p>I hope you enjoy it!</p>
<h2>1. Google</h2>
<p><a href="http://www.google.com" target="_blank">http://www.google.com</a></p>
<p><img class="alignnone size-full wp-image-529" title="Google" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/73.gif" alt="Google" width="312" height="400" /></p>
<p><span id="more-519"></span></p>
<p>Well, Google is Google, so fancy design is never a really big topic. It definitely follows major usability guidelines which is also shown here: <a href="http://www.boxesandarrows.com/view/getting-a-forms98" target="_blank">http://www.boxesandarrows.com/view/getting-a-forms98</a></p>
<h2>2. Facebook</h2>
<p><a href="http://www.facebook.com" target="_blank">http://www.facebook.com</a></p>
<p><img class="alignnone size-full wp-image-527" title="Facebook" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/113.gif" alt="Facebook" width="406" height="400" /></p>
<p>Flawless in functionality, I would say. I don&#8217;t know about the positioning of some elements, like the &#8220;Remember me&#8221; checkbox&#8230;</p>
<div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div>
<h2>3. Youtube</h2>
<p><a href="http://www.youtube.com" target="_blank">http://www.youtube.com</a></p>
<p><img class="alignnone size-full wp-image-530" title="Youtube" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/82.gif" alt="Youtube" width="527" height="360" /></p>
<p>Now, what I don&#8217;t really get, are these changes of style within Google. YouTube belongs to Google and the design of this registration form clearly shows this. But why not use the same style through all the pages?</p>
<h2>4. Twitter</h2>
<p><a href="http://www.twitter.com" target="_blank">http://www.twitter.com</a></p>
<p><img class="alignnone size-full wp-image-528" title="Twitter" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/44.gif" alt="Twitter" width="479" height="500" /></p>
<p>Although Twitter is one of my personal favorites, it could still need some more consistency. Using rounded input boxes in one place, and then plain old inputs in another place, makes it look a little bit inconsitent.</p>
<h2>5. Wikipedia</h2>
<p><a href="http://www.wikipedia.org" target="_blank">http://www.wikipedia.org</a></p>
<p><img class="alignnone size-full wp-image-532" title="Wikipedia" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/152.gif" alt="Wikipedia" width="397" height="400" /></p>
<p>The strong focus on content is also reflected in the design of Wikipedia&#8217;s login and registration form: it is plain and simple.</p>
<h2>6. Windows Live</h2>
<p><a href="http://www.live.com" target="_blank">http://www.live.com</a></p>
<p><img class="alignnone size-full wp-image-531" title="WindowsLive" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/122.gif" alt="WindowsLive" width="540" height="241" /></p>
<p>Again, an example of inconsistent design. Why not use the same kind of buttons and the same sizes for inputs?</p>
<h2>7. MySpace</h2>
<p><a href="http://www.myspace.com" target="_blank">http://www.myspace.com</a></p>
<p><img class="alignnone size-full wp-image-534" title="MySpace" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/192.gif" alt="MySpace" width="464" height="400" /></p>
<p>A clean design, that I would tweak only in the alignment of the labels in the registration&#8230;</p>
<h2>8. WordPress</h2>
<p><a href="http://www.wordpress.com" target="_blank">http://www.wordpress.com</a></p>
<p><img class="alignnone size-full wp-image-525" title="Wordpress" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_20-Sep.-20-14.44.gif" alt="Wordpress" width="540" height="211" /></p>
<p>It might seem, that there is a lot of different styling happening here, but actually it all somehow fits together: the color choices, the sizes and the &#8220;special effects&#8221;.</p>
<h2>9. Ebay</h2>
<p><a href="http://www.ebay.com" target="_blank">http://www.ebay.com</a></p>
<p><img class="alignnone size-full wp-image-536" title="Ebay" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_24-Sep.-20-14.47.gif" alt="Ebay" width="540" height="214" /></p>
<p>Ebay&#8217;s form design is a nice example of optimizing design for usability. Elements are used consistently throughout the site. Here is a really great article on the main changes that happened and why: <a href="http://www.digital-web.com/articles/redesigning_ebay_registration/" target="_blank">http://www.digital-web.com/articles/redesigning_ebay_registration/</a></p>
<h2>10. Amazon</h2>
<p><a href="http://www.amazon.com" target="_blank">http://www.amazon.com</a></p>
<p><img class="alignnone size-full wp-image-537" title="Amazon" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_26-Sep.-20-14.49.gif" alt="Amazon" width="414" height="450" /></p>
<p>A very clean design. What I never liked though, was this &#8220;let&#8217;s spare&#8221; login form that also serves as an entry for a new user to register. I mean, if I want to login, I am a registered user and have a password, right?</p>
<h2>11. AOL</h2>
<p><a href="http://www.aol.com" target="_blank">http://www.aol.com</a></p>
<p><img class="alignnone size-full wp-image-540" title="AOL" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_32-Sep.-20-14.52.gif" alt="AOL" width="540" height="355" /></p>
<p>Sometimes, I feel like, I am back in 1999&#8230; That &#8220;Forgot Password&#8221; seems like the designer went &#8220;oh, damn, I forgot to add Forgot Password to the login&#8221; &#8230;</p>
<h2>12. LinkedIn</h2>
<p><a href="http://www.linkedin.com" target="_blank">http://www.linkedin.com</a></p>
<p><img class="alignnone size-full wp-image-541" title="LinkedIn" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_33-Sep.-20-14.52.gif" alt="LinkedIn" width="450" height="400" /></p>
<p>Functional, clean but definitely not an award winning design.</p>
<h2>13. Yahoo</h2>
<p><a href="http://www.yahoo.com" target="_blank">http://www.yahoo.com</a></p>
<p><img class="alignnone size-full wp-image-539" title="Yahoo" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_29-Sep.-20-14.50.gif" alt="Yahoo" width="540" height="246" /></p>
<p>Old school form but functional and clean.</p>
<h2>14. HI5</h2>
<p><a href="http://hi5.com" target="_blank">http://hi5.com</a></p>
<p><img class="alignnone size-full wp-image-542" title="Hi5" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_35-Sep.-20-14.54.gif" alt="Hi5" width="328" height="400" /></p>
<p>Another example of completely inconsistent design: the colors, the buttons, the framing&#8230;</p>
<h2>15. Craigslist</h2>
<p><a href="http://www.craigslist.com" target="_blank">http://www.craigslist.com</a></p>
<p><img class="alignnone size-full wp-image-538" title="Craigslist" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_28-Sep.-20-14.50.gif" alt="Craigslist" width="517" height="400" /></p>
<p>Very strange (almost styleless) form design, but it somehow fits to Craigslist.</p>
<h2>16. International Movie Database</h2>
<p><a href="http://www.imdb.com" target="_blank">http://www.imdb.com</a></p>
<p><img class="alignnone size-full wp-image-543" title="IMDB" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_38-Sep.-20-14.56.gif" alt="IMDB" width="363" height="400" /></p>
<p>Besides fitting to the 1994 style of the whole page, it really is a disaster! For God&#8217;s sake, get a web designer&#8230;</p>
<h2>17. Photobucket</h2>
<p><a href="http://www.photobucket.com" target="_blank">http://www.photobucket.com</a></p>
<p><img class="alignnone size-full wp-image-544" title="Photobucket" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_40-Sep.-20-14.57.gif" alt="Photobucket" width="400" height="297" /></p>
<p>Not the creme de la creme: colors, sizes, hello?</p>
<h2>18. CNET</h2>
<p><a href="http://www.cnet.com" target="_blank">http://www.cnet.com</a></p>
<p><img class="alignnone size-full wp-image-545" title="CNET" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_42-Sep.-20-15.05.gif" alt="CNET" width="390" height="500" /></p>
<p>This is what I call consistency! A pair that goes along and reflects the overall design of the page.</p>
<h2>19. Adobe</h2>
<p><a href="http://www.adobe.com" target="_blank">http://www.adobe.com</a></p>
<p><img class="alignnone size-full wp-image-546" title="Adobe" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_44-Sep.-20-15.15.gif" alt="Adobe" width="540" height="287" /></p>
<p>Good that most members are indeed returning.  It&#8217;s clean and the user has a good overview&#8230;it&#8217;s Adobe that did Photoshop right? :-O</p>
<h2>20. ESPN</h2>
<p><a href="http://www.espn.com" target="_blank">http://www.espn.com</a></p>
<p><img class="alignnone size-full wp-image-547" title="ESPN" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_46-Sep.-20-15.16.gif" alt="ESPN" width="490" height="450" /></p>
<p>Ok, I know the error messages have to appear somewhere, but is it necessary to have such huge spaces between the inputs? I mean, the spaces are bigger than the inputs! And I really think this combination of &#8220;select with one style&#8221; and &#8220;normal input with another&#8221; doesn&#8217;t go together&#8230; Why not having the same border for all of them?</p>
<h2>21. Skyrock</h2>
<p><a href="http://www.skyrock.com" target="_blank">http://www.skyrock.com</a></p>
<p><img class="alignnone size-full wp-image-548" title="Skyrock" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_48-Sep.-20-15.17.gif" alt="Skyrock" width="553" height="395" /></p>
<p>Nice registration form. Just the login looks like from another site (planet)&#8230;</p>
<h2>22. Tumblr</h2>
<p><a href="http://www.tumblr.com" target="_blank">http://www.tumblr.com</a></p>
<p><img class="alignnone size-full wp-image-549" title="Tumblr" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_49-Sep.-20-15.18.gif" alt="Tumblr" width="540" height="230" /></p>
<p>Now, this is fun: big form, simple input and beautiful design. I just wanna sign up!</p>
<h2>23. LiveJournal</h2>
<p><a href="http://www.livejournal.com" target="_blank">http://www.livejournal.com</a></p>
<p><img class="alignnone size-full wp-image-550" title="LiveJournal" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_52-Sep.-20-15.19.gif" alt="LiveJournal" width="387" height="400" /></p>
<p>Clean, yes. Functional, yes. Ehm, what happened to the password field? Is it always &#8220;shorter&#8221; than the username or is it just another case of &#8220;damn, I knew I forgot something in this from&#8221;&#8230;the LOGIN BUTTON!</p>
<h2>24. deviantART</h2>
<p><a href="http://www.deviantart.com" target="_blank">http://www.deviantart.com</a></p>
<p><img class="alignnone size-full wp-image-551" title="Deviantart" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_54-Sep.-20-15.24.gif" alt="Deviantart" width="531" height="400" /></p>
<p>It&#8217;s a nice set of colors although it could use a little bit more contrast. And if it&#8217;s just allowed to put 20 characters in the input, e.g. for the name, why giving it double the size then? Oh, and by the way, the email can be 255 characters long!</p>
<h2>25. Tagged</h2>
<p><a href="http://www.tagged.com" target="_blank">http://www.tagged.com</a></p>
<p><img class="alignnone size-full wp-image-552" title="Tagged" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_55-Sep.-20-15.26.gif" alt="Tagged" width="411" height="421" /></p>
<p>Pure CSS! But there is a lot more you can do with CSS, you know&#8230;like creating nice shadows on the buttons with borders&#8230;</p>
<h2>26. NETLOG</h2>
<p><a href="http://www.netlog.com" target="_blank">http://www.netlog.com</a></p>
<p><img class="alignnone size-full wp-image-553" title="Netlog" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_57-Sep.-20-15.26.gif" alt="Netlog" width="389" height="422" /></p>
<p>Nice one, but the position of the register buttons seems weird&#8230;</p>
<h2>27. Digg</h2>
<p><a href="http://www.digg.com" target="_blank">http://www.digg.com</a></p>
<p><img class="alignnone size-full wp-image-554" title="Digg" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_59-Sep.-20-15.27.gif" alt="Digg" width="500" height="389" /></p>
<p>I like Digg&#8217;s forms, I really do. But you know guys, at least for Firefox you could give the select the same style like to the input: &#8220;border: 1px solid #ccc&#8221;&#8230; looks sooo much better!</p>
<h2>28. The New York Times</h2>
<p><a href="http://www.nytimes.com" target="_blank">http://www.nytimes.com</a></p>
<p><img class="alignnone size-full wp-image-555" title="NyTimes" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_62-Sep.-20-15.28.gif" alt="NyTimes" width="500" height="537" /></p>
<p>Old fashioned but fitting. But why not adapting the other inputs to the select?</p>
<h2>29. Ning</h2>
<p><a href="http://www.ning.com" target="_blank">http://www.ning.com</a></p>
<p><img class="alignnone size-full wp-image-556" title="Ning" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_63-Sep.-20-15.30.gif" alt="Ning" width="540" height="592" /></p>
<p>Now, I must admit: this is definitely my personal favorite &#8211; almost impecable. Just, you know, Firefox, select, borders&#8230;</p>
<h2>30. Answers</h2>
<p><a href="http://www.answers.com/" target="_blank">http://www.answers.com/</a></p>
<p><img class="alignnone size-full wp-image-557" title="Answers" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_66-Sep.-20-15.30.gif" alt="Answers" width="303" height="400" /></p>
<p>Compact and consistent. Really nice job.</p>
<h2>31. Maktoob</h2>
<p><a href="http://www.maktoob.com" target="_blank">http://www.maktoob.com</a></p>
<p><img class="alignnone size-full wp-image-558" title="Maktoob" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_67-Sep.-20-15.31.gif" alt="Maktoob" width="540" height="315" /></p>
<p>Nice one.</p>
<h2>32. Metacafe</h2>
<p><a href="http://www.metacafe.com" target="_blank">http://www.metacafe.com</a></p>
<p><img class="alignnone size-full wp-image-559" title="Metacafe" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_70-Sep.-20-15.33.gif" alt="Metacafe" width="540" height="212" /></p>
<p>A lot of blue going on here, but it still fits.</p>
<h2>33. Sourceforge</h2>
<p><a href="http://sourceforge.net/" target="_blank">http://sourceforge.net/</a></p>
<p><img class="alignnone size-full wp-image-560" title="Sourceforge" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_73-Sep.-20-15.36.gif" alt="Sourceforge" width="540" height="218" /></p>
<p>Not really consistent and I would suggest using &#8220;display: block&#8221; in the registration, gives a less &#8220;stairs&#8221; like effect&#8230;</p>
<h2>34. eHow</h2>
<p><a href="http://www.ehow.com" target="_blank">http://www.ehow.com</a></p>
<p><img class="alignnone size-full wp-image-561" title="eHow" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_75-Sep.-20-15.48.gif" alt="eHow" width="400" height="494" /></p>
<p>I love this registration form, it&#8217;s beautiful, but the login doesn&#8217;t really look finished. What&#8217;s with that &#8220;SIGN IN&#8221; position?</p>
<h2>35. StumbleUpon</h2>
<p><a href="http://www.stumbleupon.com" target="_blank">http://www.stumbleupon.com</a></p>
<p><img class="alignnone size-full wp-image-564" title="StumbleUpon" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_81-Sep.-20-16.07.gif" alt="StumbleUpon" width="550" height="400" /></p>
<p>I think, it needs some more development.</p>
<h2>36. Reddit</h2>
<p><a href="http://www.reddit.com" target="_blank">http://www.reddit.com</a></p>
<p><img class="alignnone size-full wp-image-565" title="Reddit" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_82-Sep.-20-16.08.gif" alt="Reddit" width="563" height="400" /></p>
<p>Simple and really neat&#8230; fit&#8217;s perfectly.</p>
<h2>37. delicious</h2>
<p><a href="http://www.delicious.com" target="_blank">http://www.delicious.com</a></p>
<p><img class="alignnone size-full wp-image-566" title="delicious" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_85-Sep.-20-16.08.gif" alt="delicious" width="540" height="251" /></p>
<p>Very nice one, too.</p>
<h2>38. Technorati</h2>
<p><a href="http://technorati.com" target="_blank">http://technorati.com</a></p>
<p><img class="alignnone size-full wp-image-567" title="Technorati" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_86-Sep.-20-17.01.gif" alt="Technorati" width="540" height="207" /></p>
<p>Very elaborated and stylish&#8230; but still functional and user friendly.</p>
<h2>39. Habbo</h2>
<p><a href="http://www.habbo.com" target="_blank">http://www.habbo.com</a></p>
<p><img class="alignnone size-full wp-image-568" title="Habbo" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_89-Sep.-20-17.06.gif" alt="Habbo" width="355" height="400" /></p>
<p>Habbo-like!</p>
<h2>40. Friendster</h2>
<p><a href="http://www.friendster.com" target="_blank">http://www.friendster.com</a></p>
<p><img class="alignnone size-full wp-image-569" title="Friendster" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_91-Sep.-20-17.06.gif" alt="Friendster" width="364" height="400" /></p>
<p>So, &#8220;Keep me logged in&#8221; is like what? Compulsory? Ah no, after all it&#8217;s not recommended for shared computers&#8230; But a nice registration form.</p>
<h2>41. Flixter</h2>
<p><a href="http://www.flixter.com" target="_blank">http://www.flixter.com</a></p>
<p><img class="alignnone size-full wp-image-570" title="Flixter" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_93-Sep.-20-17.08.gif" alt="Flixter" width="540" height="309" /></p>
<p>Clean and consistent. But 8 captcha letters? Come on!</p>
<h2>42. Paypal</h2>
<p><a href="http://www.paypal.com" target="_blank">http://www.paypal.com</a></p>
<p><img class="alignnone size-full wp-image-571" title="Paypal" src="http://tympanus.net/codrops/wp-content/uploads/2009/09/ScreenHunter_94-Sep.-20-17.13.gif" alt="Paypal" width="506" height="400" /></p>
<p>Not really a nice login. What&#8217;s with that &#8220;I am a tube&#8221; background anyway?</p>
<hr />Ok, enough from me, now it&#8217;s your turn!</p>
<p>Enjoy!</p>
<p><!-- wp_ad_camp_1 --></p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2009/09/20/42-famous-login-and-registration-forms/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/tag/design/feed/ ) in 0.31932 seconds, on Feb 7th, 2012 at 12:17 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 1:17 pm UTC -->
