<?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>Lee Munroe &#187; tutorial</title> <atom:link href="http://www.leemunroe.com/tags/tutorial/feed/" rel="self" type="application/rss+xml" /><link>http://www.leemunroe.com</link> <description>User Experience and Web Interface Designer Lee Munroe</description> <lastBuildDate>Mon, 16 Jan 2012 19:05:03 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>How To Design A Sexy Button Using CSS</title><link>http://www.leemunroe.com/css-button/</link> <comments>http://www.leemunroe.com/css-button/#comments</comments> <pubDate>Tue, 26 Jan 2010 09:02:24 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Web Design]]></category> <category><![CDATA[buttons]]></category> <category><![CDATA[css]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[p52]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=1753</guid> <description><![CDATA[Last week I launched a holding page for Ecliptic Labs, an iPhone development company based in Belfast (keep an eye on them, there&#8217;s going to be some great stuff from&#8230;<html><body><h1>400 Bad request</h1> Your browser sent an invalid request.</body></html> ]]></description> <content:encoded><![CDATA[<p>Last week I launched a holding page for <a
href="http://eclipticlabs.com/">Ecliptic Labs</a>, an iPhone development company based in Belfast (keep an eye on them, there&#8217;s going to be some great stuff from them this year).</p><p>Here is the holding page in all it&#8217;s glory.</p><p><span
id="more-1753"></span></p><div
style="text-align:center;"><a
href="http://eclipticlabs.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/ecliptic.jpg" alt="ecliptic.jpg" border="0" width="540" height="362" /></a></div><p>One thing you&#8217;ll notice is the big <strong>&#8216;Notify me&#8217; button</strong>. One of the great things about this button is that <strong>it isn&#8217;t a graphic</strong>. It&#8217;s simply <strong>styled using CSS</strong>.</p><p>Advantages of using CSS instead of a graphic:</p><ol><li><strong>Optimisation</strong> &#8211; less file size, less http requests</li><li><strong>Reusable</strong> &#8211; button can be used over and over again for different actions</li><li><strong>Flexible</strong> &#8211; the button can stretch or compact depending on length of the text</li></ol><h4>Styling the button element</h4><p>I&#8217;m going to be using Firefox 3.6 for the previews below.</p><h5>The markup</h5><pre><code>&lt;button&gt;Notify me&lt;/button&gt;</code></pre><p>This is how the default button looks.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/1.jpg" alt="1.jpg" border="0" width="92" height="55" /></div><h5>Basic styling</h5><p>First apply some basic styling to get started.</p><pre><code>button{
color:#08233e;
font:2.4em Futura, ‘Century Gothic’, AppleGothic, sans-serif;
padding:14px;
}</code></pre><p>Nothing strange or startling about these styles. This is what we have now.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/2.jpg" alt="2.jpg" border="0" width="163" height="68" /></div><h5>Background</h5><p>Let&#8217;s add a background. Remember, we want to make the button reusable for any colour.</p><ol><li>Go into Photoshop and create a new image 10px x 100px</li><li>Create a white rectangular shape that covers the top half of the canvas on a new layer</li><li>Give that layer 30% opacity and make the background transparent</li><li>Save that image as <a
href="http://www.leemunroe.com/wp-content/uploads/overlay.png">overlay.png</a></li></ol><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/3.jpg" alt="3.jpg" border="0" width="161" height="194" /></div><p>Decide what background colour you want to use and apply it to the button along with the overlay you just made.</p><pre><code>background:url(overlay.png) repeat-x center #ffcc00;</code></pre><p>This gives us a nice yellow background with a glossy overlay.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/4.jpg" alt="4.jpg" border="0" width="178" height="84" /></div><h5>Border</h5><p>Now get rid of that horrible outset border. Let&#8217;s give it a fine border that matches the background colour.</p><pre><code>border:1px solid #ffcc00;</code></pre><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/5.jpg" alt="5.jpg" border="0" width="187" height="92" /></div><h5>Rounded corners</h5><p>Make your button a bit friendlier by giving it rounded corners. This is where Webkit and Mozilla browser users will take advantage, while IE browsers will be stuck with sharp corners.</p><pre><code>-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;</code></pre><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/6.jpg" alt="6.jpg" border="0" width="182" height="89" /></div><p>Starting to look good eh? But a good designer likes to pay attention to detail.</p><h5>Pixel perfection</h5><p>Now finish off the button with some pixel perfect embossing. We&#8217;re going to give it a 1 pixel border and a 1 pixel inset shadow.</p><pre><code>border-bottom:1px solid #9f9f9f;
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);</code></pre><p>Notice how we&#8217;re using RGBA colours here. This allows us to apply alpha opacity to the colour. In this case, we&#8217;re giving white a 50% opacity.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/7.jpg" alt="7.jpg" border="0" width="179" height="86" /></div><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/8.jpg" alt="8.jpg" border="0" width="179" height="86" /></div><h5>Make it clickable</h5><p>We know it&#8217;s a button and that it can be clicked but users might not. Change the cursor to a pointer so users know they can click it.</p><pre><code>cursor:pointer;</code></pre><h5>Hover state</h5><p>We now have a pretty sexy looking button. But what about a hover state?</p><p>To save us from thinking about a colour for the hover state, we can use the RGBA approach. Let&#8217;s revisit the background style. Add this after your background declaration.</p><pre><code>background-color:rgba(255,204,0,1);</code></pre><p>Nothing changes. All we did was change it to the same colour but using RGBA.</p><p>But how for the button&#8217;s hover state, give it the same background colour but alter the opacity slightly.</p><pre><code>button:hover{background-color:rgba(255,204,0,0.8);}</code></pre><p>This gives us a slightly different shade of background on hover, giving the user some feedback so they know they&#8217;ve hovered over a clickable button.</p><h5>Put it all together</h5><p>The final code.</p><pre><code>button{
color:#08233e;
font:2.4em Futura, ‘Century Gothic’, AppleGothic, sans-serif;
padding:14px;
background:url(images/splash/button.png) repeat-x center #ffcc00;background-color:rgba(255,204,0,1);
border:1px solid #ffcc00;
-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;
border-bottom:1px solid #9f9f9f;
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
cursor:pointer;
}

button:hover{background-color:rgba(255,204,0,0.8);}

button:active{position:relative;top:2px;}</code></pre><p>I&#8217;ve slipped in an active state as well for the button so the user knows when they&#8217;ve clicked it.</p><p>This is how it looks in Firefox:</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/9.jpg" alt="9.jpg" border="0" width="181" height="89" /></div><p><strong>And this is an active preview.</strong></p><style type="text/css">button.preview{
color:#08233e;
font:2.4em Futura, ‘Century Gothic’, AppleGothic, sans-serif;
padding:14px;
background:url(http://www.leemunroe.com/wp-content/uploads/overlay.png) repeat-x center #ffcc00;background-color:rgba(255,204,0,1);
border:1px solid #ffcc00;
-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;
border-bottom:1px solid #9f9f9f;
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
cursor:pointer;
}button:hover{background-color:rgba(255,204,0,0.8);}button.preview:active{position:relative;top:2px;}</style><div
style="text-align:center"> <button
class="preview">Notify me</button></div><p>Remember the button is reusable so if you apply a class to the button, e.g. class=&#8221;save&#8221;, you can apply a different colour to this button.</p><pre><code>button.save{
background-color:#a7dd32;background-color:rgba(167,221,50,1);
border-color:#a7dd32;
}

button.save:hover{
background-color:rgba(167,221,50,0.8);
}</code></pre><p>And you&#8217;d get something like this.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/10.jpg" alt="10.jpg" border="0" width="180" height="91" /></div><h5>But what about Internet Explorer?</h5><p>Yes, unfortunately IE users won&#8217;t get the full benefits of the sexy button. However, it doesn&#8217;t look that bad and to IE users it will seem like there is nothing wrong.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/11.jpg" alt="11.jpg" border="0" width="171" height="70" /></div><p>And IE6? It doesn&#8217;t support PNG transparency so you can remove the overlay background image with an IE6 conditional stylesheet.</p><pre><code>&lt;!--[if lt IE 7]&gt;
&lt;link rel="stylesheet" href="ie.css" type="text/css" /&gt;
&lt;![endif]--&gt;</code></pre><p>Then in ie.css:</p><pre><code>button{background-image:none !important;}</code></pre><p>And there you have it. A beautifully designed button using (pretty much) only CSS.</p><p><a
href="http://eclipticlabs.com"><img
src="http://www.leemunroe.com/wp-content/uploads/field.jpg" alt="field" title="field" width="540" height="102" class="alignnone size-full wp-image-1770" /></a></p><h4>Further reading</h4><p>I highly recommend you check out this great tutorial by Zurb on <a
href="http://www.zurb.com/article/266/super-awesome-buttons-with-css3-and-rgba">super awesome buttons with CSS3 and RGBA</a>. A handy tutorial for styling reusable buttons.</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/css-button/feed/</wfw:commentRss> <slash:comments>20</slash:comments> </item> <item><title>Web Design Trends: Designing Out Of The Box</title><link>http://www.leemunroe.com/designing-out-of-the-box/</link> <comments>http://www.leemunroe.com/designing-out-of-the-box/#comments</comments> <pubDate>Tue, 07 Apr 2009 09:00:49 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Trends & Inspiration]]></category> <category><![CDATA[box]]></category> <category><![CDATA[container]]></category> <category><![CDATA[css]]></category> <category><![CDATA[trends]]></category> <category><![CDATA[tutorial]]></category> <category><![CDATA[Web Design]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=1224</guid> <description><![CDATA[This is a creative trend catching on. It&#8217;s very simple to do but adds an extra element of character and uniqueness to a design. Take a look at how to&#8230;]]></description> <content:encoded><![CDATA[<p>This is a creative trend catching on. It&#8217;s very simple to do but adds an extra element of character and uniqueness to a design.</p><p>Take a look at how to implement this &#8216;out of the box&#8217; technique and a list of creative websites that are using it.</p><p><span
id="more-1224"></span></p><h4>Setup</h4><p>First setup your page and graphic. I&#8217;m using this graphic.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/logo.png" border="0" alt="Logo" width="237" height="99" /></div><p>The HTML for my page is like so:</p><pre><code>&lt;div id="container"&gt;
&lt;img id="logo" src="logo.png" alt="Lee Munroe" /&gt;
&lt;/div&gt;</code></pre><p>And the CSS looks like this:</p><pre><code>body{
background:#999999;
}

#container{
width:960px;
background:#fff;
margin:20px auto;
padding:10px;
}</code></pre><p>Here&#8217;s a preview of what we have so far:</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/b-11.jpg" border="0" alt="Inside box" width="540" height="150" /></div><h4>Positioning is relative</h4><p>When we position the logo we want the positioning to be relative to the container, therefore make the position relative:</p><pre><code>#container{
width:960px;
background:#fff;
margin:20px auto;
padding:10px;
position:relative;
}</code></pre><h4>Position it outside the box</h4><p>Now all you have to do is position your logo. Place it horizontally so the tag sticks out of the container.</p><pre><code>#logo{
position:absolute;
left:-15px;
}</code></pre><p>Now we have our logo sitting outside the box. Easy!</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/b-2.jpg" border="0" alt="Outside box" width="540" height="150" /></div><h4>15 creative designs using the &#8216;out of the box&#8217; technique</h4><h5><a
href="http://www.changeincommand.com/">Change in Command</a></h5><div
style="text-align:center;"><a
href="http://www.changeincommand.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/b-12.jpg" border="0" alt="Change in Command" width="512" height="384" /></a></div><h5><a
href="http://www.icondesigner.net/">Icon Designer</a></h5><div
style="text-align:center;"><a
href="http://www.icondesigner.net/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-212.jpg" border="0" alt="Icon Designer" width="512" height="384" /></a></div><h5><a
href="http://yoast.com/">Yoast</a></h5><div
style="text-align:center;"><a
href="http://yoast.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-312.jpg" border="0" alt="Yoast" width="512" height="384" /></a></div><h5><a
href="http://www.twiistup.com/">Twiistup</a></h5><div
style="text-align:center;"><a
href="http://www.twiistup.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-67.jpg" border="0" alt="Twiistup" width="512" height="384" /></a></div><h5><a
href="http://thedesignsuperhero.com/">The Design Superhero</a></h5><div
style="text-align:center;"><a
href="http://thedesignsuperhero.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-93.jpg" border="0" alt="The Design Superhero" width="512" height="384" /></a></div><h5><a
href="http://www.ericryananderson.com/">Eric Ryan Anderson</a></h5><div
style="text-align:center;"><a
href="http://www.ericryananderson.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-412.jpg" border="0" alt="Eric Ryan Anderson" width="512" height="384" /></a></div><h5><a
href="http://www.rockwerchter.be/en/home/">Rock Werchter</a></h5><div
style="text-align:center;"><a
href="http://www.rockwerchter.be/en/home/"><img
src="http://www.leemunroe.com/wp-content/uploads/rock.jpg" border="0" alt="Rock Werchter" width="512" height="384" /></a></div><h5><a
href="http://www.freelancesuite.com/demo/">Freelance Suite</a></h5><div
style="text-align:center;"><a
href="http://www.freelancesuite.com/demo/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-73.jpg" border="0" alt="Freelance Suite" width="512" height="384" /></a></div><h5><a
href="http://hipsterist.com/">Hipsterist</a></h5><div
style="text-align:center;"><a
href="http://hipsterist.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-82.jpg" border="0" alt="Hipsterist" width="512" height="384" /></a></div><h5><a
href="http://creamscoop.com/">CreamScoop</a></h5><div
style="text-align:center;"><a
href="http://creamscoop.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-104.jpg" border="0" alt="CreamScoop" width="512" height="384" /></a></div><h5><a
href="http://brightkite.com/">Bright Kite</a></h5><div
style="text-align:center;"><a
href="http://brightkite.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-123.jpg" border="0" alt="Bright Kite" width="512" height="384" /></a></div><h5><a
href="http://www.from-the-couch.com/">From The Couch</a></h5><div
style="text-align:center;"><a
href="http://www.from-the-couch.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/couch.jpg" border="0" alt="From The Couch" width="512" height="384" /></a></div><h5><a
href="http://designm.ag/">DesignM.ag</a></h5><div
style="text-align:center;"><a
href="http://designm.ag/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-133.jpg" border="0" alt="DesignM.ag" width="512" height="384" /></a></div><h5><a
href="http://ma.tt/">Matt Mullenweg</a></h5><div
style="text-align:center;"><a
href="http://ma.tt/"><img
src="http://www.leemunroe.com/wp-content/uploads/matt.jpg" border="0" alt="Matt Mullenweg" width="512" height="384" /></a></div><p><strong><em>Feel free to share your thoughts on this and other emerging trends.</em></strong></p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/designing-out-of-the-box/feed/</wfw:commentRss> <slash:comments>35</slash:comments> </item> <item><title>Call To Action Buttons</title><link>http://www.leemunroe.com/call-to-action-buttons/</link> <comments>http://www.leemunroe.com/call-to-action-buttons/#comments</comments> <pubDate>Mon, 15 Dec 2008 12:06:01 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Trends & Inspiration]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[action]]></category> <category><![CDATA[app]]></category> <category><![CDATA[buttons]]></category> <category><![CDATA[calltoaction]]></category> <category><![CDATA[download]]></category> <category><![CDATA[showcase]]></category> <category><![CDATA[signup]]></category> <category><![CDATA[trends]]></category> <category><![CDATA[tutorial]]></category> <category><![CDATA[webapp]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=753</guid> <description><![CDATA[Call to action buttons are the buttons that you, as a web designer, want all your users to click on when they land on your page. Usually they&#8217;ll be a&#8230;]]></description> <content:encoded><![CDATA[<p>Call to action buttons are the buttons that you, as a web designer, <strong>want all your users to click on</strong> when they land on your page. Usually they&#8217;ll be a link to a <strong>download, signup or sale</strong>.</p><p>Seth Godin (<a
href="http://www.amazon.co.uk/gp/product/0743220862?ie=UTF8&amp;tag=leemunroe-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=0743220862">The Big Red Fez</a>) calls them <strong>bananas</strong> and your <strong>users are the monkeys</strong>. The objective is for the monkey to find the banana in less than 3 seconds (before they give up and leave). &#8220;Force yourself to design each and every page with one and only one primary objective. That&#8217;s the banana. Make it big. Make it blue (or red). Make it obvious.&#8221;</p><p><a
href="http://www.leemunroe.com/web-design-trends-call-to-action-signup-download-buttons/"><img
class="alignnone size-full wp-image-758" title="but" src="http://www.leemunroe.com/wp-content/uploads/but.gif" alt="" /></a></p><p>This post discusses <strong>how to design the perfect &#8216;call to action&#8217; button</strong> and showcases <strong>30 examples of good call to action button designs</strong>.</p><p><span
id="more-753"></span></p><h4>How to design the perfect call to action button</h4><blockquote
class="pullquote"><p>Force yourself to design each and every page with one and only one primary objective. <span
class="author">- Seth Godin</span></p></blockquote><p>Your call to action button needs to be <strong>obvious</strong> and<strong> jump out</strong> at the user. Here&#8217;s 5 characteristics of a good call to action button.</p><h5>1. Colour</h5><p>The colour should stand out from the rest of the page, and is therefore usually a <strong>brighter, contrasting</strong> colour.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/button1.gif" border="0" alt="Colour" width="109" height="71" /></div><h5>2. Location</h5><p>It should be located where the user would expect to find it easily. <strong>Above the fold</strong>, beside a product, in the header, top right navigation; it should be <strong>obvious</strong> and not hard to find.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/button2.gif" border="0" alt="Location" width="403" height="61" /></div><h5>3. Language</h5><p>The language you use to communicate with your user is important. It should be short, to the point (no waffling) and should start with an <strong>action verb</strong> like <strong>signup</strong>, download, create, try etc.</p><p>And give the user a reason to click on your call to action button, &#8216;<strong>free</strong>&#8216; being the number one incentive.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/button4.gif" border="0" alt="Language" width="234" height="90" /></div><h5>4. Size matters</h5><p>To make it obvious that it&#8217;s your most important button and that you want users to click on it, make it <strong>bigger</strong> than any other button and give the user as much area as possible to click on.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/button6.gif" border="0" alt="Size" width="389" height="182" /></div><h5>5. Room to breathe</h5><p>Your button shouldn&#8217;t be overcrowded with other elements. It needs sufficient<strong> margins</strong> so it can be distinguished and the text needs enough <strong>padding</strong> so it&#8217;s easy to read.</p><div
style="text-align:center;"><img
src="http://www.leemunroe.com/wp-content/uploads/button5.gif" border="0" alt="Room to breathe" width="241" height="104" /></div><h4>Showcase of good examples of call to action buttons</h4><h5>1. <a
href="http://www.culturedcode.com/things/">Things</a></h5><div
style="text-align:center;"><a
href="http://www.culturedcode.com/things/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-112.png" border="0" alt="Things" width="540" height="200" /></a></div><h5>2. <a
href="http://www.instinct.co.nz/e-commerce/">WordPress e-Commerce</a></h5><div
style="text-align:center;"><a
href="http://www.instinct.co.nz/e-commerce/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-210.png" border="0" alt="Wordpress e-Commerce" width="540" height="200" /></a></div><h5>3. <a
href="http://www.skype.com/intl/en-gb/">Skype</a></h5><div
style="text-align:center;"><a
href="http://www.skype.com/intl/en-gb/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-31.png" border="0" alt="CM Capture 3.png" width="540" height="200" /></a></div><h5>4. <a
href="http://pbwiki.com/">PB Wiki</a></h5><div
style="text-align:center;"><a
href="http://pbwiki.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-41.png" border="0" alt="PB Wiki" width="540" height="200" /></a></div><h5>5. <a
href="http://getexceptional.com/">Exceptional</a></h5><div
style="text-align:center;"><a
href="http://getexceptional.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-51.png" border="0" alt="Exceptional" width="540" height="200" /></a></div><h5>6. <a
href="http://picsengine.com/">PicsEngine</a></h5><div
style="text-align:center;"><a
href="http://picsengine.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-311.png" border="0" alt="PicsEngine" width="540" height="200" /></a></div><h5>7. <a
href="http://goincase.com/products/detail/fitted-sleeve-es89015">InCase</a></h5><div
style="text-align:center;"><a
href="http://goincase.com/products/detail/fitted-sleeve-es89015"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-71.png" border="0" alt="InCase" width="540" height="200" /></a></div><h5>8. <a
href="http://goodbarry.com/">GoodBarry</a></h5><div
style="text-align:center;"><a
href="http://goodbarry.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-81.png" border="0" alt="GoodBarry" width="540" height="200" /></a></div><h5>9. <a
href="http://www.planhq.com/">Plan HQ</a></h5><div
style="text-align:center;"><a
href="http://www.planhq.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-91.png" border="0" alt="Plan HQ" width="540" height="200" /></a></div><h5>10. <a
href="http://www.typepad.com/pricing/">TypePad</a></h5><div
style="text-align:center;"><a
href="http://www.typepad.com/pricing/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-101.png" border="0" alt="TypePad" width="540" height="200" /></a></div><h5>11. <a
href="http://www.mozilla.com/en-US/firefox/">Mozilla Firefox</a></h5><div
style="text-align:center;"><a
href="http://www.mozilla.com/en-US/firefox/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-113.png" border="0" alt="Mozilla Firefox" width="540" height="200" /></a></div><h5>12. <a
href="http://www.basecamphq.com/?source=37s+home">37 Signals</a></h5><div
style="text-align:center;"><a
href="http://www.basecamphq.com/?source=37s+home"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-121.png" border="0" alt="37 Signals" width="540" height="200" /></a></div><h5>13. <a
href="http://www.hambodesign.com.au/">Hambo Design</a></h5><div
style="text-align:center;"><a
href="http://www.hambodesign.com.au/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-32.png" border="0" alt="Hambo Design" width="540" height="200" /></a></div><h5>14. <a
href="http://cakephp.org/">Cake PHP</a></h5><div
style="text-align:center;"><a
href="http://cakephp.org/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-141.png" border="0" alt="Cake PHP" width="540" height="200" /></a></div><h5>15. <a
href="http://www.playintraffik.com/">Traffik</a></h5><div
style="text-align:center;"><a
href="http://www.playintraffik.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-151.png" border="0" alt="Traffik" width="540" height="200" /></a></div><h5>16. <a
href="http://boagworld.com">Boag World</a></h5><div
style="text-align:center;"><a
href="http://boagworld.com"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-161.png" border="0" alt="Boag World" width="540" height="200" /></a></div><h5>17. <a
href="http://www.donortools.com/">Donor Tools</a></h5><div
style="text-align:center;"><a
href="http://www.donortools.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-171.png" border="0" alt="Donor Tools" width="540" height="200" /></a></div><h5>18. <a
href="http://lukelarsen.com/">Luke Larsen</a></h5><div
style="text-align:center;"><a
href="http://lukelarsen.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-181.png" border="0" alt="Luke Larsen" width="540" height="200" /></a></div><h5>19. <a
href="http://www.squarespace.com/">Square Space</a></h5><div
style="text-align:center;"><a
href="http://www.squarespace.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-191.png" border="0" alt="Square Space" width="540" height="200" /></a></div><h5>20. <a
href="http://wufoo.com/">Wu Foo</a></h5><div
style="text-align:center;"><a
href="http://wufoo.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-201.png" border="0" alt="Wu Foo" width="540" height="200" /></a></div><h5>21. <a
href="http://www.barackobama.com">Barack Obama</a></h5><div
style="text-align:center;"><a
href="http://www.barackobama.com"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-211.png" border="0" alt="Barack Obama" width="540" height="200" /></a></div><h5>22. <a
href="http://www.freshbooks.com/">Freshbooks</a></h5><div
style="text-align:center;"><a
href="http://www.freshbooks.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-221.png" border="0" alt="Freshbooks" width="540" height="200" /></a></div><h5>23. <a
href="http://crazyegg.com/">Crazy Egg</a></h5><div
style="text-align:center;"><a
href="http://crazyegg.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-231.png" border="0" alt="Crazy Egg" width="540" height="200" /></a></div><h5>24. <a
href="http://www.webnotes.net/">Web Notes</a></h5><div
style="text-align:center;"><a
href="http://www.webnotes.net/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-33.png" border="0" alt="Web Notes" width="540" height="200" /></a></div><h5>25. <a
href="http://www.campaignmonitor.com/">Campaign Monitor</a></h5><div
style="text-align:center;"><a
href="http://www.campaignmonitor.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-251.png" border="0" alt="Campaign Monitor" width="540" height="200" /></a></div><h5>26. <a
href="http://www.speaklight.com/">Light CMS</a></h5><div
style="text-align:center;"><a
href="http://www.speaklight.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-261.png" border="0" alt="CM Capture 26.png" width="540" height="200" /></a></div><h5>27. <a
href="http://litmusapp.com/">Litmus</a></h5><div
style="text-align:center;"><a
href="http://litmusapp.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-271.png" border="0" alt="Light CMS" width="540" height="200" /></a></div><h5>28. <a
href="http://www.stumbleupon.com/">Stumble Upon</a></h5><div
style="text-align:center;"><a
href="http://www.stumbleupon.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-281.png" border="0" alt="Stumble Upon" width="540" height="200" /></a></div><h5>29. <a
href="http://www.rememberthemilk.com/">Remember The Milk</a></h5><div
style="text-align:center;"><a
href="http://www.rememberthemilk.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-291.png" border="0" alt="Remember The Milk" width="540" height="200" /></a></div><h5>30. <a
href="http://www.ekklesia360.com/">Ekklesia 360</a></h5><div
style="text-align:center;"><a
href="http://www.ekklesia360.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/cm-capture-30.png" border="0" alt="Ekklesia 360" width="540" height="200" /></a></div><h4>Further reading</h4><ul><li><a
href="http://www.amazon.co.uk/gp/product/0743220862?ie=UTF8&amp;tag=leemunroe-21&amp;linkCode=as2&amp;camp=1634&amp;creative=6738&amp;creativeASIN=0743220862">The Big Red Fez</a> Easy read by Seth Godin on how to make your website better</li></ul><p>Any other pointers you like to offer or any other good examples you know off, please share them in the comments below.</p><p><span
style="color:#aaa;">Sponsored link:</span> Excellent <a
href="http://www.psprint.com/brochures">printing brochures</a> available at <a
href="http://www.psprint.com/">PsPrint</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/call-to-action-buttons/feed/</wfw:commentRss> <slash:comments>120</slash:comments> </item> <item><title>Web Design Trends: Sunbursts and Sun Rays</title><link>http://www.leemunroe.com/web-design-trends-sunbursts-sunrays-photoshop/</link> <comments>http://www.leemunroe.com/web-design-trends-sunbursts-sunrays-photoshop/#comments</comments> <pubDate>Tue, 09 Dec 2008 09:00:34 +0000</pubDate> <dc:creator>Lee</dc:creator> <category><![CDATA[Trends & Inspiration]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[photoshop]]></category> <category><![CDATA[showcase]]></category> <category><![CDATA[sunburst]]></category> <category><![CDATA[sunray]]></category> <category><![CDATA[trends]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.leemunroe.com/?p=678</guid> <description><![CDATA[Sunbursts are a very popular design trend within web and graphic design. A sunburst represents sun rays (or beams) exploding from a source point. They&#8217;re a Web 2.0 trend but&#8230;]]></description> <content:encoded><![CDATA[<p>Sunbursts are a very popular design trend within web and graphic design. A sunburst represents sun rays (or beams) exploding from a source point. They&#8217;re a Web 2.0 trend but they tend to work well with other graphical elements.</p><p>This post looks at <strong>how to create your own sunbursts</strong>, using existing <strong>Photoshop shapes and brushes</strong> and I&#8217;ve showcased <strong>15 beautiful websites that include the sunburst effect</strong> in some shape or form.</p><div
style="text-align:center;"><a
href="http://www.leemunroe.com/web-design-trends-sunbursts-sunrays-photoshop"><img
src="http://www.leemunroe.com/wp-content/uploads/sunburst.jpg" border="0" alt="Sunburst" width="540" height="200" /></a></div><p><span
id="more-678"></span></p><h4>Sunburst Photoshop tutorial and resources</h4><h5>Sunburst/sun ray tutorial</h5><div
style="text-align:center;"><a
href="http://www.leemunroe.com/web-design-trends-sunbursts-sunrays-photoshop/"><img
src="http://img.youtube.com/vi/rJ9l9zDXTgE/default.jpg" width="130" height="97" border=0></a></div><p>Thanks to <a
href="http://www.youtube.com/user/IceflowStudios">Iceflow Studios</a> for the video tutorial.</p><h5>Photoshop sunburst brushes</h5><div
style="text-align:center;"><a
href="http://qbrushes.com/objects/risingsun-brushes/"><img
src="http://www.leemunroe.com/wp-content/uploads/brushes.jpg" border="0" alt="Photoshop brushes" width="540" height="199" /></a></div><h5>Photoshop sunburst shapes</h5><div
style="text-align:center;"><a
href="http://backflip540.deviantart.com/art/backflip540-sunburst-shapes-61047273"><img
src="http://www.leemunroe.com/wp-content/uploads/shapes.jpg" border="0" alt="Photoshop shapes" width="300" height="225" /></a></div><h4>Showcase of beautiful websites using the sunburst effect</h4><h5>1. <a
href="http://www.nomilktoday.be/">No Milk Today</a></h5><div
style="text-align:center;"><a
href="http://www.nomilktoday.be/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-114.png" border="0" alt="No Milk Today" width="512" height="384" /></a></div><h5>2. <a
href="http://www.thatindiedude.com/">That Indie Dude</a></h5><div
style="text-align:center;"><a
href="http://www.thatindiedude.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-26.png" border="0" alt="That Indie Dude" width="512" height="384" /></a></div><h5>3. <a
href="http://www.nikolamircic.com/archive/sms/index.html">SMS Parking</a></h5><div
style="text-align:center;"><a
href="http://www.nikolamircic.com/archive/sms/index.html"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-33.png" border="0" alt="SMS Parking" width="512" height="384" /></a></div><h5>4. <a
href="http://www.yovivoenvigo.com/">Yo Vivo en Vigo</a></h5><div
style="text-align:center;"><a
href="http://www.yovivoenvigo.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-43.png" border="0" alt="Yo Vivo en Vigo" width="512" height="384" /></a></div><h5>5. <a
href="http://www.imenestrelli.it/">i Menestrelli di Graelion</a></h5><div
style="text-align:center;"><a
href="http://www.imenestrelli.it/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-53.png" border="0" alt="i Menestrelli di Graelion" width="512" height="384" /></a></div><h5>6. <a
href="http://ciclismourbano.info/">Ciclismo Urbano</a></h5><div
style="text-align:center;"><a
href="http://ciclismourbano.info/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-64.png" border="0" alt="Ciclismo Urbano" width="512" height="384" /></a></div><h5>7. <a
href="http://therelevantelephant.com/">The Relevant Elephant</a></h5><div
style="text-align:center;"><a
href="http://therelevantelephant.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-73.png" border="0" alt="The Relevant Elephant" width="512" height="384" /></a></div><h5>8. <a
href="http://www.futureofwebdesign.com/2008/newyork/">Future of Web Design New York</a></h5><div
style="text-align:center;"><a
href="http://www.futureofwebdesign.com/2008/newyork/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-83.png" border="0" alt="Future of Web Design New York" width="512" height="384" /></a></div><h5>9. <a
href="http://jaredcampbell.com/">Jared Campbell</a></h5><div
style="text-align:center;"><a
href="http://jaredcampbell.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-93.png" border="0" alt="Jared Campbell" width="512" height="384" /></a></div><h5>10. <a
href="http://www.kindledinme.com/">Kindle</a></h5><div
style="text-align:center;"><a
href="http://www.kindledinme.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-102.png" border="0" alt="Kindle" width="512" height="384" /></a></div><h5>11. <a
href="http://www.morgan-hayes.com/">Morgan Hayes</a></h5><div
style="text-align:center;"><a
href="http://www.morgan-hayes.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/morgan.jpg" border="0" alt="morgan.jpg" width="512" height="384" /></a></div><h5>12. <a
href="http://www.sr28.com/">SR28</a></h5><div
style="text-align:center;"><a
href="http://www.sr28.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-115.png" border="0" alt="SR28" width="512" height="384" /></a></div><h5>13. <a
href="http://www.phizz.biz/">Phizz</a></h5><div
style="text-align:center;"><a
href="http://www.phizz.biz/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-122.png" border="0" alt="Phizz" width="512" height="384" /></a></div><h5>14. <a
href="http://www.glasshills.co.uk/">Glass Hills</a></h5><div
style="text-align:center;"><a
href="http://www.glasshills.co.uk/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-132.png" border="0" alt="Glass Hills" width="512" height="384" /></a></div><h5>15. <a
href="http://www.polldaddy.com/">Poll Daddy</a></h5><div
style="text-align:center;"><a
href="http://www.polldaddy.com/"><img
src="http://www.leemunroe.com/wp-content/uploads/snap-142.png" border="0" alt="Poll Daddy" width="512" height="384" /></a></div><p>Any thoughts on the sunburst trend? Do you like it, hate it, use it?</p> ]]></content:encoded> <wfw:commentRss>http://www.leemunroe.com/web-design-trends-sunbursts-sunrays-photoshop/feed/</wfw:commentRss> <slash:comments>23</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching 22/30 queries in 0.086 seconds using disk: basic

Served from: www.leemunroe.com @ 2012-02-04 04:30:59 -->
