<?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>CreativityDen &#187; Web Design</title> <atom:link href="http://blog.creativityden.com/category/web-design/feed/" rel="self" type="application/rss+xml" /><link>http://blog.creativityden.com</link> <description>creative crazy!</description> <lastBuildDate>Tue, 01 Jun 2010 10:58:26 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>The hidden power of border-radius</title><link>http://blog.creativityden.com/the-hidden-power-of-border-radius-2/</link> <comments>http://blog.creativityden.com/the-hidden-power-of-border-radius-2/#comments</comments> <pubDate>Wed, 03 Feb 2010 21:39:10 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[border]]></category> <category><![CDATA[border-radius]]></category> <category><![CDATA[circle]]></category> <category><![CDATA[circles]]></category> <category><![CDATA[css]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[curve]]></category> <category><![CDATA[radius]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3266</guid> <description><![CDATA[Circles and Curvy Shapes with CSS3 So hopefully after reading &#8211; Understanding CSS – Padding, Positioning and CSS3 &#8211; you understand the basics of CSS and have been experimenting with other properties. It is important to remember that some properties will allow you to achieve effects that aren&#8217;t necessarily stated. In this post we will [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/venn-150x150.jpg" alt="" title="venn" width="150" height="150" class="alignnone size-thumbnail wp-image-3285" /></div><div
class="description"><strong>Circles and Curvy Shapes with CSS3</strong></p><p>So hopefully after reading &#8211; <a
href="http://blog.creativityden.com/understanding-css-padding-positioning-and-css3/">Understanding CSS – Padding, Positioning and CSS3</a> &#8211; you understand the basics of CSS and have been experimenting with other properties. It is important to remember that some properties will allow you to achieve effects that aren&#8217;t necessarily stated. In this post we will explore the property border-radius and how it can be used to create circles, semi-cricles and quarter-circles. It also has the potential to produce some terrific designs using just CSS &#8211; no images.</p></div></div><p><span
id="more-3266"></span></p><h3>The property</h3><pre class="brush: css;">
.round
{
    border-radius: 5px; /* all corners have a radius of 5px */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;

    border-radius: 5px 4px 3px 2px; /* corner values go clockwise so, first value is the top left, second, the top right, third, bottom right and fourth, bottom left */
}
</pre><p>Jean of <a
href="http://www.catswhocode.com/">Cats Who Code</a> recently wrote an <a
href="http://www.catswhocode.com/blog/10-ways-to-make-internet-explorer-act-like-a-modern-browser">excellent article which included ways to achieve rounded corners in IE</a>.</p><h3>Circles</h3><h4>A filled circle</h4><p>To render a circle using the border-radius property, simply set the border-radius value to half the width/height. Both width and height should be the same.</p><div
id="attachment_3270" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/circle.jpg" alt="" title="circle" width="300" height="300" class="size-full wp-image-3270" /><p
class="wp-caption-text">A beautifully rendered circle.</p></div><pre class="brush: css;">
#circle
{
		width: 200px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 100px;
}
</pre><h4>A bordered circle</h4><div
id="attachment_3272" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/circleborder.jpg" alt="" title="circleborder" width="300" height="300" class="size-full wp-image-3272" /><p
class="wp-caption-text">An unfilled circle with border</p></div><pre class="brush: css;">
#circle
{
		width: 200px;
		height: 200px;
		background-color: #efefef; /* Can be set to transparent */
      	border: 3px #a72525 solid;
		-webkit-border-radius: 100px;
}
</pre><p>Due to the way border-radius doesn&#8217;t curve the filled area as well, values for border thickness work well up to 4-5px depending on the size of the circle.</p><h4>Examples of circles with different borders</h4><div
id="attachment_3275" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/circledash.jpg" alt="" title="circledash" width="300" height="300" class="size-full wp-image-3275" /><p
class="wp-caption-text">An unfilled circle with a dashed border</p></div><pre class="brush: css;">
#circle
{
		width: 200px;
		height: 200px;
		background-color: #efefef; /* Can be set to transparent */
      	border: 3px #a72525 dashed;
		-webkit-border-radius: 100px 100px 100px 100px;
}
</pre><h3>Semi Circles and Quarter Circles</h3><h4>Semi-circle</h4><p>To create a semi circle, the width value most be half of the height value. The radius border for the top left and bottom left or top right and bottom right then have to have a value greater than that of the width. A semi-circle of the top and bottom section work much in the same way but with the height being half of the width and with the bottom right and bottom left or the top right and top left have values greater than the height</p><div
id="attachment_3277" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/semicircle.jpg" alt="" title="semicircle" width="300" height="300" class="size-full wp-image-3277" /><p
class="wp-caption-text">Look! A semi-circle</p></div><pre class="brush: css;">
#semicircle
{
		width: 100px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 200px 0 0 200px;
}
</pre><h4>Quarter circle</h4><p>Very simple to achieve, just set a corner value to the same value as the width/height.<br
/><div
id="attachment_3278" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/quartercircle.jpg" alt="" title="quartercircle" width="300" height="300" class="size-full wp-image-3278" /><p
class="wp-caption-text">A quarter circle.</p></div></p><pre class="brush: css;">
#quartercircle
{
		width: 200px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 200px 0 0 0;
}
</pre><h4>With different borders</h4><div
id="attachment_3280" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/semiquarter.jpg" alt="" title="semiquarter" width="550" height="300" class="size-full wp-image-3280" /><p
class="wp-caption-text">Same border techniques can be used.</p></div><h3>Overlapping</h3><p>By overlapping two circles you can create some interesting shapes. When overlapping make sure the shape on top has the same colour as the body background colour. You also need to use the position and z-index property to position one circle above the other. Z-index simply relates to layers. An element with a z-index of 1 will overlap an element with a z-index of 0 so long as they are positioned on top of each other.</p><div
id="attachment_3282" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/curvy.jpg" alt="" title="curvy" width="300" height="300" class="size-full wp-image-3282" /><p
class="wp-caption-text">Produce a wonderful arch effect</p></div><pre class="brush: css;">
	#wrapper
	{
		width: 1000px;
		margin: auto;
		position: relative;
	}
	#circle
	{
		position: absolute;
		top: 100px;
		left: 0;
		z-index: 0;
		width: 200px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 100px;
	}

	#circle1
	{
		position: absolute;
		top: 105px;
		left: 5px;
		z-index: 1;
		width: 200px;
		height: 200px;
		background-color: #efefef;
		-webkit-border-radius: 100px;
	}
</pre><h3>Have some fun</h3><p>These are just a couple effects that I managed to achieve. I am sure you could produce some exceptional art using these techniques. Why not give it a try? <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><h4>Moon</h4><div
id="attachment_3283" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/moon.jpg" alt="" title="moon" width="300" height="300" class="size-full wp-image-3283" /><p
class="wp-caption-text">A nice little crescent moon</p></div><h4>Colour venn diagram</h4><div
id="attachment_3285" class="wp-caption aligncenter" style="width: 361px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/venn.jpg" alt="" title="venn" width="351" height="351" class="size-full wp-image-3285" /><p
class="wp-caption-text">A Venn Diagram</p></div> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/the-hidden-power-of-border-radius-2/feed/</wfw:commentRss> <slash:comments>107</slash:comments> </item> <item><title>Web designs with exceptional forms of navigation</title><link>http://blog.creativityden.com/web-designs-with-exceptional-navigation/</link> <comments>http://blog.creativityden.com/web-designs-with-exceptional-navigation/#comments</comments> <pubDate>Thu, 28 Jan 2010 17:03:33 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[creative]]></category> <category><![CDATA[different]]></category> <category><![CDATA[horizontal]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[vertical]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3148</guid> <description><![CDATA[Beautiful browsing. There are a number of showcases demonstrating creative navigation throughout the design community. Despite this, the majority of them just showcase nicely designed horizontal and and vertical menus. Of course, they were probably creative at some stage. However, some web designers test the laws of usability and like to experiment with design. Today, [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/wonderwall-150x150.jpg" alt="" title="wonderwall" width="150" height="150" class="alignnone size-thumbnail wp-image-3190" /></div><div
class="description"> <strong>Beautiful browsing.</strong><p>There are a number of showcases demonstrating creative navigation throughout the design community. Despite this, the majority of them just showcase nicely designed horizontal and and vertical menus. Of course, they were probably creative at some stage. However, some web designers test the laws of usability and like to experiment with design. Today, I have showcased over twenty stunning forms of navigation in website design. I hope these websites inspire you to forget all forms of current navigation and to design new, better and improved ways of navigating websites.</p></div></div><p><span
id="more-3148"></span></p><h3>65 Media</h3><p>65 Media are group of passionate individuals that produce fantastics experiences. They have creativity running through their vains, just take a look at their fantastic homepage:<br
/><div
id="attachment_3152" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.65media.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/65media.jpg" alt="" title="65media" width="550" height="300" class="size-full wp-image-3152" /></a><p
class="wp-caption-text">65 Media</p></div></p><hr/><h3>Carefully Considered</h3><p>There are a few websites out there that use a horizontal layout, Carefully Considered is one of them. However, I like how they have made browsing effortless, just click to the right to view the next project and double click to read about the project.<br
/><div
id="attachment_3153" class="wp-caption aligncenter" style="width: 560px"><a
href="http://carefullyconsidered.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/carefullyconsidered.jpg" alt="" title="carefullyconsidered" width="550" height="300" class="size-full wp-image-3153" /></a><p
class="wp-caption-text">Carefully Considered</p></div></p><hr/><h3>Fauborg</h3><p>A great website that allows you to browse both horizontally and vertically smoothly by dragging and dropping.<br
/><div
id="attachment_3155" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.faub.org/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/faub.jpg" alt="" title="faub" width="550" height="300" class="size-full wp-image-3155" /></a><p
class="wp-caption-text">Fauborg</p></div></p><hr/><h3>Gritti Rollo</h3><p>Gritti Rollo has demonstrated how simplicity can be perfect navigation. Along side some beautiful hover effects and revealing areas with jQuery, Griiti Rollo has produced a fantastic and inspiring website.<br
/><div
id="attachment_3157" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.grittirollo.it/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/gritti.jpg" alt="" title="gritti" width="550" height="300" class="size-full wp-image-3157" /></a><p
class="wp-caption-text">Gritti Rollo</p></div></p><hr/><h3>Daniel R Leyva</h3><p>Daniel is someone who clearly has lot of creativity. He has mastered the parallax effect supplied by the jQuery library and created a 3D environment in which to browse the content. I feel with a background image containing a little perspective would work wonders with this design.<br
/><div
id="attachment_3160" class="wp-caption aligncenter" style="width: 560px"><a
href="http://danielleyva.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/daniel.jpg" alt="" title="daniel" width="550" height="300" class="size-full wp-image-3160" /></a><p
class="wp-caption-text">Daniel R Leyva</p></div></p><hr/><h3>Organic Grid</h3><p>Organic Grid have taken a similar approach to 65 Media (vica versa), a simple vertical menu with a gradient of backgrounds. With some beautiful sounds complimenting the mouse over and beautiful transitions throughout the website, it is a joy to browse.<br
/><div
id="attachment_3161" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.organicgrid.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/organic.jpg" alt="" title="organic" width="550" height="300" class="size-full wp-image-3161" /></a><p
class="wp-caption-text">Organic Grid</p></div></p><hr/><h3>Khai Liew</h3><p>Khai Liew has gone for the horizontal but vertical approach. Although it can be hard to read the menu item names without tilting your head slightly, the design alongside beautiful transitions is incredibly unique.<br
/><div
id="attachment_3162" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.khailiewdesign.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/khai.jpg" alt="" title="khai" width="550" height="300" class="size-full wp-image-3162" /></a><p
class="wp-caption-text">Khai Liew</p></div></p><hr/><h3>Young</h3><p>When looking at Young for the first time, you predict that it scrolls horizontal, however with no horizontal scrollbar appearing, you begin to question yourself. However, once hovering over work you notice the black bar thicken; indicating that it is a scroll bar, very stylish.<br
/><div
id="attachment_3163" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.weareyoung.co.uk/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/young.jpg" alt="" title="young" width="550" height="300" class="size-full wp-image-3163" /></a><p
class="wp-caption-text">Young</p></div></p><hr/><h3>Hello Goodlooking</h3><p>There are very few websites that try something totally different. Hello Goodlooking is one of the few. Navigation is based around a mind map design. Menu items are clicked to reveal new items and content. A stunning example of creativity using Flash.<br
/><div
id="attachment_3165" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.hellogoodlooking.fi/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/hellogoodlooking.jpg" alt="" title="hellogoodlooking" width="550" height="300" class="size-full wp-image-3165" /></a><p
class="wp-caption-text">Hello Goodlooking</p></div></p><hr/><h3>WallSwaps</h3><p>Wallswaps is a great idea procured by Erskine Design. It is a virtual cork board where companies and designers can add their work, business cards and a lot more. A beautiful idea with some exceptional navigation.<br
/><div
id="attachment_3166" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.wallswaps.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/wallswaps.jpg" alt="" title="wallswaps" width="550" height="300" class="size-full wp-image-3166" /></a><p
class="wp-caption-text">WallSwaps</p></div></p><hr/><h3>Screen Vader</h3><p>Now this site is a must see! I am yet to see any other site demonstrating such enormous creativity.<br
/><div
id="attachment_3168" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.screenvader.com/root.html"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/screenvader.jpg" alt="" title="screenvader" width="550" height="300" class="size-full wp-image-3168" /></a><p
class="wp-caption-text">Screen Vader</p></div></p><hr/><h3>IAAH</h3><p>Another click and drag site, but unlike its counterparts it is incredibly smooth. It is a joy to navigate and I am sure you will spend just as long as I did browsing the site.<br
/><div
id="attachment_3169" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.iamalwayshungry.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/IAAH.jpg" alt="" title="IAAH" width="550" height="300" class="size-full wp-image-3169" /></a><p
class="wp-caption-text">IAAH</p></div></p><hr/><h3>Daffy&#8217;s</h3><p>Daffy&#8217;s take a look at traditional navigation techniques and just pushes them aside. Mouse over each menu item to reveal a a description and entirely different background image.<br
/><div
id="attachment_3170" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.daffys.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/daffys.jpg" alt="" title="daffys" width="550" height="300" class="size-full wp-image-3170" /></a><p
class="wp-caption-text">Daffy's</p></div></p><hr/><h3>Frost Design</h3><p>Frost Design have developed and smooth coverflow type navigation to display their work. Incredibly smooth and incredibly effective.<br
/><div
id="attachment_3171" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.frostdesign.com.au/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/frost.jpg" alt="" title="frost" width="550" height="300" class="size-full wp-image-3171" /></a><p
class="wp-caption-text">Frost Design</p></div></p><hr/><h3>All about Photography</h3><p>Another click and drag website, however this site use the google maps navigation methods to browse the website. Unsure how they implemented this so hats off!<br
/><div
id="attachment_3172" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.allaboutphotography.co.uk/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/henriette.jpg" alt="" title="henriette" width="550" height="300" class="size-full wp-image-3172" /></a><p
class="wp-caption-text">Henriette Primus</p></div></p><hr/><h3>Joshua Distler</h3><p>Josh takes a different approach to typical web design. Based around a grid, the main homepage is made up entirely of navigation withe each menu item taking up a different amount of blocks. Not sure what determines how many blocks an item takes up but nonetheless a very creative design.<br
/><div
id="attachment_3174" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.joshuadistler.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/joshua.jpg" alt="" title="joshua" width="550" height="300" class="size-full wp-image-3174" /></a><p
class="wp-caption-text">Joshua Distler</p></div></p><hr/><h3>Design is Kinky Studio</h3><p>A website that allows the user to browse both horizontally and vertically, by hovering the cursor over the arrows positioned at the edges of the screen. Also allows you to zoom in and out.<br
/><div
id="attachment_3175" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.dikstudio.net/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/kinky.jpg" alt="" title="kinky" width="550" height="300" class="size-full wp-image-3175" /></a><p
class="wp-caption-text">Design is Kinky Studio</p></div></p><hr/><h3>BBH</h3><p>Flash just blows my mind sometimes. The BBH homepage features a rotating world in which to navigate. One can position the mouse around the screen to determine which way the world rotates or one can click the world and drag yourself around its surface. What&#8217;s more impressive is the exquisite transitions throughout the website.<br
/><div
id="attachment_3176" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.bartleboglehegarty.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/bbh.jpg" alt="" title="bbh" width="550" height="300" class="size-full wp-image-3176" /></a><p
class="wp-caption-text">BBH</p></div></p><hr/><h3>Fons Hickmann m23</h3><p>Not just a standard jQuery scrollto website. Fons Hickman m23 has a lot of creative nooks and crannies to seek out.<br
/><div
id="attachment_3177" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.fonshickmann.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/fons.jpg" alt="" title="fons" width="550" height="300" class="size-full wp-image-3177" /></a><p
class="wp-caption-text">Fons Hickmann m23</p></div></p><hr/><h3>Margaret London</h3><p>Beautiful navigation and transitions.<br
/><div
id="attachment_3178" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.margaretlondon.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/margaret.jpg" alt="" title="margaret" width="550" height="300" class="size-full wp-image-3178" /></a><p
class="wp-caption-text">Margaret London</p></div></p><hr/><h3>Thibaud</h3><p>Probably the most creative navigation I have ever seen. How was this achieved? By finding inspiration from objects and the environment around. Get outside once in a while, don&#8217;t let the CSS galleries plague your mind.<br
/><div
id="attachment_3179" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.thibaud.be/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/thibaud.jpg" alt="" title="thibaud" width="550" height="300" class="size-full wp-image-3179" /></a><p
class="wp-caption-text">Thibaud</p></div></p><hr/><h3>Nick Jones</h3><p>Nick demonstrates how a vertical menu can be both appealign and fun to browse through.<br
/><div
id="attachment_3180" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.narrowdesign.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/nick.jpg" alt="" title="nick" width="550" height="300" class="size-full wp-image-3180" /></a><p
class="wp-caption-text">Nick Jones</p></div></p><hr/><h3>Established</h3><p>What seems to be just a large vertical menu, actually contains the content as well. Click on the arrow to the right of each menu item to have the content smootlhy scroll in.<br
/><div
id="attachment_3181" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.establishednyc.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/established.jpg" alt="" title="established" width="550" height="300" class="size-full wp-image-3181" /></a><p
class="wp-caption-text">Established</p></div></p><hr/><h3>24 ways</h3><p>Athough 24 ways is comprised of just horizontal and vertical menus, it is the way they have been made that demonstrates creativity. With full height and translucent backgrounds the end result is very appealing.<br
/><div
id="attachment_3182" class="wp-caption aligncenter" style="width: 560px"><a
href="http://24ways.org/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/24ways.jpg" alt="" title="24ways" width="550" height="300" class="size-full wp-image-3182" /></a><p
class="wp-caption-text">24 ways</p></div></p><hr/><h3>Christopher Hewitt</h3><p>The simplest navigation you will probably see. Chris shows how effective a simple list can be. Check out the gorgeous filtering as well.<br
/><div
id="attachment_3183" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.christopherhewitt.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/chris.jpg" alt="" title="chris" width="550" height="300" class="size-full wp-image-3183" /></a><p
class="wp-caption-text">Christopher Hewitt</p></div></p><hr/><h3>Alp Tugan</h3><p>Similar to Hello Goodlooking, Alp Tugan&#8217;s navigation is based around mind map design.<br
/><div
id="attachment_3188" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.alptugan.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/alp.jpg" alt="" title="alp" width="550" height="300" class="size-full wp-image-3188" /></a><p
class="wp-caption-text">Alp Tugan</p></div></p><hr/><h3>Zachary Pulman</h3><p>Zachary has designed and developed a masterpiece. I&#8217;m sure you will have as much funs navigating through his website than I did.<br
/><div
id="attachment_3189" class="wp-caption aligncenter" style="width: 560px"><a
href="http://zacharypulman.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/zach.jpg" alt="" title="zach" width="550" height="300" class="size-full wp-image-3189" /></a><p
class="wp-caption-text">Zachary Pulman</p></div></p><hr/><h3>Wonderwall</h3><p>Probably not the most practical navigation, but still damn impressive!<br
/><div
id="attachment_3190" class="wp-caption aligncenter" style="width: 560px"><a
href="http://wonder-wall.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/wonderwall.jpg" alt="" title="wonderwall" width="550" height="300" class="size-full wp-image-3190" /></a><p
class="wp-caption-text">Wonderwall</p></div></p><hr/><h3>Be creative</h3><p>Easier said than done, no? If you find it tricky to &#8216;think outside the box&#8217; don&#8217;t revisit the same CSS galleries over and over, they will only prevent your creativity from developing, instead they will lead you to copy. Many of the web designers above have taken notice of their environment and the objects that it consists of. They have determined what feels natural and have developed them suitable for web design.</p><hr/><p>What is your favourite form of navigation from the list above?</p><p>What inspires you? How do you find inspiration?</p><hr/><p>I look forward to your comments.</p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/web-designs-with-exceptional-navigation/feed/</wfw:commentRss> <slash:comments>26</slash:comments> </item> <item><title>Contact form or mailto link?</title><link>http://blog.creativityden.com/contact-form-or-mailto-link/</link> <comments>http://blog.creativityden.com/contact-form-or-mailto-link/#comments</comments> <pubDate>Wed, 13 Jan 2010 13:53:57 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Articles]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[client]]></category> <category><![CDATA[contact]]></category> <category><![CDATA[contact form]]></category> <category><![CDATA[form]]></category> <category><![CDATA[link]]></category> <category><![CDATA[mail]]></category> <category><![CDATA[mailto]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=2965</guid> <description><![CDATA[Contact Form FTW Whilst visiting various websites it has come to my attention that only about half use contact forms. The websites that don&#8217;t instead supply a mailto link which then opens an email client. Why do some websites choose to use a mailto link rather than a contact form? Is it because they&#8217;re too [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"> <img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/forms.jpg" alt="" title="forms" width="150" height="150" class="alignnone size-full wp-image-3046" /></div><div
class="description"><strong>Contact Form FTW</strong></p><p>Whilst visiting various websites it has come to my attention that only about half use contact forms. The websites that don&#8217;t instead supply a mailto link which then opens an email client. Why do some websites choose to use a mailto link rather than a contact form? Is it because they&#8217;re too lazy to design and code a contact form or is it because they feel contact forms are unnecessary when you have well developed and easy to use email clients such as gmail. I am sure there are various reasons to why websites choose to display a contact form or supply an email address, but in this article I will be telling you why contact forms are the way to go.</p></div></div><p><span
id="more-2965"></span></p><h3>Email can be a bit boring</h3><p>Everyday we log onto the same client to see what emails we have received over night, for some, it is exciting to see what news and discoveries await. However, for the majority, checking you email can be a chore. A chore that we like to procrastinate over and try to ignore as much as possible. When supplying a mailto link, you are simple directing your potential client to where he would least likely to go, his email cave. Where his idea of a new awesome website that he would like you to design is shrouded with normal life of day to day emails.</p><div
id="attachment_3021" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/email.jpg" alt="" title="email" width="550" height="200" class="size-full wp-image-3021" /><p
class="wp-caption-text">Ugh more emails...</p></div><p>I have only suggested that many people do not like to check their email due from the various negative tweets I have come across. I would definitely say responding to emails can be a chore however, I don&#8217;t think it would have a huge affect on a potential client. That said, I believe a beautifully designed and built contact form would be much better to include than a simple mailto link.</p><h3>Use a contact form</h3><p>I would therefore recommend using a contact form. When the potential client has finished browsing your work and is thinking about contacting you, first of all the size of the contact form is more likely to catch the client&#8217;s eye than small link to your email. Furthermore, a lot of people continue to talk about how making a good first impression is essential. In my eyes the last impression should be just as important as the first. When the client comes to the end of his/her browsing and is considering whether you are the &#8216;one&#8217;, by putting a large contact form in front of them instead of a tiny link. You may find yourself receiving a few more extra clients every so often. However, this is only if the contact form is perfect(-ish)!</p><h3>Important things to note</h3><p>To create the perfect contact form, various objectives must be achieved. Perfect alignment. A good color palette. Correct Size for input boxes and uniqueness and creativity.</p><div
id="attachment_3022" class="wp-caption alignleft" style="width: 160px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/align.jpg" alt="" title="align" width="150" height="150" class="size-full wp-image-3022" /><p
class="wp-caption-text">Alignment is crucial!</p></div><h4>Alignment</h4><p>With the number of input boxes used in contact forms, it is essential that they are each one is aligned. Unless of course you have created a creative layout which leads me onto a topic which I hope to discuss soon, Creativity versus Usability.</p><div
style="clear:both;"></div><hr/><div
id="attachment_3025" class="wp-caption alignright" style="width: 160px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/size.jpg" alt="" title="size" width="150" height="150" class="size-full wp-image-3025" /><p
class="wp-caption-text">Size is very important.</p></div><h4>Size</h4><p>When it comes to size I don&#8217;t understand why some websites have a tiny message box, sometimes the height can be the same as the name and email boxes above?!. A message box should be at least ten times the size, it is the most important part of any contact form. The reader should be free to write as much as they want without feeling cramped. Of course, some browsers allow you to expand the text area yourself, but why put the reader through the effort? Why make them expand a text box that will potentially break you site?</p><div
style="clear:both;"></div><hr/><div
id="attachment_3026" class="wp-caption alignleft" style="width: 160px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/color.jpg" alt="" title="color" width="150" height="150" class="size-full wp-image-3026" /><p
class="wp-caption-text">Use contrasting colors.</p></div><h4>Color</h4><p>As always, color plays an important role. It is important to make sure that the contrasting colors are used for the background of the input boxes and color of the text. So the reader does not experience any strain.</p><div
style="clear:both;"></div><hr/><div
id="attachment_3027" class="wp-caption alignright" style="width: 160px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/idea.jpg" alt="" title="idea" width="150" height="150" class="size-full wp-image-3027" /><p
class="wp-caption-text">Use your imagination.</p></div><h4>Uniqueness, Creativity</h4><p>When using your form, there has to be something that stands out, something that provides a little flair. A typical contact form will have each input box below the other, with a submit button at the bottom. Maybe try to experiment with different layouts, positioning input boxes, labels and submit buttons in different locations. I have endless ideas when it comes to this sort of stuff, if you need any help just leave a comment.</p><div
style="clear:both;"></div><h3>Analyzing great contact forms</h3><p>There are probably a number of &#8216;awesome&#8217; contact forms out there (if you find any please leave a comment), but I have only taken two and explained why they almost perfect.</p><h4>Vuu Media</h4><div
id="attachment_2997" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.vuu.com.au/contact/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/vuu.jpg" alt="" title="vuu" width="550" height="300" class="size-full wp-image-2997" /></a><p
class="wp-caption-text">Vuu Media</p></div><p><strong>Alignment</strong> &#8211; As you can see with Vuu Media&#8217;s contact form all elements are perfectly aligned. Padding and margins stay consistent through out and overall the layout and structure gives a nice flow to the form.</p><hr/><p><strong>Size</strong> &#8211; Input boxes for names, email and telephone are correctly sized. The subject input box and and message text area are also perfectly sized. Throughout the form, the reader has enough space to fill in the labelled inputs. The size of the message box also allows the reader to write a decent amount of text before it is filled up.</p><hr/><p><strong>Color</strong> &#8211; Labels are well defined. Strong text for defining different areas of the form, light blue text to inform the reader of the required inputs and a nice darkish gray for the standard input box labels. The background color of each input box also has a nice mouse over color also. I like this, however I believe the light gradient is easier to type on then the blue background.</p><hr/><p><strong>Uniqueness, Creativity</strong> &#8211; I like the way has David has added depth to his input boxes. The contrasting top and bottom borders combined with an inner shadow gives a perfect recessed look. I also like how he has added some extra information to the right. However, it would be nice to see David adapt his design slightly so that the message text area can be expanded (using the integrated browser function) whilst still retaining the design. The submit button is also great but I feel it deserves an active state.</p><h4>Sam Brown</h4><div
id="attachment_2998" class="wp-caption aligncenter" style="width: 560px"><a
href="http://sam.brown.tc/contact"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/sambrown.jpg" alt="" title="sambrown" width="550" height="300" class="size-full wp-image-2998" /></a><p
class="wp-caption-text">Sam Brown</p></div><p><strong>Alignment</strong> &#8211; As mentioned above, alignment can be ignored if the design has a creative layout. Sam brown has managed to align all but two input boxes but this is only because of the two full stops/periods he has used.</p><hr/><p><strong>Size</strong> &#8211; Absolutely perfect</p><hr/><p><strong>Color</strong> &#8211; Transparency works very well. However, I do feel the text color could be little brighter.</p><hr/><p><strong>Uniqueness, Creativity</strong> &#8211; I have never stumbled upon a contact form such as this. Sam has done an excellent job with the design and has also produced a unique template type contact form where you just fill in the gaps.</p><h4>Other great contact forms for your inspiration</h4><p>Icondock&#8217;s contact form is perfect. It may not be creative or unique but it&#8217;s what everybody should learn from and build on:<br
/><div
id="attachment_3040" class="wp-caption aligncenter" style="width: 514px"><a
href="http://icondock.com/contact"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/icondock.jpg" alt="" title="icondock" width="504" height="412" class="size-full wp-image-3040" /></a><p
class="wp-caption-text">Icondock</p></div><br
/><div
id="attachment_3013" class="wp-caption aligncenter" style="width: 560px"><a
href="http://grooveshark.com/contact"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/groovershark.jpg" alt="" title="groovershark" width="550" height="300" class="size-full wp-image-3013" /></a><p
class="wp-caption-text">Grooveshark</p></div><br
/><div
id="attachment_3014" class="wp-caption aligncenter" style="width: 560px"><a
href="http://giraffe.net/contact"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/giraffe.jpg" alt="" title="giraffe" width="550" height="528" class="size-full wp-image-3014" /></a><p
class="wp-caption-text">Giraffe</p></div><br
/><div
id="attachment_3037" class="wp-caption aligncenter" style="width: 535px"><a
href="http://www.tvidesign.co.uk/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/tvi.jpg" alt="" title="tvi" width="525" height="262" class="size-full wp-image-3037" /></a><p
class="wp-caption-text">TVI Design</p></div><br
/><div
id="attachment_3041" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.fubiz.net/contact/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/fubiz.jpg" alt="" title="fubiz" width="550" height="492" class="size-full wp-image-3041" /></a><p
class="wp-caption-text">Fubiz</p></div><br
/><div
id="attachment_3042" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.ormanclark.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/orman.jpg" alt="" title="orman" width="550" height="430" class="size-full wp-image-3042" /></a><p
class="wp-caption-text">Orman Clark</p></div></p><h3>Summary</h3><p>Mailto links aren&#8217;t necessarily bad, but they don&#8217;t show off any of your creative flair. Like sidebars I do feel like contact forms are neglected. I have found numerous websites with bad contact forms, and concluded that only around 10% turn out to be good. (Even CreativityDen&#8217;s is rubbish :/ ). It would be nice if we could all take a little more time when it comes to our contact forms and forms in general. Forms may be the only interaction you website has, so it is essential that a good user experience is achieved.</p><h3>A few questions</h3><p>What are your views on contact forms and mailto links?</p><hr/><p>Where do you think the submit button should be positioned, on the right or left?</p><hr/><p>Do you think the size of the message box should be larger in width and hight than input boxes for name and email?</p><hr/><p>Can you think of any alternative ways? (<em>I just thought, perhaps you could allow people to leave audio or even video messages</em>?)</p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/contact-form-or-mailto-link/feed/</wfw:commentRss> <slash:comments>31</slash:comments> </item> <item><title>The six fundamental ways of adding depth to your designs</title><link>http://blog.creativityden.com/the-six-fundamental-ways-of-adding-depth-to-your-designs/</link> <comments>http://blog.creativityden.com/the-six-fundamental-ways-of-adding-depth-to-your-designs/#comments</comments> <pubDate>Wed, 06 Jan 2010 12:00:16 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Articles]]></category> <category><![CDATA[Featured]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[color]]></category> <category><![CDATA[depth]]></category> <category><![CDATA[design]]></category> <category><![CDATA[drop]]></category> <category><![CDATA[inner]]></category> <category><![CDATA[perspective]]></category> <category><![CDATA[placement]]></category> <category><![CDATA[shadows]]></category> <category><![CDATA[size]]></category> <category><![CDATA[web]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=2731</guid> <description><![CDATA[“It is not length of life, but depth of life.” &#8211; Ralph Waldo Emerson The typical web design, you will notice, has advanced a considerable amount since the days of the animated and somewhat awfully designed geocities websites. With the improvements in the markup languages HTML and CSS and the incredible graphic software now available, [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"> <img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/thumb8.jpg" alt="" title="thumb" width="150" height="150" class="alignnone size-full wp-image-2874" /></div><div
class="description"><strong>“It is not length of life, but depth of life.” &#8211; Ralph Waldo Emerson</strong></p><p>The typical web design, you will notice, has advanced a considerable amount since the days of the animated and somewhat awfully designed geocities websites. With the improvements in the markup languages HTML and CSS and the incredible graphic software now available, website design has become an industry in itself. It is therefore important to stay up to date with the latest trends and to also to be imaginative and to spark new ones. It is because of this that many people have begun to experiment with depth, this article will take a long hard look at depth and explain various ways in which it can be achieved.</p></div></div><p><span
id="more-2731"></span>For the past few years now, web designers have been adding depth to their designs. What is depth? Well in terms of perception which will be my main focus today. <a
href="http://en.wikipedia.org/wiki/Depth_perception">Depth perception is is the visual ability to perceive the world in three dimensions (3D)</a>. Now of course this is impossible when it comes to design on 2D surfaces. Nonetheless, we can still simulate the effect using various methods.<br
/><div
id="attachment_2881" class="wp-caption aligncenter" style="width: 560px"><a
href="http://en.wikipedia.org/wiki/Perspective_(graphical)"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/tyre.jpg" alt="" title="tyre" width="550" height="464" class="size-full wp-image-2881" /></a><p
class="wp-caption-text">William of Tyre was one of the first men that attempted to add depth to his work</p></div></p><p>But why would we want depth in our designs? Depth can be useful a tool for distinguishing certain areas of you website. When you used well you can even divide your design into layers, one layer being in the foreground, another in the background and any in between. With layers, content that appears in the foreground is given a focus and emphasized, whereas the opposite effect applies to the background.</p><h3>1. Perspective</h3><p>Perspective can be great for guiding the reader to a particular element. In the following example we notice how the designers at Flourish have used perspective to make the tree the focal point of the page. Along with some beautiful jquery, the site interacts with the reader well. However, when emphasizing an important area or element it is essential that other areas of the same importance do no suffer an deemphasis (unless that in the attention). I believe Flourish have done an excellent job in putting focus on the tree and their design views, however because of this I believe their slogan and logo just above isn&#8217;t given the attention it deserves. Nonetheless, a great example of perspective in web design.<br
/><div
id="attachment_2812" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.floridaflourish.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/flourish.jpg" alt="" title="flourish" width="550" height="300" class="size-full wp-image-2812" /></a><p
class="wp-caption-text">Flourish Web Design</p></div></p><p>Nine Flavours have also used subtle perspective to add emphasis to their logo. The background appears recessed and so the logo (thanks to a drop shadow) is brought forward.</p><div
id="attachment_2813" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.nineflavors.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/flavours.jpg" alt="" title="flavours" width="550" height="300" class="size-full wp-image-2813" /></a><p
class="wp-caption-text">Nine Flavours</p></div><p>Daylight Touch throws in a bit of perspective by adding a 3D Iphone image. You will notice the Iphone facing to the right and so its vanishing point is also to the right. This guides the reader&#8217;s eye to the product name and then the two call to action buttons below.</p><div
id="attachment_2844" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.marketcircle.com/daylitetouch/index.html"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/daylight.jpg" alt="" title="daylight" width="550" height="300" class="size-full wp-image-2844" /></a><p
class="wp-caption-text">Daylight Touch</p></div><h3>2. 3-Dimensional graphics</h3><p>During 2009 a handful of designers who were daring enough to experiment with depth decided to add 3 Dimensional graphics to their designs. The result was positive and led to a popular trend that involved folding, the same effect seen when folding a piece of paper or card.</p><h4>The beautiful fold technique</h4><div
id="attachment_2889" class="wp-caption alignleft" style="width: 280px"><a
href="http://www.from-the-couch.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/fromthecouch1.jpg" alt="" title="fromthecouch" width="270" height="120" class="size-full wp-image-2889" /></a><p
class="wp-caption-text">From the Couch</p></div><p>There are two types of folding, rigid and curved. Curvy gives the impression of flexibility and to me, relaxed. The guys over at From the Couch have done an excellent job in demonstrating the beauty of curved folds. Some sites can sometimes go over board with this technique but I believe Marc and David have been spot on here. I particularity look how the shine effect continues around the fold.</p><div
style="clear:both;"></div><div
id="attachment_2818" class="wp-caption alignright" style="width: 280px"><a
href="http://yoast.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/yoast.jpg" alt="" title="yoast" width="270" height="200" class="size-full wp-image-2818" /></a><p
class="wp-caption-text">Yoast</p></div><p>Rigid folds give the impression of precision. Yoast is a great site demonstrating how a simple fold can add depth to a website. The site also demonstrates how a site can have layers, you should be able to count five. Layers is what depth creates. The layer that appears on top of all others is the most prominent and therefore emphasized (foreground). Whereas the bottom layer (background) usually contains less important information. Each layer tends to be differentiated from the other by a change in colour or opacity. Remember, when adding depth to any website to design, be sure to give the correct areas emphasis.</p><div
style="clear:both;"></div><p>The fold technique became so popular everyone had a go at it:<br
/><div
id="attachment_2845" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/fold.jpg" alt="" title="fold" width="550" height="300" class="size-full wp-image-2845" /><p
class="wp-caption-text">Other fold examples</p></div></p><p>When i came across cubescripts I just had to include it in this article. The perspective used to the right of the design does not add any emphasis or focus to the design but it makes a change from the standard 2-D designs that we see day to day.</p><div
id="attachment_2864" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.cubescripts.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/cubescripts.jpg" alt="" title="cubescripts" width="550" height="300" class="size-full wp-image-2864" /></a><p
class="wp-caption-text">A very 3-Dimnesional design!</p></div><h4>Illustrations</h4><p>Sometimes, a &#8216;simple&#8217; 3D illustration or graphic can be enough to add depth. However, bare in mind they will be the center of attraction so it is essential to keep quality high and mistakes few.<br
/><div
id="attachment_2822" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.positivehype.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/positivehype1.jpg" alt="" title="positivehype" width="550" height="300" class="size-full wp-image-2822" /></a><p
class="wp-caption-text">Positive Hype</p></div><br
/><div
id="attachment_2893" class="wp-caption alignleft" style="width: 133px"><a
href="http://synchmedia.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/synch1.jpg" alt="" title="synch" width="123" height="180" class="size-full wp-image-2893" /></a><p
class="wp-caption-text">Synch Media</p></div></p><p>Not only do 3D illustrations add depth and clarity to a website design they can also add character. As soon as the reader lands on your page they will make a snap judgement as to the style of the site, it&#8217;s purpose and subconsciously, will this site benefit me. A friendly and inviting illustration can be a great first impression. Synch Media have produced a firendly robot design that instantly gives them an &#8216;image&#8217;. After visiting the website you are most likely to remember it because of the distinguishing robot.</p><p>Creative Increase (below) is another great example of a 3D illustration that adds depth, with the help from perspective edges on either side:</p><div
style="clear:both;"></div><div
id="attachment_2860" class="wp-caption aligncenter" style="width: 560px"><a
href="http://creativeincrease.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/atlanta.jpg" alt="" title="atlanta" width="550" height="300" class="size-full wp-image-2860" /></a><p
class="wp-caption-text">Creative Increase</p></div><h3>3. Shadows</h3><p>Shadows are another factor that can add depth to your web design. Be it inner or drop, either will give the impression that an object/element is recessed or hovering. Drop and inner shadows are so powerful that even the most subtle one pixel line can lift an element off the page. Henry Jones over at Web Design Ledger wrote an excellent article talking about exactly that, <a
href="http://webdesignledger.com/tips/adding-depth-with-pixel-perfect-line-work">Adding Depth with Pixel Perfect Line Work</a>.</p><h4>Dissecting Metalab&#8217;s Design</h4><p>When it comes to subtlety I always find myself returning to MetaLab. To demonstrate how depth is added I cropped the stylish vertical navigation. On the left you can see a 2D list, however even with a lighter colour for the selected item some depth can be seen. When we look at the entire area we notice a few things that confirm depth in the design. Firstly, the popular fold technique is used. Secondly, the point towards the right over hangs the content area on the right. I believe Metalab did not use a drop shadow because they wanted the selected area to &#8216;hug&#8217; the list rather than to hover slightly above it.<br
/><div
id="attachment_2849" class="wp-caption aligncenter" style="width: 390px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/2d-3d.jpg" alt="" title="2d-3d" width="380" height="156" class="size-full wp-image-2849" /><p
class="wp-caption-text">Demonstrating that depth is used</p></div><br
/><div
id="attachment_2848" class="wp-caption alignleft" style="width: 246px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/metalabnav.jpg" alt="" title="metalabnav" width="236" height="84" class="size-full wp-image-2848" /><p
class="wp-caption-text">MetaLab navigation demonstrating inner shadow</p></div></p><p>You will have to look closely (attention to detail) but you should notice a subtle inner shadow on selected items on the top navigation as well. This is another trend that became popular for user interfaces. When clicking a button it feels natural if the button appears recessed, by pushing down on the mouse button, you &#8216;physically&#8217; push the button on the website.</p><div
style="clear:both;"></div><div
id="attachment_2850" class="wp-caption aligncenter" style="width: 546px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/dropshadow.jpg" alt="" title="dropshadow" width="536" height="117" class="size-full wp-image-2850" /><p
class="wp-caption-text">A drop shadow can lift elements off the page</p></div><p>Here we notice MetaLab have decided to use a drop shadow. Why here? I believe their aim was to improve interaction with the reader. A drop shadow puts the are that much closer to you and entices you join their newsletter or to work with them. A little enticement at the end of a visit can be key when reeling in clients.</p><h4>Tips</h4><div
id="attachment_2866" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/tips1.jpg" alt="" title="tips" width="550" height="300" class="size-full wp-image-2866" /><p
class="wp-caption-text">A few tips</p></div><h3>4. Focus</h3><p>Another method that gives your website design depth is, focus. For this we look at the way light and cameras respond to each other. I am no photographer but I do understand that a camera has the power to focus on objects at different distances. When focusing on sometihng relatively near to the camera, the background can appear blurred. Many people use this to their advantage to produce beautiful <a
href="http://www.flickr.com/search/groups/?q=bokeh&#038;w=38343303@N00&#038;m=pool">bokeh photography</a>. When focusing on an object slightly further away, anything close to the camera will also be out of focus and blurred.</p><p>My question is, why not use this effect in web design? I am sure there are other designs that have attempted this, but the best example I could find was AWP Express. It includes both, an out of focus background and foreground. Complete with a beautiful brand illustration.</p><p>I would love to see more use of this effect in web design. I will definitely be trying it out!<br
/><div
id="attachment_2861" class="wp-caption aligncenter" style="width: 560px"><a
href="http://awpexpress.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/awp1.jpg" alt="" title="awp" width="550" height="300" class="size-full wp-image-2861" /></a><p
class="wp-caption-text">A beautiful example of depth of field in web design</p></div></p><h3>5. Colour Shading and Opacity</h3><p>When searching for ways to add depth I didn&#8217;t realize how effective a simple colour palette can be. A good palette that allows depth will contain a mixture of dark and light colours. Dark colours can be related to the background and light to foreground. This is mainly because lighter colours tend to attract the eye whereas darker colours require a little more attention.</p><p>If we look at Versions we immediately notice the central focal point and the lovely brand illustration. When looking slightly closer we notice the background contains the same grassy hills but much darker and monochromatic. This is strong evidence that light colours are emphasized when on top of dark colours. It also concludes that colours on top of shades of black or white are emphasised. Furthermore, you will notice the dark gray hills in the background also have a slight blur. Perfect depth!<br
/><div
id="attachment_2814" class="wp-caption aligncenter" style="width: 560px"><a
href="http://versionsapp.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/versions.jpg" alt="" title="versions" width="550" height="300" class="size-full wp-image-2814" /></a><p
class="wp-caption-text">Versions</p></div></p><p>The AppStorm design also demonstrates a great use of depth with colour. The design is mostly dark gray but content is emphasised with a white background.</p><div
id="attachment_2856" class="wp-caption aligncenter" style="width: 560px"><a
href="http://iphone.appstorm.net/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/appstorm.jpg" alt="" title="appstorm" width="550" height="300" class="size-full wp-image-2856" /></a><p
class="wp-caption-text">Appstorm, white on very dark gray. Result: Content emphasised</p></div><p>Similarly with Vuu Media:</p><div
id="attachment_2862" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.vuu.com.au/front/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/vuumedia.jpg" alt="" title="vuumedia" width="550" height="300" class="size-full wp-image-2862" /></a><p
class="wp-caption-text">I think I'm in love with this design!</p></div><h3>6. Size and Placement</h3><p>A final way to add depth is the most obvious, Size. However, size on it&#8217;s own won&#8217;t add any depth as seen in William of Tyre&#8217;s artwork. If you would like to use size to add depth then you must combine it with overlapping. If we take a look at how Symphony have showcased their CMS it appears as if the screenshots to the left are further away then the ones on the right.<br
/><div
id="attachment_2859" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/symphony.jpg" alt="" title="symphony" width="550" height="300" class="size-full wp-image-2859" /><p
class="wp-caption-text">Symphony demonstrating depth with size</p></div></p><p>Derek over at Valen Designs shows us how it&#8217;s done with the addition of some nifty javascript.</p><div
id="attachment_2905" class="wp-caption aligncenter" style="width: 560px"><a
href="http://valendesigns.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/valendesigns.jpg" alt="" title="valendesigns" width="550" height="300" class="size-full wp-image-2905" /></a><p
class="wp-caption-text">Valen Designs</p></div><h3>Summary</h3><p>To conclude, depth is, by all means, not essential to web design, but it does give your design a bit of flair. I have discussed six ways in which you can achieve depth with each being fairly easy to apply. I am always a fan of large illustrations that make me stare, it usually leaves and good first and last impressions so I would thoroughly recommend those. As mentioned, I would also like to see the design community playing with depth of field, AWP pulled it off and produced a stunning design so why can&#8217;t you? I hope you have enjoyed the first article of the new year. My plan is to stay consistent, so future articles will be of the same quality <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/the-six-fundamental-ways-of-adding-depth-to-your-designs/feed/</wfw:commentRss> <slash:comments>72</slash:comments> </item> <item><title>Create a funky most commented section for your blog!</title><link>http://blog.creativityden.com/create-a-funky-most-commented-section-for-your-blog/</link> <comments>http://blog.creativityden.com/create-a-funky-most-commented-section-for-your-blog/#comments</comments> <pubDate>Thu, 10 Dec 2009 21:39:34 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[blog]]></category> <category><![CDATA[coloful]]></category> <category><![CDATA[color]]></category> <category><![CDATA[commented]]></category> <category><![CDATA[comments]]></category> <category><![CDATA[most]]></category> <category><![CDATA[post]]></category> <category><![CDATA[posts]]></category> <category><![CDATA[sidebar]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=2042</guid> <description><![CDATA[Snaaazzzy! After Engadget redesigned their website a few weeks ago, I noticed how their sidebar contained some unique methods of displaying posts. A nice featured posts section, a fancy calendar and an awesome most commented, digg and twitter section. Using the amount of comments to determine the width and having each post a different color [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/12/thumb.jpg" alt="" title="thumb" width="150" height="150" class="alignnone size-full wp-image-2049" /></div><div
class="description"><strong>Snaaazzzy!</strong></p><p>After <a
href="http://www.engadget.com/">Engadget</a> redesigned their website a few weeks ago, I noticed how their sidebar contained some unique methods of displaying posts. A nice featured posts section, a fancy calendar and an awesome most commented, digg and twitter section. Using the amount of comments to determine the width and having each post a different color to produce a rainbow, I thought was an awesome idea. So I had a go at making the most commented section for CreativityDen. It turned out pretty well, so I decided to share it with you! All credit goes to <a
href="http://www.codeandtheory.com/">Code and Theory</a>.</p></div></div><p><span
id="more-2042"></span></p><h3>Colorful comment section</h3><p>The colorful comment section developed and designed for wordpress blogs.<br
/><div
id="attachment_2046" class="wp-caption aligncenter" style="width: 560px"><img
class="size-full wp-image-2046" title="mostcommented" src="http://blog.creativityden.com/wp-content/uploads/2009/12/mostcommented1.jpg" alt="Colourful comments" width="550" height="250" /><p
class="wp-caption-text">Colourful comments</p></div></p><h3>Querying and displaying the most commented posts</h3><p>The code is fairly simple. Firstly, it queries the database, finding the x most commented posts between two given dates. It then loops through the posts calculating the width and color of each post. I have tried to make the code as readable as possible, but if you have any problems do not hesitate to leave a comment. I am currently learning php myself so anyone who can improve this code, please share your improved version <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><h4>My Version</h4><p>My attempt is referred to as &#8216;spaghetti code&#8217; &#8211; don&#8217;t use it! Instead use Dylan&#8217;s improved version below mine. I shall leave my version up so you can see the mistakes I made and how Dylan cleaned my mess up. <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><pre class="brush: php; html-script: true;">
&lt;h2&gt;Most commented&lt;/h2&gt;

&lt;ul id=&quot;most_commented&quot;&gt;

&lt;?php

#Fetch the five most commented posts between the 1st of January 2009 to the 31st of December 2009
$result = $wpdb-&gt;get_results(&quot;SELECT comment_count,ID,post_title, post_date FROM $wpdb-&gt;posts WHERE post_date BETWEEN '2009-01-01' AND '2009-12-31' ORDER BY comment_count DESC LIMIT 0 , 5&quot;);

#Declare counter variable
$i = 1;

#Loop through each post
foreach ($result as $topfive)
{
    $postid = $topfive-&gt;ID;
    $title = $topfive-&gt;post_title;
    $commentcount = $topfive-&gt;comment_count;

    #My hacky way of finding the number of comments on the most commented post
    if ($i == 1) {$mostcomments = $commentcount;}

    if ($commentcount != 0)
    {

    #Display our results
    echo '&lt;li style=&quot;width:';
    #Determine the width for each post, the width of my sidebar was 260px, you will need to change this value to the width of sidebar (don't forget padding etc).
    echo round((260/$mostcomments)*$commentcount,1).'px; '; 

    #Change the color for each post - hex values - change these values to have different colors
    echo 'background-color:#';
    if ($i == 1) echo 'c32a2a';
    elseif ($i == 2) echo 'c37d2a';
    elseif ($i == 3) echo 'bac32a';
    elseif ($i == 4) echo '8fc32a';
    elseif ($i == 5) echo '4ec32a';

    echo ' ;&quot;&gt; ';

    #Display the post title with a link to the post
    echo '&lt;a href=&quot; ';
    echo get_permalink($postid);
    echo ' &quot;&gt; ';
    echo $title;
    echo '&lt;/a&gt;';

    #Display the comment number
    echo '&lt;div class=&quot;comment_no&quot;&gt;';
    echo $commentcount;
    echo '&lt;/div&gt;&lt;/li&gt;';

    }

$i++;

}

?&gt;

&lt;/ul&gt;
</pre><h4>Dylan&#8217;s much improved version</h4><pre class="brush: php; html-script: true;">
&lt;h2&gt;Most commented&lt;/h2&gt;

&lt;ul id=&quot;most_commented&quot;&gt;

&lt;?php

# Fetch the five most commented posts in the last 12 months
$result = $wpdb-&gt;get_results(&quot;SELECT comment_count,ID,post_title, post_date FROM $wpdb-&gt;posts WHERE post_date BETWEEN NOW() AND DATE_SUB(NOW(), INTERVAL 12 MONTH) ORDER BY comment_count DESC LIMIT 5&quot;);

# Initialize $mostcomments
$mostcomments = FALSE;

# Initialize the colors.  Change these values to have different colours
$colors = array(
	'#c32a2a',
	'#c37d2a',
	'#bac32a',
	'#8fc32a',
	'#4ec32a');

#Loop through each post
foreach ($result as $i=&gt;$topfive)
{
    $postid = $topfive-&gt;ID;
    $title = $topfive-&gt;post_title;
    $commentcount = $topfive-&gt;comment_count;

	# store the most comments in the first iteration, as a non-zero value evaluates to TRUE
	$mostcomments = ($mostcomments) ? $mostcomments : $commentcount;

    if ($commentcount != 0)
    {
		#Determine the width for each post, the width of my sidebar was 260px, you will need to change this value to the width of sidebar (don't forget padding etc).
		$width = round((260/$mostcomments)*$commentcount,1).'px; ';

		# use $i to correlate to an element in $colors rather than 5 if() statements
		$background_color = $colors[$i];

		# Get the permalink for this post
		$permalink = get_permalink($postid);

		# Use heredocs to output, to save on 1001 echo statements
		# Closing COUNT; is intentionally indented weird (see docs for why)
		echo &lt;&lt;&lt;COUNT
			&lt;li style = &quot;width:$width;background-color:$background_color;&quot;&gt;
				&lt;a href = &quot;$permalink&quot;&gt;$title&lt;/a&gt;
				&lt;div class = &quot;comment_no&quot;&gt;$commentcount&lt;/div&gt;
			&lt;/li&gt;
COUNT;
    }
}

?&gt;

&lt;/ul&gt;
</pre><p>I decided to insert this code into my sidebar, however you can put it anywhere on your blog.</p><h3>Add a little CSS</h3><pre class="brush: css;">
#most_commented a {
        color: #000;
        font-size: 14px;
}

#most_commented a:hover {
        color: #fff;
}

#most_commented li {
        position: relative;
        min-height: 40px;
        opacity: 0.9;
        margin: 0 0 -15px 0 !important;
        padding: 15px 10px 15px 10px !important;
}

#most_commented li .comment_no {
        position: absolute;
        top: 12px;
        right: -11px;
        padding: 5px;
        color: #efefef;
        background-color: #101010;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
}
</pre><h3>Done! Easy as pie</h3><p>Stay tuned! I plan on implementing this for most viewed posts and most tweeted/dugg posts <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/create-a-funky-most-commented-section-for-your-blog/feed/</wfw:commentRss> <slash:comments>22</slash:comments> </item> <item><title>Design a pixel perfect menu &#8211; MetaLab style</title><link>http://blog.creativityden.com/design-a-pixel-perfect-menu-metalab-style/</link> <comments>http://blog.creativityden.com/design-a-pixel-perfect-menu-metalab-style/#comments</comments> <pubDate>Wed, 02 Dec 2009 19:00:05 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[css]]></category> <category><![CDATA[design]]></category> <category><![CDATA[menu]]></category> <category><![CDATA[metalab]]></category> <category><![CDATA[navigation]]></category> <category><![CDATA[perfect]]></category> <category><![CDATA[pixel]]></category> <category><![CDATA[stylish]]></category> <category><![CDATA[web]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=1903</guid> <description><![CDATA[Perfection I&#8217;m a big fan of pixel perfect design. So much so that whenever I visit MetaLab&#8217;s website my jaw drops in awe. The attention to detail is unbelievable. So I tried to replicate the style by designing a pixel perfect navigation menu. I was surprised at how easy it was to produce replicate , [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><a
href="http://blog.creativityden.com/logos-logos-logos/quotekid/" rel="attachment wp-att-1681"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/thumb2.jpg" alt="thumb" title="thumb" width="150" height="150" class="alignnone size-full wp-image-2165" /></a></div><div
class="description"><strong>Perfection</strong></p><p>I&#8217;m a big fan of pixel perfect design. So much so that whenever I visit <a
href="http://www.metalabdesign.com/">MetaLab&#8217;s website</a> my jaw drops in awe. The attention to detail is unbelievable. So I tried to replicate the style by designing a pixel perfect navigation menu. I was surprised at how easy it was to produce replicate , it&#8217;s because of this that I decided to write up my process. If you&#8217;re into this type of design then I strongly recommend reading this tutorial. It should definitely get you on the right track.</div></div><p><span
id="more-1903"></span></p><h3>Step 1</h3><p>Let&#8217;s get started! Boot up photoshop and create a new canvas. Set width to 550px and height to 250px. Press OK and you should have a brand spanking new canvas ready to draw your pixel perfect menu. If the canvas doesn&#8217;t have a background then go ahead and press Shift + F5 and fill the layer to white. I added a radial blur to spice mine up a bit.<br
/><div
id="attachment_2134" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/1.jpg" alt="Start off with a nice background" title="1" width="550" height="250" class="size-full wp-image-2134" /><p
class="wp-caption-text">Start off with a nice background</p></div></p><h3>Step 2</h3><p>Grab the marquee tool (M) and draw a rectangle from one side two the other. Create a new layer by pressing Ctrl + Shift + N and fill the area with any colour. Double click the newly create layer and add a gradient overlay. I chose a linear gradient with a dark and lighter shade of red. Also add a black outer stroke, and set opacity to 90ish percent (if you used different colours for your gradient overlay then you may have to lower this).<br
/><div
id="attachment_2135" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/2.jpg" alt="Add a background for our menu" title="2" width="550" height="250" class="size-full wp-image-2135" /><p
class="wp-caption-text">Add a background for our menu</p></div></p><h3>Step 3</h3><p>To add a shine to any object in photoshop is fairly simple. Hover your cursor over the thumbnail of the menu background layer whilst holding Ctrl. The cursor should change to a one with a dashed box on top of it. Left click to select the area of the menu background.Now grab the marquee tool, hold alt and draw a rectangle that covers the bottom half of the menu background. You should now just have the top section selected. Create a new layer, fill the selection with white and reduce opacity to 2%.<br
/><div
id="attachment_2136" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/3.jpg" alt="Add a shine" title="3" width="550" height="250" class="size-full wp-image-2136" /><p
class="wp-caption-text">Add a shine</p></div></p><h3>Step 4</h3><p>Now onto the menu itself, select the rounded rectangle tool (U) and draw a button onto your menu background. The colour of the rectangle is up to you. I just made mine a lighter shade of red. Now to add some crisp borders. Double click on the rounded rectangle layer and add a white outer stroke and reduce opacity down to around 20%. Now add a black inner glow with the opacity set to 80% (again, play with these values until you&#8217;re satisfied). Set the choke to 100% and size to 1. I also added a gradient overlay, from dark to light red (very subtle).<br
/><div
id="attachment_2137" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/4.jpg" alt="Add a pixel perfect button" title="4" width="550" height="250" class="size-full wp-image-2137" /><p
class="wp-caption-text">Add a pixel perfect button</p></div></p><h3>Step 5</h3><p>To make the selected/pressed state you just add a black inner shadow with an opacity of 60%, angle of 90 degrees, distance of 3 and size of 3. Add some text with a black drop shadow, an opacity of 20%, distance of 1, spread of 100 and size of 1.<br
/><div
id="attachment_2138" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/5.jpg" alt="Add an inner shadow" title="5" width="550" height="250" class="size-full wp-image-2138" /><p
class="wp-caption-text">Add an inner shadow</p></div></p><h3>Step 6</h3><p>To make the normal state, select the area of the button using the method in step 3. With the button selected click on select from the top menu, choose modify and then contract. Contract the selection by 1px. With the gradient tool (G), select or create a gradient that starts from white with 100% opacity to white with 0% opacity. In a new layer, draw this gradient from the top to the bottom of the selection. Now contract the selection again by 1px and press the delete key. Set the layer to overlay and reduce the opacity until you are happy.<br
/><div
id="attachment_2139" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/6.jpg" alt="Add another pixel perfeect button, this time with a shiny edge" title="6" width="550" height="250" class="size-full wp-image-2139" /><p
class="wp-caption-text">Add another pixel perfect button, this time with a shiny edge</p></div></p><h3>Step 7</h3><p>Repeat steps 4,5 and 6 to add more buttons to the menu and that&#8217;s it! Easy <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I hope you enjoyed this tutorial. If you have any queries then please feel free to leave a comment. I will try to respond as soon as possible.<br
/><div
id="attachment_2140" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/7.jpg" alt="Continue to add buttons for each link" title="7" width="550" height="250" class="size-full wp-image-2140" /><p
class="wp-caption-text">Continue to add buttons for each link</p></div></p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/design-a-pixel-perfect-menu-metalab-style/feed/</wfw:commentRss> <slash:comments>30</slash:comments> </item> <item><title>35 Websites that use transparency effectively</title><link>http://blog.creativityden.com/35-websites-that-use-transparency-effectively/</link> <comments>http://blog.creativityden.com/35-websites-that-use-transparency-effectively/#comments</comments> <pubDate>Sun, 29 Nov 2009 10:30:15 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Showcases]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[design]]></category> <category><![CDATA[glass]]></category> <category><![CDATA[opacity]]></category> <category><![CDATA[see-through]]></category> <category><![CDATA[translucent]]></category> <category><![CDATA[transparency]]></category> <category><![CDATA[transparent]]></category> <category><![CDATA[web]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=1692</guid> <description><![CDATA[I can see-through! Everywhere we go we see transparent objects. So why not implement transparency in web design? If you&#8217;ve just made the best background ever but have to cover it all up with content, then why not make that content slightly transparent? Transparency is great for adding depth to a website. The more transparent [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><a
href="http://blog.creativityden.com/logos-logos-logos/quotekid/" rel="attachment wp-att-1681"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/24ways-150x150.jpg" alt="24ways" title="24ways" width="150" height="150" class="alignnone size-thumbnail wp-image-1872" /></a></div><div
class="description"><strong>I can see-through!</strong></p><p>Everywhere we go we see transparent objects. So why not implement transparency in web design? If you&#8217;ve just made the best background ever but have to cover it all up with content, then why not make that content slightly transparent? Transparency is great for adding depth to a website. The more transparent an area is, the more it seems closer to the area behind it. This can be used to a web designer&#8217;s advantage.</p></div></div><p><span
id="more-1692"></span></p><div
id="attachment_1875" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.decodesigninterior.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/decodesign.jpg" alt="Deco Design Interior" title="decodesign" width="550" height="250" class="size-full wp-image-1875" /></a><p
class="wp-caption-text">Deco Design Interior</p></div><br
/><div
id="attachment_1880" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.webleeddesign.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/webleeddesign1.jpg" alt="Webleeddesign" title="webleeddesign" width="550" height="250" class="size-full wp-image-1880" /></a><p
class="wp-caption-text">Webleeddesign</p></div><br
/><div
id="attachment_1874" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.explovent.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/explovent.jpg" alt="Explovent" title="explovent" width="550" height="250" class="size-full wp-image-1874" /></a><p
class="wp-caption-text">Explovent</p></div><br
/><div
id="attachment_1873" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.iris-interactive.fr/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/iris.jpg" alt="IRIS Interactive" title="iris" width="550" height="250" class="size-full wp-image-1873" /></a><p
class="wp-caption-text">IRIS Interactive</p></div><br
/><div
id="attachment_1872" class="wp-caption aligncenter" style="width: 560px"><a
href="http://24ways.org/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/24ways.jpg" alt="24 ways" title="24ways" width="550" height="250" class="size-full wp-image-1872" /></a><p
class="wp-caption-text">24 ways</p></div><br
/><div
id="attachment_1864" class="wp-caption aligncenter" style="width: 560px"><a
href="http://bradcolbow.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/brad.jpg" alt="Brad Colbow" title="brad" width="550" height="250" class="size-full wp-image-1864" /></a><p
class="wp-caption-text">Brad Colbow</p></div><br
/><div
id="attachment_1865" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/christine.jpg" alt="Christine Galvin" title="christine" width="550" height="250" class="size-full wp-image-1865" /><p
class="wp-caption-text">Christine Galvin</p></div><br
/><div
id="attachment_1866" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.aurelien-reaut.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/aurelien.jpg" alt="Aurelien Reaut" title="aurelien" width="550" height="250" class="size-full wp-image-1866" /></a><p
class="wp-caption-text">Aurelien Reaut</p></div><br
/><div
id="attachment_1867" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.pizzaza.ca/restaurant/bar_a_vin.php"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/resto.jpg" alt="Pizzaza" title="resto" width="550" height="250" class="size-full wp-image-1867" /></a><p
class="wp-caption-text">Pizzaza</p></div><br
/><div
id="attachment_1750" class="wp-caption aligncenter" style="width: 560px"><a
href="http://envato.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/envato.jpg" alt="Envato" title="envato" width="550" height="250" class="size-full wp-image-1750" /></a><p
class="wp-caption-text">Envato</p></div><br
/><div
id="attachment_1751" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.futuremanagement.pl/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/fmm.jpg" alt="Future managment &amp; marketing" title="fmm" width="550" height="250" class="size-full wp-image-1751" /></a><p
class="wp-caption-text">Future managment &#038; marketing</p></div><br
/><div
id="attachment_1752" class="wp-caption aligncenter" style="width: 560px"><a
href="http://jasonhiner.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/jasonhiner.jpg" alt="Jason Hiner" title="jasonhiner" width="550" height="250" class="size-full wp-image-1752" /></a><p
class="wp-caption-text">Jason Hiner</p></div><br
/><div
id="attachment_1753" class="wp-caption aligncenter" style="width: 560px"><a
href="http://en.michaeljackson.ro/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/mj.jpg" alt="Michael Jackson" title="mj" width="550" height="250" class="size-full wp-image-1753" /></a><p
class="wp-caption-text">Michael Jackson</p></div><br
/><div
id="attachment_1754" class="wp-caption aligncenter" style="width: 560px"><a
href="http://blog.squarespace.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/squarespace.jpg" alt="Squarespace" title="squarespace" width="550" height="250" class="size-full wp-image-1754" /></a><p
class="wp-caption-text">Squarespace</p></div><br
/><div
id="attachment_1755" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.strutta.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/strutta.jpg" alt="Strutta" title="strutta" width="550" height="250" class="size-full wp-image-1755" /></a><p
class="wp-caption-text">Strutta</p></div><br
/><div
id="attachment_1756" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.worldinmylens.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/wiml.jpg" alt="World in my lens" title="wiml" width="550" height="250" class="size-full wp-image-1756" /></a><p
class="wp-caption-text">World in my lens</p></div><br
/><div
id="attachment_1757" class="wp-caption aligncenter" style="width: 560px"><a
href="http://mightydream.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/mightydream.jpg" alt="Mighty Dream" title="mightydream" width="550" height="250" class="size-full wp-image-1757" /></a><p
class="wp-caption-text">Mighty Dream</p></div><br
/><div
id="attachment_1759" class="wp-caption aligncenter" style="width: 560px"><a
href="http://line25.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/line25.jpg" alt="Line25" title="line25" width="550" height="250" class="size-full wp-image-1759" /></a><p
class="wp-caption-text">Line25</p></div><br
/><div
id="attachment_1760" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.unuidesign.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/unuidesign.jpg" alt="Unuidesign" title="unuidesign" width="550" height="250" class="size-full wp-image-1760" /></a><p
class="wp-caption-text">Unuidesign</p></div><br
/><div
id="attachment_1761" class="wp-caption aligncenter" style="width: 560px"><a
href="http://webunder.com.au/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/expressionengine.jpg" alt="Webunder" title="expressionengine" width="550" height="250" class="size-full wp-image-1761" /></a><p
class="wp-caption-text">Webunder</p></div><br
/><div
id="attachment_1762" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.ianjamescox.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/ian.jpg" alt="Ian James Cox" title="ian" width="550" height="250" class="size-full wp-image-1762" /></a><p
class="wp-caption-text">Ian James Cox</p></div><br
/><div
id="attachment_1763" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.chichesterpahire.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/chichester.jpg" alt="Chichester PA Hire" title="chichester" width="550" height="250" class="size-full wp-image-1763" /></a><p
class="wp-caption-text">Chichester PA Hire</p></div><br
/><div
id="attachment_1764" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.gioledda.ca/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/gioledda.jpg" alt="Gioledda" title="gioledda" width="550" height="250" class="size-full wp-image-1764" /></a><p
class="wp-caption-text">Gioledda</p></div><br
/><div
id="attachment_1765" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.henrywells.co.uk/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/henrywells.jpg" alt="Henry Wells" title="henrywells" width="550" height="250" class="size-full wp-image-1765" /></a><p
class="wp-caption-text">Henry Wells</p></div><br
/><div
id="attachment_1766" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.dreamdust.net/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/dreamdust.jpg" alt="Dreamdust" title="dreamdust" width="550" height="250" class="size-full wp-image-1766" /></a><p
class="wp-caption-text">Dreamdust</p></div><br
/><div
id="attachment_1767" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.lebloe.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/lebloe.jpg" alt="lebloe" title="lebloe" width="550" height="250" class="size-full wp-image-1767" /></a><p
class="wp-caption-text">lebloe</p></div><br
/><div
id="attachment_1768" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.campcreativegroup.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/camp.jpg" alt="Camp Creative Group" title="camp" width="550" height="250" class="size-full wp-image-1768" /></a><p
class="wp-caption-text">Camp Creative Group</p></div><br
/><div
id="attachment_1769" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.campaignmonitor.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/campaignmonitor.jpg" alt="Campaign Monitor" title="campaignmonitor" width="550" height="250" class="size-full wp-image-1769" /></a><p
class="wp-caption-text">Campaign Monitor</p></div><br
/><div
id="attachment_1770" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.blueacorn.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/blueacorn.jpg" alt="Blueacorn" title="blueacorn" width="550" height="250" class="size-full wp-image-1770" /></a><p
class="wp-caption-text">Blueacorn</p></div><br
/><div
id="attachment_1771" class="wp-caption aligncenter" style="width: 560px"><a
href="http://newism.com.au/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/newism.jpg" alt="Newism" title="newism" width="550" height="250" class="size-full wp-image-1771" /></a><p
class="wp-caption-text">Newism</p></div><br
/><div
id="attachment_1789" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.panda.org/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/panda.jpg" alt="WWF" title="panda" width="550" height="250" class="size-full wp-image-1789" /></a><p
class="wp-caption-text">WWF</p></div><br
/><div
id="attachment_1790" class="wp-caption aligncenter" style="width: 560px"><a
href="http://koormann.de/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/hello.jpg" alt="Jan-Eike Koorman" title="hello" width="550" height="250" class="size-full wp-image-1790" /></a><p
class="wp-caption-text">Jan-Eike Koorman</p></div><br
/><div
id="attachment_1791" class="wp-caption aligncenter" style="width: 560px"><a
href="http://lillystable.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/lilly.jpg" alt="Lilly&#039;s Table" title="lilly" width="550" height="250" class="size-full wp-image-1791" /></a><p
class="wp-caption-text">Lilly's Table</p></div><br
/><div
id="attachment_1792" class="wp-caption aligncenter" style="width: 560px"><a
href="http://ryanmcmaster.com/home/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/ryanmcmaster.jpg" alt="Ryan McMaster" title="ryanmcmaster" width="550" height="250" class="size-full wp-image-1792" /></a><p
class="wp-caption-text">Ryan McMaster</p></div><br
/><div
id="attachment_1793" class="wp-caption aligncenter" style="width: 560px"><a
href="http://antonpeck.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/antonpeck.jpg" alt="Anton Peck" title="antonpeck" width="550" height="250" class="size-full wp-image-1793" /></a><p
class="wp-caption-text">Anton Peck</p></div> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/35-websites-that-use-transparency-effectively/feed/</wfw:commentRss> <slash:comments>27</slash:comments> </item> <item><title>Fixed elements in web design with examples</title><link>http://blog.creativityden.com/fixed-elements-in-web-design-with-examples/</link> <comments>http://blog.creativityden.com/fixed-elements-in-web-design-with-examples/#comments</comments> <pubDate>Sat, 28 Nov 2009 16:26:27 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[design]]></category> <category><![CDATA[element]]></category> <category><![CDATA[fixed]]></category> <category><![CDATA[web]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=1695</guid> <description><![CDATA[Sticky! From time to time it&#8217;s nice to try something different. A typical website layout may have an awesome design but nothing truly creative. Positioning is a vital part to web design. From where you put the navigation menu to the area dedicated to twitter, correct positioning is essential for a good user experience. So, [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
class="alignnone size-thumbnail wp-image-1733" title="bulletpr" src="http://blog.creativityden.com/wp-content/uploads/2009/11/bulletpr-150x150.jpg" alt="bulletpr" width="150" height="150" /></div><div
class="description"><strong>Sticky!</strong></p><p>From time to time it&#8217;s nice to try something different. A typical website layout may have an awesome design but nothing truly creative. Positioning is a vital part to web design. From where you put the navigation menu to the area dedicated to twitter, correct positioning is essential for a good user experience. So, some web designers have taken a step back and thought, I need this area to be permanently displayed but not these other areas. Whilst writing this I find myself wondering why all navigational menus are not permanently displayed. Surely, if you had the ability to go to another page without scrolling, this would lead to much faster browsing?</p></div></div><p><span
id="more-1695"></span></p><h3>What are fixed elements?</h3><p>Fixed elements are sections of a website that stick to the page when you scroll. They are fixed because their position is in relation to the screen rather than the webpage. Take a look at the example below. Mark Jardine successfully demonstrates a fixed section on his website. As you scroll, you notice the left side of the website stays stationary while the content scrolls normally.</p><div
id="attachment_1729" class="wp-caption aligncenter" style="width: 560px"><a
href="http://markjardine.com/"><img
class="size-full wp-image-1729" title="markjardine" src="http://blog.creativityden.com/wp-content/uploads/2009/11/markjardine.jpg" alt="Mark Jardine" width="550" height="250" /></a><p
class="wp-caption-text">Mark Jardine</p></div><h3>To have fixed elements or to not have fixed elements?</h3><p>So why do web designers decide to have these fixed elements? Well there are various reasons why you might want an area or section of website to be visible at all times.</p><div
id="attachment_1854" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/outlaw1.jpg" alt="Outlaw Podcasts" title="outlaw" width="550" height="250" class="size-full wp-image-1854" /><p
class="wp-caption-text">Outlaw Podcasts</p></div><ol><li>Emphasis. A fixed element is immediately noticed when the user begins to scroll.</li><li>Navigation. Being able to navigate to different pages of a website whilst half way down a page can very useful and improve browsing.</li><li>Advertising. To be certain an advertisement is viewed.</li><li>Displaying latest posts/news. So the reader can instantly view the latest updates.</li></ol><div
id="attachment_1852" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/cons.jpg" alt="Use fixed elements wisely...you must." title="cons" width="550" height="250" class="size-full wp-image-1852" /><p
class="wp-caption-text">Use fixed elements wisely...you must.</p></div><p>However, never overuse fixed elements. Too many can spoil your website leaving it harder to read. In fact, in my opinion no more than two should be used. The more fixed elements you have, the less space your website has to breathe. Furthermore, it&#8217;s important to pay close attention to the size of the fixed element. A large fixed sidebar may not leave enough room for your content. Always take into account readers with the screen size 1024&#215;768 and how much space they will have available to view your content. Finally, if you plan on having a fixed element that does not hug one of the sides be aware that it may cover up some of your content. This can be very frustrating when reading through a post, especially if there is no way to remove it.</p><h3>How can I implement a fixed element?</h3><p>It&#8217;s fairly simple to implement fixed elements. The CSS property &#8220;position&#8221; has a value &#8220;fixed&#8221; which can position selectors (tags e.g &lt;div&gt;&lt;/div&gt;) in relation to the screen.</p><pre class="brush: css;">position: fixed;</pre><p>Fixing an element to the top of the screen</p><pre class="brush: css;">
position: fixed;
top: 0;
</pre><p>Fixing an element to the left of the screen</p><pre class="brush: css;">
position: fixed;
left: 0;
</pre><p>Fixing an element 50px from the right of the screen</p><pre class="brush: css;">
position: fixed;
right: 50px;
</pre><p>Fixing an element 200px from the bottom and 10px from the left of the screen</p><pre class="brush: css;">
position: fixed;
bottom: 200px;
left: 10px;
</pre><p>If you would just like to have a background that doesn&#8217;t repeat and stays fixed when you scroll then you can use this css:</p><pre class="brush: css;">
background: #fff url(insert-url-here) no-repeat fixed;
</pre><p>An excellent example of a fixed background is Webleeddesign.  Bryan combines a fixed background with transparency to create a wonderful effect.<br
/><div
id="attachment_1836" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.webleeddesign.com/"><img
class="size-full wp-image-1836" title="webleeddesign" src="http://blog.creativityden.com/wp-content/uploads/2009/11/webleeddesign.jpg" alt="webleeddesign" width="550" height="250" /></a><p
class="wp-caption-text">webleeddesign</p></div></p><h3>Further Examples</h3><div
id="attachment_1727" class="wp-caption aligncenter" style="width: 560px"><a
href="http://growmedia.ca/"><img
class="size-full wp-image-1727" title="grow" src="http://blog.creativityden.com/wp-content/uploads/2009/11/grow.jpg" alt="Grow Media" width="550" height="250" /></a><p
class="wp-caption-text">Grow Media</p></div><br
/><div
id="attachment_1728" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.total-resistance.com/"><img
class="size-full wp-image-1728" title="totalresistance" src="http://blog.creativityden.com/wp-content/uploads/2009/11/totalresistance.jpg" alt="Total Resistance" width="550" height="250" /></a><p
class="wp-caption-text">Total Resistance</p></div><br
/><div
id="attachment_1730" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.designcommission.com/"><img
class="size-full wp-image-1730" title="designcomission" src="http://blog.creativityden.com/wp-content/uploads/2009/11/designcomission.jpg" alt="Design Comission" width="550" height="250" /></a><p
class="wp-caption-text">Design Comission</p></div><br
/><div
id="attachment_1844" class="wp-caption aligncenter" style="width: 560px"><a
href="http://envato.com/"><img
class="size-full wp-image-1844" title="envato" src="http://blog.creativityden.com/wp-content/uploads/2009/11/envato1.jpg" alt="Envato" width="550" height="250" /></a><p
class="wp-caption-text">Envato</p></div><br
/><div
id="attachment_1733" class="wp-caption aligncenter" style="width: 560px"><a
href="http://bulletpr.co.uk/"><img
class="size-full wp-image-1733" title="bulletpr" src="http://blog.creativityden.com/wp-content/uploads/2009/11/bulletpr.jpg" alt="Bulletpr" width="550" height="250" /></a><p
class="wp-caption-text">Bulletpr</p></div><br
/><div
id="attachment_1734" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.minning.de/"><img
class="size-full wp-image-1734" title="stefan" src="http://blog.creativityden.com/wp-content/uploads/2009/11/stefan.jpg" alt="Stefan Minning" width="550" height="250" /></a><p
class="wp-caption-text">Stefan Minning</p></div><br
/><div
id="attachment_1737" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.trendwolves.com/en/"><img
class="size-full wp-image-1737" title="trendwolves" src="http://blog.creativityden.com/wp-content/uploads/2009/11/trendwolves1.jpg" alt="Trend Wolves" width="550" height="250" /></a><p
class="wp-caption-text">Trend Wolves</p></div><br
/><div
id="attachment_1798" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.gilbertpellegrom.co.uk/"><img
class="size-full wp-image-1798" title="gilbert" src="http://blog.creativityden.com/wp-content/uploads/2009/11/gilbert.jpg" alt="Gilbert Pellegrom" width="550" height="250" /></a><p
class="wp-caption-text">Gilbert Pellegrom</p></div><br
/><div
id="attachment_1799" class="wp-caption aligncenter" style="width: 560px"><a
href="http://ryanjohnson.me/"><img
class="size-full wp-image-1799" title="ryanjohnson" src="http://blog.creativityden.com/wp-content/uploads/2009/11/ryanjohnson.jpg" alt="Ryan Johnson" width="550" height="250" /></a><p
class="wp-caption-text">Ryan Johnson</p></div><br
/><div
id="attachment_1839" class="wp-caption aligncenter" style="width: 560px"><a
href="http://cdharrison.com/"><img
class="size-full wp-image-1839" title="cdharrison" src="http://blog.creativityden.com/wp-content/uploads/2009/11/cdharrison.jpg" alt="cdharrison" width="550" height="250" /></a><p
class="wp-caption-text">cdharrison</p></div><br
/><div
id="attachment_1840" class="wp-caption aligncenter" style="width: 560px"><a
href="http://icondock.com/"><img
class="size-full wp-image-1840" title="icondock" src="http://blog.creativityden.com/wp-content/uploads/2009/11/icondock.jpg" alt="Icon Dock" width="550" height="250" /></a><p
class="wp-caption-text">Icon Dock</p></div><br
/><div
id="attachment_1841" class="wp-caption aligncenter" style="width: 560px"><a
href="http://sean.in.the.phailbucket.com/old/"><img
class="size-full wp-image-1841" title="seangeng" src="http://blog.creativityden.com/wp-content/uploads/2009/11/seangeng.jpg" alt="Sean Geng" width="550" height="250" /></a><p
class="wp-caption-text">Sean Geng</p></div><br
/><div
id="attachment_1842" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.welcomebrand.co.uk/"><img
class="size-full wp-image-1842" title="welcoembrand" src="http://blog.creativityden.com/wp-content/uploads/2009/11/welcoembrand.jpg" alt="welcomebrand" width="550" height="250" /></a><p
class="wp-caption-text">welcomebrand</p></div><br
/><div
id="attachment_1860" class="wp-caption aligncenter" style="width: 560px"><a
href="http://blog.adellecharles.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/11/adelle.jpg" alt="Adelle Charles" title="adelle" width="550" height="250" class="size-full wp-image-1860" /></a><p
class="wp-caption-text">Adelle Charles</p></div><h3>Further Reading</h3><p><a
href="http://cssmarvels.com/archives/19">CSS Fixed Menu &#8211; Pinned-Down Style</a><br
/> <a
href="http://net.tutsplus.com/html-css-techniques/creating-a-floating-html-menu-using-jquery-and-css/">Creating a Floating HTML Menu Using jQuery and CSS</a><br
/> <a
href="http://www.quackit.com/css/codes/css_floating_menu.cfm">CSS Floating Menu</a><br
/> <a
href="http://designm.ag/tutorials/fixed-position-banner/">How to Add a Fixed Position Banner to a Website</a><br
/> <a
href="http://css-tricks.com/absolute-relative-fixed-positioining-how-do-they-differ/">Absolute, Relative, Fixed Positioning: How Do They Differ?</a><br
/> <a
href="http://www.digital-web.com/articles/web_design_101_positioning/">Web Design 101: Positioning</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/fixed-elements-in-web-design-with-examples/feed/</wfw:commentRss> <slash:comments>25</slash:comments> </item> <item><title>Excellent E-Commence Website Designs</title><link>http://blog.creativityden.com/excellent-e-commence-website-designs/</link> <comments>http://blog.creativityden.com/excellent-e-commence-website-designs/#comments</comments> <pubDate>Wed, 15 Jul 2009 21:26:23 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Showcases]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[designs]]></category> <category><![CDATA[e-commence]]></category> <category><![CDATA[excellent]]></category> <category><![CDATA[website]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=1436</guid> <description><![CDATA[Exquisite Design! With the internet getting more and more popular every year, many people have started to build up businesses and sell products and services. These site are know as E-commence sites and they continue to grow. I myself regularly enjoy visiting the fantastic envato marketplaces. If you are talented the why not try making [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/made590-150x150.png" alt="made590" title="made590" width="150" height="150" class="alignnone size-thumbnail wp-image-1519" /></div><div
class="description"><strong>Exquisite Design!</strong></p><p>With the internet getting more and more popular every year, many people have started to build up businesses and sell products and services. These site are know as E-commence sites and they continue to grow. I myself regularly enjoy visiting the fantastic envato marketplaces. If you are talented the why not try making some money?  I hope you enjoy these awesome E-commence site designs!</p></div></div><p><span
id="more-1436"></span></p><div
id="authorbio"></div><p><a
href="http://videohive.net/"><br
/><h2 style="margin: 10px 0 10px 0;">Video Hive</h2><p></a></p><p><a
href="http://videohive.net/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/06/videohive.png" alt="videohive" title="videohive" width="627" height="200" class="alignnone size-full wp-image-1502" /></a></p><hr/><p><a
href="http://www.purevolume.com/"><br
/><h2 style="margin: 20px 0 20px 0;">Pure Volume</h2><p></a></p><p><a
href="http://www.purevolume.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/purevolume.png" alt="purevolume" title="purevolume" width="627" height="200" class="alignnone size-full wp-image-1503" /></a></p><hr/><p><a
href="http://www.oqvestir.com.br/ch/index.aspx"<br /><h2 style="margin: 20px 0 20px 0;">OQVestir</h2><p></a></p><p><a
href="http://www.oqvestir.com.br/ch/index.aspx"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/oqvestir.png" alt="oqvestir" title="oqvestir" width="627" height="200" class="alignnone size-full wp-image-1504" /></a></p><hr/><p><a
href="http://www.clothmoth.com/"><br
/><h2 style="margin: 20px 0 20px 0;">Cloth Moth</h2><p></a></p><p><a
href="http://www.clothmoth.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/clothing.png" alt="clothing" title="clothing" width="627" height="200" class="alignnone size-full wp-image-1505" /></a></p><hr/><p><a
href="http://www.crateandbarrel.com/"<br /><h2 style="margin: 20px 0 20px 0;">Crate and Barrel</h2><p></a></p><p><a
href="http://www.crateandbarrel.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/crate.png" alt="crate" title="crate" width="627" height="200" class="alignnone size-full wp-image-1506" /></a></p><hr/><p><a
href="http://www.miserylovesco.ca/"><br
/><h2 style="margin: 20px 0 20px 0;">Misery</h2><p></a></p><p><a
href="http://www.miserylovesco.ca/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/misery.png" alt="misery" title="misery" width="627" height="200" class="alignnone size-full wp-image-1509" /></a></p><hr/><p><a
href="http://shoeguru.ca/"><br
/><h2 style="margin: 20px 0 20px 0;">Shoe Guru</h2><p></a></p><p><a
href="http://shoeguru.ca/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/shoeguru.png" alt="shoeguru" title="shoeguru" width="627" height="200" class="alignnone size-full wp-image-1510" /></a></p><hr/><p><a
href="http://oakley.com/"><br
/><h2 style="margin: 20px 0 20px 0;">Oakley</h2><p></a></p><p><a
href="http://oakley.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/oakley.png" alt="oakley" title="oakley" width="627" height="200" class="alignnone size-full wp-image-1511" /></a></p><hr/><p><a
href="http://www.woothemes.com/"><br
/><h2 style="margin: 20px 0 20px 0;">Woo Themes</h2><p></a></p><p><a
href="http://www.woothemes.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/woothemes.png" alt="woothemes" title="woothemes" width="627" height="200" class="alignnone size-full wp-image-1512" /></a></p><hr/><p><a
href="http://www.hellothemes.com/"><br
/><h2 style="margin: 20px 0 20px 0;">Hello Themes</h2><p></a></p><p><a
href="http://www.hellothemes.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/hello.png" alt="hello" title="hello" width="627" height="200" class="alignnone size-full wp-image-1513" /></a></p><hr/><p><a
href="http://www.iconbuffet.com/"<br /><h2 style="margin: 20px 0 20px 0;">Icon Buffet</h2><p></a></p><p><a
href="http://www.iconbuffet.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/icon.png" alt="icon" title="icon" width="627" height="200" class="alignnone size-full wp-image-1514" /></a></p><hr/><p><a
href="http://www.creativesoutfitter.com/"<br /><h2 style="margin: 20px 0 20px 0;">Behance Outfitter</h2><p></a></p><p><a
href="http://www.creativesoutfitter.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/behance.png" alt="behance" title="behance" width="627" height="200" class="alignnone size-full wp-image-1515" /></a></p><hr/><p><a
href="http://icondock.com/"><br
/><h2 style="margin: 20px 0 20px 0;">Icon Dock</h2><p></a></p><p><a
href="http://icondock.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/icondock.png" alt="icondock" title="icondock" width="627" height="200" class="alignnone size-full wp-image-1516" /></a></p><hr/><p><a
href="http://onehub.com/"><br
/><h2 style="margin: 20px 0 20px 0;">One Hub</h2><p></a></p><p><a
href="http://onehub.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/onehub.png" alt="onehub" title="onehub" width="627" height="200" class="alignnone size-full wp-image-1517" /></a></p><hr/><p><a
href="http://www.ry.com.au/store/"><br
/><h2 style="margin: 20px 0 20px 0;">RY.</h2><p></a></p><p><a
href="http://www.ry.com.au/store/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/ry.png" alt="ry" title="ry" width="627" height="200" class="alignnone size-full wp-image-1518" /></a></p><hr/><p><a
href="http://www.made590.com.au/"><br
/><h2 style="margin: 20px 0 20px 0;">Made590</h2><p></a></p><p><a
href="http://www.made590.com.au/"><img
src="http://blog.creativityden.com/wp-content/uploads/2009/07/made590.png" alt="made590" title="made590" width="627" height="200" class="alignnone size-full wp-image-1519" /></a></p><hr/> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/excellent-e-commence-website-designs/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>20 Crisp Website Designs</title><link>http://blog.creativityden.com/20-crisp-website-designs/</link> <comments>http://blog.creativityden.com/20-crisp-website-designs/#comments</comments> <pubDate>Thu, 18 Jun 2009 13:39:59 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[crisp]]></category> <category><![CDATA[design]]></category> <category><![CDATA[sleek]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=1317</guid> <description><![CDATA[Pixel Perfect! One of my favourite types of design is crisp or sleek, which you may have realised from Creativityden&#8217;s design. The pixel perfect borders and the subtle gradients look perfect and the design gives off a flawless impression. In my opinion, this type of design provides the perfect base for housing your content. The [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
class="alignnone size-thumbnail wp-image-1328" title="designbits" src="http://blog.creativityden.com/wp-content/uploads/2009/06/designbits-150x150.png" alt="designbits" width="150" height="150" /></div><div
class="description"><strong>Pixel Perfect!</strong></p><p>One of my favourite types of design is crisp or sleek, which you may have realised from Creativityden&#8217;s design. The pixel perfect borders and the subtle gradients look perfect and the design gives off a flawless impression. In my opinion, this type of design provides the perfect base for housing your content. The reader is not distracted by the design and so the content is emphasised. After hours of searching, I believe the sites showcased here are the best of the best. Hope you enjoy them!</p></div></div><p><span
id="more-1317"></span></p><div
id="authorbio"></div><h2 style="padding: 15px 0 15px 0;">Design Bits</h2><p><a
href="http://www.designbits.de/"><img
class="alignnone size-full wp-image-1328" title="designbits" src="http://blog.creativityden.com/wp-content/uploads/2009/06/designbits.png" alt="designbits" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Design Bombs</h2><p><a
href="http://www.designbombs.com/"><img
class="alignnone size-full wp-image-1329" title="designbombs" src="http://blog.creativityden.com/wp-content/uploads/2009/06/designbombs.png" alt="designbombs" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Design Link</h2><p><a
href="http://www.addesignlink.com/"><img
class="alignnone size-full wp-image-1330" title="designlink" src="http://blog.creativityden.com/wp-content/uploads/2009/06/designlink.png" alt="designlink" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Not By The Hour</h2><p><a
href="http://notbythehour.com/"><img
class="alignnone size-full wp-image-1331" title="income" src="http://blog.creativityden.com/wp-content/uploads/2009/06/income.png" alt="income" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Mail Chimp</h2><p><a
href="http://www.mailchimp.com/"><img
class="alignnone size-full wp-image-1332" title="mailchimp" src="http://blog.creativityden.com/wp-content/uploads/2009/06/mailchimp.png" alt="mailchimp" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Modal</h2><p><a
href="http://www.modalinc.com/"><img
class="alignnone size-full wp-image-1333" title="modal" src="http://blog.creativityden.com/wp-content/uploads/2009/06/modal.png" alt="modal" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">OH! Media</h2><p><a
href="http://www.ohmedia.ca/"><img
class="alignnone size-full wp-image-1334" title="ohmedia" src="http://blog.creativityden.com/wp-content/uploads/2009/06/ohmedia.png" alt="ohmedia" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">PSD Layout</h2><p><a
href="http://www.psdlayout.com/"><img
class="alignnone size-full wp-image-1335" title="psd" src="http://blog.creativityden.com/wp-content/uploads/2009/06/psd.png" alt="psd" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">PSD to WP</h2><p><a
href="http://www.psdtowp.com/"><img
class="alignnone size-full wp-image-1336" title="psdtowp" src="http://blog.creativityden.com/wp-content/uploads/2009/06/psdtowp.png" alt="psdtowp" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Rainfall</h2><p><a
href="http://www.rainfall.ro/"><img
class="alignnone size-full wp-image-1337" title="rainfall" src="http://blog.creativityden.com/wp-content/uploads/2009/06/rainfall.png" alt="rainfall" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">ReadWhale</h2><p><a
href="http://www.readwhale.com/"><img
class="alignnone size-full wp-image-1338" title="readwhale" src="http://blog.creativityden.com/wp-content/uploads/2009/06/readwhale.png" alt="readwhale" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Saturized</h2><p><a
href="http://www.saturized.com/"><img
class="alignnone size-full wp-image-1339" title="saturized" src="http://blog.creativityden.com/wp-content/uploads/2009/06/saturized.png" alt="saturized" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Smart Cube</h2><p><a
href="http://smartcube.ie/"><img
class="alignnone size-full wp-image-1340" title="smartcube" src="http://blog.creativityden.com/wp-content/uploads/2009/06/smartcube.png" alt="smartcube" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Sohtanaka</h2><p><a
href="http://www.sohtanaka.com/"><img
class="alignnone size-full wp-image-1341" title="sohtanaka" src="http://blog.creativityden.com/wp-content/uploads/2009/06/sohtanaka.png" alt="sohtanaka" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">STUDIO7DESIGNS</h2><p><a
href="http://www.studio7designs.com/"><img
class="alignnone size-full wp-image-1342" title="studio7" src="http://blog.creativityden.com/wp-content/uploads/2009/06/studio7.png" alt="studio7" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Tutorial9</h2><p><a
href="http://www.tutorial9.net/"><img
class="alignnone size-full wp-image-1343" title="tutorial9" src="http://blog.creativityden.com/wp-content/uploads/2009/06/tutorial9.png" alt="tutorial9" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Tutsplus</h2><p><a
href="http://tutsplus.com/"><img
class="alignnone size-full wp-image-1344" title="tutsplus" src="http://blog.creativityden.com/wp-content/uploads/2009/06/tutsplus.png" alt="tutsplus" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">VisualBox</h2><p><a
href="http://www.visualboxsite.com/"><img
class="alignnone size-full wp-image-1345" title="visualbox1" src="http://blog.creativityden.com/wp-content/uploads/2009/06/visualbox1.png" alt="visualbox1" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">Yoast</h2><p><a
href="http://yoast.com/"><img
class="alignnone size-full wp-image-1346" title="yoast" src="http://blog.creativityden.com/wp-content/uploads/2009/06/yoast.png" alt="yoast" width="627" height="200" /></a></p><hr
/><h2 style="padding: 15px 0 15px 0;">From the couch</h2><p><a
href="http://www.from-the-couch.com/"><img
class="alignnone size-full wp-image-1373" title="couch" src="http://blog.creativityden.com/wp-content/uploads/2009/06/couch.png" alt="couch" width="627" height="200" /></a></p><p>Thanks to all the incredible designers who created these websites.</p> ]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/20-crisp-website-designs/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 4/13 queries in 1.910 seconds using disk

Served from: blog.creativityden.com @ 2010-09-07 12:42:19 -->