<?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>Echo Enduring Blog &#187; Websites</title>
		<atom:link href="http://blog.echoenduring.com/tag/websites/feed/" rel="self" type="application/rss+xml" />
		<link>http://blog.echoenduring.com</link>
		<description>A Web and Graphic Design Blog</description>
		<lastBuildDate>Thu, 01 Dec 2011 13:56:22 +0000</lastBuildDate>
		<language>en</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
		<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
			<title>Quick Tip: SVG Fonts &amp; @font-face</title>
			<link>http://blog.echoenduring.com/2011/12/01/quick-tip-svg-fonts-font-face/</link>
			<comments>http://blog.echoenduring.com/2011/12/01/quick-tip-svg-fonts-font-face/#comments</comments>
			<pubDate>Thu, 01 Dec 2011 13:56:22 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Articles]]></category>
			<category><![CDATA[@font-face]]></category>
			<category><![CDATA[SVG]]></category>
			<category><![CDATA[typography]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=5574</guid>
			<description><![CDATA[In this post we will take a quick look at an issue that occasionally creeps up and prevents the loading of SVG fonts through @font-face. The issue, while quite small and very simple to resolve, has the potential to drive the average developer mad with frustration. Hopefully this quick tip will help prevent that!<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2011%2F12%2F01%2Fquick-tip-svg-fonts-font-face%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2011%2F12%2F01%2Fquick-tip-svg-fonts-font-face%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>So a couple weeks back I was doing some work on a client website. I had just recently signed up for <a href="http://www.typekit.com/" title="TypeKit">TypeKit</a> and was using that to serve up the custom fonts for the site. It was working splendidly. The only exception in my early round of testing was on my iPhone 3G. In technology terms, my phone is definitely getting old now, but I am still using it and am running iOS 4.1, which is incompatible with TypeKit. So, instead of getting Adelle served up, I was just getting a standard sans-serif default from my font stack.</p><p>Was this acceptable? Probably. Everything degraded gracefully enough, but I really liked that slab-serif appearance and wanted to bring it to the website on my iPhone too. So, without getting into all the gritty details, I downloaded <a href="http://www.fontsquirrel.com/fonts/arvo" title="Arvo">Arvo from FontSquirrel</a> and coded the site so the font would be accessed by the iPhone as required. Everything seemed to be set up properly.</p><p>Except that the font was not being rendered.</p><p>I spent several hours tearing my hair out trying to figure this one out. I had successfully used @font-face with files from FontSquirrel before, and seen them rendered on my iPhone, so I knew it could be done. I just couldn&#8217;t figure out why it wasn&#8217;t rendering in this instance.</p><h3>Solving the Problem</h3><p>After testing to make sure that my stylesheets were being loaded, and turning off TypeKit to confirm that Arvo was being loaded in other browsers (which it <em>was</em>), I slowly determined that the problem had something to do with the SVG files that I was using. I am by no means an expert in SVG and only understand into conceptual terms. But, as I did some digging through the code of sites I knew were working and the code of the site that I was actually working on, I discovered a strange irregularity.</p><p>There is a tag within the XML of the SVG file which looked something like this:</p><pre><code>&lt;font id="webfontOTINA1xY" horiz-adv-x="335"&gt;</code></pre><p>What was interesting about this tag was the id attribute. In the stylesheet supplied in the @font-face kit downloaded from FontSquirrel, the font declarations look like this:</p><pre><code>@font-face {font-family: 'ArvoRegular'; src: url('Arvo-Regular-webfont.eot'); src: url('Arvo-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('Arvo-Regular-webfont.woff') format('woff'), url('Arvo-Regular-webfont.ttf') format('truetype'),<strong>url('Arvo-Regular-webfont.svg#ArvoRegular') format('svg');</strong>font-weight: normal; font-style: normal; }</code></pre><p>I have bolded the line specifically relating to the SVG version of the font. Notice the fragment identifier after the file name. When I went back and looked at the site that was working, this value was identical to the id attribute of the font tag in the SVG&#8217;s XML. This got me thinking, and I actually went in and changed this id attribute to be the <em>same</em> as the fragment identifier of the @font-face code that was calling it.</p><p>As soon as I did that, Arvo was rendering perfectly on my iPhone. It was a ridiculously easy fix that only served to irritate me more, since I had spent several hours working on the issue.</p><p>Again, I am not an expert in SVG, but here&#8217;s what I think is going on. The &lt;font&gt; tag within the XML seems to contain the entire character set, while the id attribute provides the unique identifier for that particular font. When the SVG file is called within the @font-face declaration, the fragment identifier seems to be required to tell the CSS rendering engine what block of code to use, even though there is only one font declared in the file.</p><p>This seems to suggest that you might be able to combine all of your SVG fonts into a single file and then access them through the appropriate fragment identifiers. I have not tested this, though, so if any SVG experts would like to chime in on this one, that would be awesome.</p><h3>A FontSquirrel Bug?</h3><p>Don&#8217;t get me wrong: I love FontSquirrel. I even listed them in a post about <a href="http://blog.echoenduring.com/2010/08/07/10-of-my-favorite-online-tools-for-design-and-development/" title="10 Of My Favorite Online Tools for Design and Development">10 of my favourite online tools</a> for design and development. There does, however, seem to be a slight bug in their kit generation. From what I understand, they build their own SVG files, based on the existing font files for most of their typefaces. So far, they seem to do a pretty good job too—when they work, the type looks great on my iPhone.</p><p>For some reason, however, there seems to be this occasional breakdown where the id attribute in the XML will contain some coded identifier and the supplied CSS will use a camel case version of the font name (such as ArvoRegular). It doesn&#8217;t happen in all instances, though. It doesn&#8217;t even seem to happen consistently with the same fonts. I downloaded Arvo again as a test, and it was fine. Then I downloaded <a href="http://www.fontsquirrel.com/fonts/League-Gothic" title="League Gothic">League Gothic</a>, which has always been fine, and I found the discrepancy.</p><p>Fortunately, if you are aware of the issue, it only takes a moment to open up the files and do a quick cross reference to make sure everything is working properly. Unfortunately for me, I <em>didn&#8217;t</em> know about this and had to figure it out the hard way. After reading this post, hopefully you won&#8217;t have that same problem.</p><h3>Webfonts Moving Forward</h3><p>Is this SVG thing really a big deal? Maybe not. If you check out the <a href="http://webfonts.info/wiki/index.php?title=@font-face_browser_support" title="@font-face browser support">information provided at webfonts.ingo</a>, every major browser now supports @font-face rendering with either TrueType, OpenType or WOFF format fonts (or even all of them). This includes SafariMobile as of iOS 4.2. If this is the case, then do we even need to worry about SVG fonts?</p><p>Maybe not in a few years. Right now, though, there are still people running older versions of iOS. I know. I&#8217;m one of them, and I don&#8217;t want to upgrade because my iPhone is already running slow enough.</p><p>That&#8217;s enough of a motivation for me to take the time to ensure that any @font-face declarations that I make are working across the board, especially since it&#8217;s just a matter of making sure a couple of values line up.</p><p>I hope you find this quick tip useful. As already noted, I&#8217;m not an expert in this area, so if you have any comments or insights on @font-face or SVG fonts, feel free to share in the comments below. </p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2011/12/01/quick-tip-svg-fonts-font-face/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		</item>
		<item>
			<title>Wireframing is About More than Just Visual Layout</title>
			<link>http://blog.echoenduring.com/2011/07/19/wireframing-is-about-more-than-just-visual-layout/</link>
			<comments>http://blog.echoenduring.com/2011/07/19/wireframing-is-about-more-than-just-visual-layout/#comments</comments>
			<pubDate>Tue, 19 Jul 2011 14:00:51 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Articles]]></category>
			<category><![CDATA[development]]></category>
			<category><![CDATA[html]]></category>
			<category><![CDATA[Websites]]></category>
			<category><![CDATA[wireframing]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=5395</guid>
			<description><![CDATA[In this article, I will be drawing on my own recent experience to consider the topic of wireframes. Most specifically, I will be considering how wireframes are about more than just establishing the visual layout for a website and should not be created entirely in a vacuum, but rather with thoughtful consideration to structure and even HTML.<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2011%2F07%2F19%2Fwireframing-is-about-more-than-just-visual-layout%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2011%2F07%2F19%2Fwireframing-is-about-more-than-just-visual-layout%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>Over the past couple of days, I have been working on an initial concept/prototype for a new, interesting website. As I normally like to do whenever I am tackling a new project, I started by opening up a notebook and making a few really simple layout sketches for how I initially thought the page should be laid out (at this stage, I am just working the layout for a single type of page, with others following later). After discussing these initial concepts with members of the team I am working with, I very logically moved on to the creating more fully realized wireframes. For me, this meant printing of some grids and using a pen to draw and label content boxes.</p><p>The process, however, started me thinking about wireframes, their importance and the role(s) that they play in the design and development process. More specifically, it got me thinking about how wireframing— even in the rudimentary pencil on a paper grid method that I use—may be even more important and useful than it may initially appear, or than we like to give it credit for.</p><p>Any form of design—but especially web design (or anything else that actually requires a tangible user interface)—is about more than just what the product <em>looks</em> like. It also needs to consider its audience, its purpose and its media. On the web and in application development, this means questions of usability and user experience, interaction and information architecture, all of which are at least as important—and likely more so—than the what something looks like.</p><p>Yet, in the same way that “design” has a tendency to be understood merely as the creation of a unique (and often disconnected) visual aesthetic, so to can wireframing have a tendency to be relegated solely to the realm of layout, when it is, in fact a tool with a much broader scope.</p><h3>It&#8217;s All About Structure</h3><p>Often, many good designers will approach the question of layout from the perspective of arranging the elements on a page in such a way as to create something that is aesthetically pleasing to look at. Conversely, others will approach the layout as a matter of arranging elements in a logical, predictable and consistent fashion, which leads to improved usability and a better user experience.</p><p>Great designers do both, and I wouldn&#8217;t be at all surprise to learn that 9 times out of 10, this is generally reflected in their wireframing.</p><p>Earlier this year Nick Haas authored an <a href="http://www.orbitmedia.com/blog/7-reasons-to-wireframe">excellent post</a> on why wireframing is important and should not be glossed over in an effort to jump straight into the “real” design (and I use that term somewhat ironically) that determines a site&#8217;s appearance. In this article, Haas rightly points out that wireframing:</p><blockquote><p>forces everyone to look objectively at a web site’s ease of use, conversion paths, naming of links, navigation placement and feature placement. <strong>Wireframes can point out flaws in your site architecture</strong> or how a specific feature may work.</p></blockquote><p>From this perspective, wireframing is as much about the underlying structure of a site as it is about the visual dressing that we drape over that structure. It&#8217;s about planning the skeleton or framework on which the site will ultimately be built. And, while this skeleton will be reflected in a visual manner, with a number of sketched or grey boxes arranged in a particular fashion, that does not mean that the wireframes themselves are at all limited to the visual aspect of the site.</p><p>When done properly, those boxes tell us more than what kind of grid to use or how many CSS floats will be required. Through their positioning and interaction (and, ideally, accompanying notes), they bring a site&#8217;s underlying structure to the forefront. If that structure is solid and logical, then it will be easily be able to accept the aesthetic trappings that will eventually formulate its final apperance.</p><p>On the other side of the coin, if there are issues or flaws in that structure, those problems can be readily addressed (and hopefully fixed) at this early stage of the process. This certainly beats having nearly completed the entire design only to discover some fundamental structural flaw that forces you to tear everything apart, fix the problem and then try to put it all back together again.</p><p>Wireframing can help you catch these issues early, saving time and precious budget dollars.</p><h3>Wireframing With HTML</h3><p>There has been a lot of discussion at different points about the merits of designing in the browser, as opposed to creating flat mockups in an application like Photoshop. There are strong opinions on both sides of the fence. My own view is somewhat less concrete, in that I feel that approaching any new web design project is really a matter of context, and the tools and techniques that I chose to employ will depend on what I am looking to accomplish.</p><p>That being said, however, while I may not always start in the browser (or even get to it early), I do feel that it is vitaly important to always be designing with the browser in mind. In other words, to consciously design within the constraints and limitations of HTML and CSS. With new and emerging technologies, these constraints are certainly shrinking, but there remain certain things that we still can&#8217;t do (or things that we <a title="Are We Taking CSS Too Far?" href="http://blog.echoenduring.com/2010/08/14/are-we-taking-css-too-far/"><em>shouldn&#8217;t</em> do</a>).</p><p>Moreover, it is important to always keep in mind that when we are designing for the web in the traditional sense (apps, I believe, may be somewhat different in this regard), what we are actually doing is creating the visual skin that will be placed over our standard HTML.</p><p>We&#8217;ve already touched on how wireframing is very much a matter of creating the initial skeleton or structure for a site. In practice, the HTML that we craft becomes the tangible result of that structure. It the context of the document, it brings semantics and meaning to the content, while simultaneously providing the key hooks that will be required to wrap that same content in the visual layout that we have created.</p><p>For this reason, I believe that wireframing and HTML are (or at least should be) fundamentally connected, to the point where I am increasingly finding myself actually <em>writing out</em> simple HTML structures at the same time that I am creating my wireframes. In my experience this has a number of key benefits:</p><ol><li>It helps remind me that wireframing is about <em>more</em> than just the visual aesthetic of the site.</li><li>It helps keep my mind &#8220;in the browser&#8221; so to speak.</li><li>It helps me think of structure in a broader context. By constantly working out how the layout would need to be represented in HTML, I am better able to consider the placement of my wireframed boxes and make important decisions about the relationships <em>between</em> those boxes, both visually and structurally.</li></ol><p>For me, these are all key components to my design and development process—components which help strengthen the quality of my work and ensure that the structure and layout are more than just a cool visual treatment. As such, I plan to continue to pair my traditional, rough pencil and paper wireframing with equally rough HTML structures, especially as I dive deeper and deeper into world of responsive design.</p><p>Of course, while the <em>concept</em> of wireframing generally serves the same basic purpose from designer to designer (or team to team), the <em>techniques</em> that are used in the process can be very different. As already noted, I like to work more traditionally with pencil and paper. Some designs will use simple grey boxes in Photoshop or Fireworks, while others will actually use applications and other tools that are specifically geared towards wireframing. Regardless of the technique that is used, I believe that the important relationship between these wireframes and HTML still exists and needs to be considered.</p><p>The only “exception” would be for those designers who wireframe by creating basic, lightly styled HTML documents right out of the gate. Of course, in these cases the exception is not that HTML should not be considered, but rather that it is no longer a matter of considering the relationship between two seemingly autonomous elements. Instead, the HTML <em>is </em>the wireframe, which only serves to further underscore the point that I&#8217;ve been driving at through the entire article: that a thorough consideration of HTML should be an integral part of any wireframing process.</p><p>How that manifests itself is up to you.</p><p>For those readers who may not be all that familiar with wireframing, feel free to check out Grace Smith&#8217;s “<a title="Permanent Link to Get Wireframing: The All-In-One Guide" href="http://www.gracesmith.co.uk/get-wireframing-the-all-in-one-guide/" rel="bookmark">Get Wireframing: The All-In-One Guide</a>” for a full complement of resource materials. There are all kinds of wicked resources to help get you started, or to help you dig deeper into the concept.</p><p><em>article photo my <a href="http://www.flickr.com/photos/jolly_sonali/5790735754/in/photostream/">sonali sridhar</a></em></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2011/07/19/wireframing-is-about-more-than-just-visual-layout/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		</item>
		<item>
			<title>10 More Awesome Online Tools for Design and Development</title>
			<link>http://blog.echoenduring.com/2010/12/11/10-more-awesome-online-tools-for-design-and-development/</link>
			<comments>http://blog.echoenduring.com/2010/12/11/10-more-awesome-online-tools-for-design-and-development/#comments</comments>
			<pubDate>Sat, 11 Dec 2010 17:13:51 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Roundups]]></category>
			<category><![CDATA[apps]]></category>
			<category><![CDATA[CSS]]></category>
			<category><![CDATA[generator]]></category>
			<category><![CDATA[Resources]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=4843</guid>
			<description><![CDATA[In this article, I want to share 10 more awesome online resources that I use to make my work as a designer and developer faster and easier. These range CSS generators, to typographical tools, to code validators. All are useful in their own ways, so be sure to check them out.<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F12%2F11%2F10-more-awesome-online-tools-for-design-and-development%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F12%2F11%2F10-more-awesome-online-tools-for-design-and-development%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>A few months ago, as I was working to put together the redesign of the Echo Enduring Blog and Echo Enduring Media, I published an articled entitled “<a title="10 Of My Favorite Online Tools for Design and Development" href="../2010/08/07/10-of-my-favorite-online-tools-for-design-and-development/">10 Of My Favorite Online Tools for Design and Development</a>“, in which I outlined some of the online tools that I use the most in my work. It turned out to be a pretty popular article, and I think that some people really benefited from it.</p><p>Well, after only a few short months, I’m back with another article in the same vein. In the weeks and months since that original post, I’ve come across a bunch more awesome online tools that can make a  designer’s life so much easier and I wanted to share them with you.</p><h3>Text Generators</h3><p>Despite some very valid arguments <a href="http://designinformer.com/lorem-ipsum-killing-designs/">again using Lorem Ipsum</a> text, I still frequently find myself in situations where I need some kind of textual placeholder. Perhaps its for creating a theme, or for a client that doesn’t have any copy written. Sometimes I just need a few paragraph of text to run through some JavaScript or jQuery processing. Whatever the need, I am very <em>rarely</em> in the mood to just start cranking out several paragraphs of placeholder text on my own.</p><p>That’s where text generators can come in incredibly useful, and I’d like to introduce you to two of these:</p><h4>BlindTextGenerator</h4><p>This web app is a great little tool for designers who need to grab some <a href="http://www.blindtextgenerator.com/lorem-ipsum">quick placeholder text</a>. It may look simplistic, but don’t let the interface fool you—this little app can pack a big punch, and deliver placeholder text in all kinds of different and interesting ways.</p><div id="attachment_4889" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.blindtextgenerator.com/lorem-ipsum"><img class="size-full wp-image-4889" title="Blind Text Generator allows you to create a wide range of different blocks of placeholder text" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/blindtextgenertor.jpg" alt="Blind Text Generator allows you to create a wide range of different blocks of placeholder text" width="500" height="500" /></a><p class="wp-caption-text">Blind Text Generator allows you to create a wide range of different blocks of placeholder text</p></div><p>It makes use of a number of different base texts, starting with the classic Lorem Ipsum, and including text in both English and Latin. Beyond that, you can control the number of character or words, and the number of paragraphs, offering a surprising degree of flexibility in terms of the length of your text. Being able to turn on &lt;p&gt; tags is a nice touch too.</p><h4>Fillerati</h4><p><a href="http://www.fillerati.com/">Fillerati</a> is another placeholder text generator, which spits out text from a number of classic literary works of authors such as Lewis Carrol (<em>Alice in Wonderland</em>), H.G. Wells (<em>War of the Worlds</em>) and Jules Verne (<em>Around the World in 80 Days</em>). Designed in an attractive and contemporary style, this little app is a pleasure to work with.</p><div id="attachment_4891" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.fillerati.com/"><img class="size-full wp-image-4891" title="Fillerati generates placeholder text in a number of different formats, based on a selection of different literary classics" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/fillerati.jpg" alt="Fillerati generates placeholder text in a number of different formats, based on a selection of different literary classics" width="500" height="500" /></a><p class="wp-caption-text">Fillerati generates placeholder text in a number of different formats, based on a selection of different literary classics</p></div><p>It also provides some added flexibility in the way the placeholder text is generated, allowing you to create paragraphs, headings (ranging from levels 1-6), list elements and even just plain text. The type of content you’re generating also changes the slider control, which you can use to control how many paragraphs, words or list elements you want.</p><h3>CSS Generators</h3><p>Now, I’m a huge fan of CSS3 and all the various bits of awesomeness that it provides us with, but as many of these new properties are introduced, I am finding that they are becoming a bit more complex than the most of the properties that we saw in CSS2. That’s cool, but sometimes it makes coding and experimenting a bit more challenging. Well, there are a variety of different generators out there that can help you create your CSS on the fly.</p><h4>Border Radius</h4><p>Web services seriously don’t get any simpler than <a href="http://border-radius.com/">Border Radius</a>. You basically visit the site, provide values for the radius (roundness) of the four corners of a box and grab the CSS.</p><div id="attachment_4893" class="wp-caption aligncenter" style="width: 510px"><a href="http://border-radius.com/"><img class="size-full wp-image-4893" title="Border Radius generates simple CSS for creating elements with rounded corners" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/borderradius.jpg" alt="Border Radius generates simple CSS for creating elements with rounded corners" width="500" height="500" /></a><p class="wp-caption-text">Border Radius generates simple CSS for creating elements with rounded corners</p></div><p>The only other option is being able to tell the app if you want the WebKit, Gecko (Mozilla) or regular CSS3 properties.</p><p>Yes, it may seem ridiculously simple, but it’s also super quick and easy to use and can actually be a real time saver—especially for people who are just getting started with CSS3 (or even CSS in general).</p><h4>CSS3 Gradient Generator</h4><p>Of all the new CSS3 properties that we can use (to some degree) here and now, the CSS gradient is probably (in my view) the most complex and daunting of the entire group. As such, a number of different generators have cropped up and the aptly named <a href="http://gradients.glrzad.com/">CSS3 Gradient Generator</a> seems to be a pretty good one.</p><div id="attachment_4894" class="wp-caption aligncenter" style="width: 510px"><a href="http://gradients.glrzad.com/"><img class="size-full wp-image-4894" title="This app allows you to generate the code for creating CSS3 gradients" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/css3gradientgenerator.jpg" alt="This app allows you to generate the code for creating CSS3 gradients" width="500" height="500" /></a><p class="wp-caption-text">This app allows you to generate the code for creating CSS3 gradients</p></div><p>I like how big the gradient is preview is, allowing you to really see how one colour blends into the next. A really nice colour selection tool allows you to choose from the colour picker or define them manually in RGB, HSB or hex code. Also, the one-click “Copy the code” option is a really nice feature.</p><p>The only thing that I don’t like quite as much is the user interface (UI) for creating, deleting and controling the positioning of the swatches. It’s definitely usable, but it took me a couple of minutes to figure out what all the controls did.</p><h4>Ultimate CSS Gradient Generator</h4><p>Obviously, this one is another <a href="http://www.colorzilla.com/gradient-editor/">CSS gradient generator</a>. Despite it’s grandiose name, it does have both some advantages <em>and</em> disadvantages over the CSS3 Gradient Generator that we just looked at (making its ultimate-ness questionable).</p><div id="attachment_4895" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.colorzilla.com/gradient-editor/"><img class="size-full wp-image-4895" title="Another CSS gradient generator, based on the familiar UI of Photoshop" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/ultimatecssgenerator.jpg" alt="Another CSS gradient generator, based on the familiar UI of Photoshop" width="500" height="500" /></a><p class="wp-caption-text">Another CSS gradient generator, based on the familiar UI of Photoshop</p></div><p>Self-styled as a Photoshop-like generator, this little tool does take UI cues from Adobe’s flagship application. Most specifically, this comes in the form of the gradient slider, where you can select the individual points within the gradient and adjust the colour, slide them back and forth to change their position and even just click to create new points within the gradient. If you are at all familiar with Photoshop, these controls will seem very natural to you, as will the colour picker window.</p><p>Interestingly, though, the colour picker does flip the controls for saturation and hue, with the saturation being controlled by the vertical slider to the right of the colour window, and hue being controlled by the x-axis of the colour window itself. In Photoshop, it is the other way around. Also, as much as I like this tool, it could definitely benefit from a one-click copy function.</p><h4>CSS Tricks Button Maker</h4><p>When it comes to the world of CSS, Chris Coyier is the man. He produces all kinds of insanely awesome stuff over at <a href="http://css-tricks.com/">CSS Tricks</a>, and this <a href="http://css-tricks.com/examples/ButtonMaker/">CSS Button Maker</a> is no exception. Of all the CSS generators that we have already looked at, this one is probably the single <em>biggest</em> time saver if you are looking to style your buttons entirely with CSS.</p><div id="attachment_4898" class="wp-caption aligncenter" style="width: 510px"><a href="http://css-tricks.com/examples/ButtonMaker/"><img class="size-full wp-image-4898" title="CSS Trickster Chris Coyier's button generator makes creating slick CSS buttons a breeze" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/csstricksbuttonmaker.jpg" alt="CSS Trickster Chris Coyier's button generator makes creating slick CSS buttons a breeze" width="500" height="500" /></a><p class="wp-caption-text">CSS Trickster Chris Coyier&#39;s button generator makes creating slick CSS buttons a breeze</p></div><p>With a wide range of controls that allow you to define the size, padding, border radius, gradient, background, border and :hover and :active states, this generator is a powerful little tool to help you create awesome looking button styles to integrate into your website quickly and easily.</p><p>I actually used it just this past week and was more than happy with the results. I did do a couple of minor tweaks to the generated code, but using the generator definitely saved me a ton of time, and I was very happy to see that it degrades pretty nicely in older browsers too!</p><h3>Typography</h3><p>I love typography. You might even say that I obsess over it. As I  was doing the redesign of this blog back in the summer, I spent hours and hours and hours pouring over different typefaces. So, it should come as no surprise that I have a couple of typography-related tools to share!</p><h4>Baseline CSS</h4><p>You’ve probably heard it said before, but it bears repeating—typography is <em>not</em> about picking a cool font. Yes, typeface selection is an important first step, but there are all kinds of other choices that need to be made, like leading (line spacing) and tracking (letter spacing). One important consideration that doesn’t get a lot of attention on the web is baseline alignment. <a href="http://baselinecss.com/">Baseline CSS</a> is a framework that works to solve this particular problem.</p><div id="attachment_4899" class="wp-caption aligncenter" style="width: 510px"><a href="http://baselinecss.com/"><img class="size-full wp-image-4899" title="An awesome CSS framework for bringing a typographic baseline grid to your web designs" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/baselinecss.jpg" alt="An awesome CSS framework for bringing a typographic baseline grid to your web designs" width="500" height="500" /></a><p class="wp-caption-text">An awesome CSS framework for bringing a typographic baseline grid to your web designs</p></div><p>It many ways, it works almost like a reset stylesheet, except that instead of just resetting all the borders and padding and so forth, it actually sets the basic rendering of all the HTML elements to align with each other according to the “defined” baseline. Of course, the baseline itself is theoretical, and actually uses font-sizes, line heights and relative positioning to actually control the alignment, since there is no native baseline CSS property (though wouldn&#8217;t that be cool?)</p><p>It probably isn’t needed for every site out there, but for a site that uses a lot of text this framework could be a <em>huge</em> asset.</p><h4>TypeTester</h4><p>Ever wanted to be able to compare several different typefaces on a web site at the same time? To do this manually would require a lot of work, repeating elements, setting styles, reviewing, resetting styles and so forth. Well, <a href="http://www.typetester.org/">TypeTester</a> is an awesome tool that can do most of the heavy lifting for you.</p><div id="attachment_4900" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.typetester.org/"><img class="size-full wp-image-4900" title="Type tester is an awesome tool for testing and comparing different typographic stylings and seeing how they render on the web" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/typetester.jpg" alt="Type tester is an awesome tool for testing and comparing different typographic stylings and seeing how they render on the web" width="500" height="500" /></a><p class="wp-caption-text">Type tester is an awesome tool for testing and comparing different typographic stylings and seeing how they render on the web</p></div><p>Basically, you define your sample text, and then have three columns, each containing the same block of text, but each controlled with different options. This means you can look at the text in the same typeface, but at three different sizes, or with three different leadings or colours. You can compare the same text at the same size, but with different typefaces. With powerful controls, the combinations for testing are virtually limitless!</p><p>Each column also renders the text in regular, bold, italic and bold-italic weights/styles, as well as in mixed case, upper case and small caps, giving you plenty of options to compare.</p><p>In terms of fonts that are available, well there is a list of safe fonts, of default Windows fonts, of default Mac fonts, default Vista fonts and Google fonts. It also says that you can choose your own (providing a list of all your installed fonts), but this doesn’t seem to work quite perfectly (I expect this has something to do with different formats). Still, there are a ton of different options for you to play with.</p><p>Oh, and as if all that’s not enough, when you find the perfect type settings, you can also grab the appropriate CSS. Nice!</p><h3>Other Tools</h3><p>To end this list off, I have two miscellaneous tools. They don’t really fit together in any distinct category, but I still think that they are all pretty awesome and hope that you can get some use out of them.</p><h4>Favicon.cc</h4><p>Sticking with the generator theme for now, we have <a href="http://www.favicon.cc/">Favicon.cc</a>. Favicons (those little icons that appear in the status bar and in browser tabs to identify a site) are a <a href="http://blog.echoenduring.com/2010/05/20/usability-breakdowns-to-avoid/">small but important</a> consideration when it comes to usability. This tool is a quick and easy way to generate your own favicon from an existing image.</p><div id="attachment_4901" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.favicon.cc/"><img class="size-full wp-image-4901" title="A super simpe online tool for the quick (or not so quick) creation of a favicon for your site" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/faviconcc.jpg" alt="A super simpe online tool for the quick (or not so quick) creation of a favicon for your site" width="500" height="500" /></a><p class="wp-caption-text">A super simpe online tool for the quick (or not so quick) creation of a favicon for your site</p></div><p>All you have to do is upload an existing image (square works best) and this little app will scale it down to a standard 16 x 16 format. That’s not very big, so I would recommend against using anything overly detailed. Remember this is an icon, not a photo. For those who may be feeling extra adventurous, the app will also allow you to create your own icon from scratch, by defining the colours of each point on the 256 pixel grid. Or, you can use this to make slight tweaks the an icon generated from an uploaded picture.</p><p>When you’re done, you just download the .ico file and drop it into the root of your webserver. It’s a fast and easy way to create favicon files.</p><h4>JSONLint</h4><p>Last on the list today, we have an awesome and useful <a href="http://www.jsonlint.com/">JSON validator</a>. I’ve been working with JSON a lot over the past several weeks, and this little tool has been an invaluable resource for me.</p><div id="attachment_4902" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.jsonlint.com/"><img class="size-full wp-image-4902" title="Working with JSON? This awesome little validator is a super useful tool for validating and debugging your code" src="http://blog.echoenduring.com/wp-content/uploads/2010/12/jsonlint.jpg" alt="Working with JSON? This awesome little validator is a super useful tool for validating and debugging your code" width="500" height="500" /></a><p class="wp-caption-text">Working with JSON? This awesome little validator is a super useful tool for validating and debugging your code</p></div><p>Basically, like most validators, you can just copy your JSON code and paste it into the applications texteara. Then, press the Validate button and in a flash, you’ll be told if your code is valid or not. If it’s not, you’ll get some reasonably descriptive error messages to help you track down the problem and resolve it. I don’t even know how much debugging time this tool has saved me, especially when first learning the ins and outs of JSON.</p><p>Also, one hidden feature of this one is that you can just paste a URL instead of actual code. In this case, the app will go out and scrape the JSON from the page and try validating that instead.</p><h3>Conclusion</h3><p>Again, like <a href="http://blog.echoenduring.com/2010/08/07/10-of-my-favorite-online-tools-for-design-and-development/">my earlier post</a>, this list is not an exhaustive roundup of all the different resources that are out there on the web. There are all kinds of other awesome apps and tools for us to find and get excited about. So who knows, maybe in another four months I&#8217;ll have yet another list of awesome tools to help make our design and development work easier and more streamlined.</p><p><strong>What about you? What are some of your favorite resources and web apps that make your work as a designer or developer go more easily? Please feel free to share them!</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2010/12/11/10-more-awesome-online-tools-for-design-and-development/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		</item>
		<item>
			<title>Are We Taking CSS Too Far?</title>
			<link>http://blog.echoenduring.com/2010/08/14/are-we-taking-css-too-far/</link>
			<comments>http://blog.echoenduring.com/2010/08/14/are-we-taking-css-too-far/#comments</comments>
			<pubDate>Sat, 14 Aug 2010 15:32:20 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Articles]]></category>
			<category><![CDATA[CSS]]></category>
			<category><![CDATA[Design]]></category>
			<category><![CDATA[Icons]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=4053</guid>
			<description><![CDATA[CSS is a remarkable technology, capable of doing things that I wouldn't have even dreamed of when I was first introduced to it. There are all kinds of amazing demonstrations and experiments out there, but when we start talking about pure CSS icons in a production environment, have we started to go too far?<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F08%2F14%2Fare-we-taking-css-too-far%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F08%2F14%2Fare-we-taking-css-too-far%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>CSS is a remarkable technology, capable of doing things that I wouldn&#8217;t have even dreamed of when I was first introduced to it. And, with added support for rounded corners, box shadows, text shadows, rotation and a wide range of other possibilities, web designers and developers can accomplish all sorts of amazing things when it comes to applying a design to a website.</p><p>But are we starting to take things too far?</p><p>The design community is awash with all kinds of different “CSS experiments” where people attempt to do some pretty incredible stuff (and quite often succeed). In an article I wrote for <a href="http://m.sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/">Six Revisions</a> a couple months ago, I listed five of the experiments that I found really interesting:</p><ul><li><a href="http://neography.com/journal/css-transforms-font-face-experiment/">CSS3 Transforms &amp; @font-face Experiment</a></li><li><a href="http://designinformer.com/css-posters/">CSS Posters</a></li><li><a href="http://cssglobe.com/post/4175/pure-css-line-graph">Pure CSS Line Graph</a></li><li><a href="http://gordonbrander.com/lab/css3-stacks/">CSS3 Leopard-style Stacks</a></li><li><a href="http://www.subcide.com/articles/pure-css-twitter-fail-whale/">Pure CSS Twitter Fail Whale</a></li></ul><p>Each of these experiments takes a different approach. Some, like the line graph, have some practical applications in the real world, while others like the CSS fail whale are completely and entirely impractical. It&#8217;s certainly interesting to know that it can be done, but that doesn&#8217;t necessarily mean that it <em>should</em> be done.</p><p><span id="more-4053"></span></p><h3>Let&#8217;s Be Practical</h3><p>I&#8217;ve been thinking this way for a while, but it was really cemented in my mind when I recently read Faruk Ateş recent article “<a href="http://farukat.es/journal/2010/08/469-pure-css-icons-make-madness-stop">Pure CSS Icons: Make The Madness Stop</a>,” which I picked up on from a short post over on Think Vitamin. In his article, Ateş notes that “some people have started experimenting with CSS as a &#8216;design tool&#8217; and it suddenly hit upon a large audience.” He also writes:</p><blockquote><p>how usable are these snippets of CSS and markup, really? Is it easy to plug them into your website as you’re designing it? No. Is it easy to plug them into your website as you’re developing it? No. Is it easy to adjust them once they have been integrated into your website? No, no, no!</p></blockquote><p>I have to agree wholeheartedly with this. Before this week, I&#8217;d looked at a bunch of the CSS experiments out there, and occasionally appreciated some of what they manage to do, but i had never really taken the time to examine the actual styles themselves. So, I took a gander at the code for these CSS social networking buttons:</p><div id="attachment_4056" class="wp-caption aligncenter" style="width: 488px"><a href="http://nicolasgallagher.com/experimental-pure-css-social-media-icons/"><img class="size-large wp-image-4056 " title="Social media icons created entirely with CSS" src="http://blog.echoenduring.com/wp-content/uploads/2010/08/css-social-media-icons-e1281728895725.png" alt="Social media icons created entirely with CSS" width="478" height="198" /></a><p class="wp-caption-text">Social media icons created entirely with CSS</p></div><p>Just as I expected, there are lines and lines of different styles, all just to create one icon. Is it impressive? Yes. Creative? Certainly. But it&#8217;s just not practical. This is also not an easy way to create icons. It probably takes long hours of careful consideration and experimentation to create these kind of graphics. I could create similar icons in Photoshop in less than an hour, and they would probably look better too (smoother, better anti-aliasing).</p><p>Finally, as Ateş clearly notes, the whole concept of maintenance becomes problematic. Adjusting an icon should be about moving pixels, not about changing CSS rules. It just screams at me as being the epitome of impracticality.</p><p>Of course, it should be noted that Nicolas Gallagher, the creator of the above cited icons does make note that “CSS is not necessarily the most appropriate tool for this kind of thing” (again, cited by Ateş).</p><h3>HTTP Requests?</h3><p>While Gallagher&#8217;s icons are presented and framed mostly as an experiment, there is another set called “Peculiar” which is actually available for sale. Yes, that&#8217;s right, they are now <em>selling</em> CSS icons – and at $25 for just 45 icons, the price seems a little steep too. Here is the preview of the icon pack:</p><div id="attachment_4054" class="wp-caption aligncenter" style="width: 510px"><a href="http://lucianmarin.com/peculiar/"><img class="size-full wp-image-4054" title="These icons are created entirely using CSS" src="http://blog.echoenduring.com/wp-content/uploads/2010/08/peculiar-icons.png" alt="These icons are created entirely using CSS" width="500" height="277" /></a><p class="wp-caption-text">These icons are created entirely using CSS</p></div><p>Honestly, I like the look of these icons. They are small, elegant and beautifully wroght, and so from a craftsman&#8217;s perspective, I tip my hat to Lucian Marin for his fine design work.</p><p>However, in the preamble to the Peculiar site, he writes “It was created for sites and web applications that depend on fewer HTTP requests as possible or don&#8217;t need to use any image at all.” Now, I understand the need to cut down on HTTP requests to improve the overall responsiveness of and load times of our sites. Really, I get it.</p><p>But, before everyone starts running out and buying up CSS icons left, right and center, I just have to ask: is one more request really going to make <em>that</em> much of a difference? Because all you need is one. A single, well crafted CSS sprite can contain all of these icons, in multiple hover states if you need them too. Then, all your styling is just a matter of background positioning.</p><p>Also, I have to wonder how much bandwidth difference there would be. I&#8217;m not about to fork out $25 to download icons that I&#8217;ll never use, so I&#8217;m not sure how much styling there is involved with these little beauties. Based on what I saw from the Gallagher example though, I would imagine it would be a fair bit. Even minified, it&#8217;s probably still going to be a significant amount of data, and with the really minimal amount of colour data that would be involved with creating a CSS sprite of these icons, I just don&#8217;t feel that one extra HTTP request and a few extra bytes of information is really worth the hassle.</p><h3>In the Spirit of Semantics</h3><p>I&#8217;ll admit that I&#8217;m occasionally as guilty as the next guy for occasionally adding in an extra<br />&lt;div&gt; or &lt;span&gt; to be able to achieve something visually on a site that I can&#8217;t seem to figure out how to do otherwise (or at least can&#8217;t figure out how to do efficiently). I try to avoid it, though, and the last thing I want to do is to start filling up my code with all sorts of extra tags to help build CSS icons.</p><p>That&#8217;s just not semantic coding.</p><p>Now, looking at the Gallagher example, he does an excellent job of keeping his markup beautifully clean, relying heavily on the :before and :after psuedo-classes for apply his styling. So, from an HTML perspective, I would have to say this is semantic (though I&#8217;m sure that many other examples utilize some excessive HTML elements, just for the purposes of providing “hooks” for their styles).</p><p>That being said, semantics is a discipline all about of meaning, and semantic HTML is about writing code that supports the meaning of a document, while using CSS to dictate the visual <em>rules</em> by which that content is displayed. CSS is about taking the form and structure of the document and representing it in the browser. Or, to put it another way, it&#8217;s about facilitating the graphical presentation of content.</p><p>It&#8217;s <em>not</em> about <em>creating</em> the graphics themselves.</p><p>That&#8217;s the realm of vector-based and/or pixel crunching software like Photoshop, Fireworks, Illustrator and so on. And so, it seems to me that using CSS to create graphical elements like icons goes against the very purpose for which the technology was ultimately created. By doing so, it deviates from its own core meaning, and therefore strikes me as unsemantic, at the very least in spirit if not in a strictly literal sense.</p><h3>Tables Again?</h3><p>Though it doesn&#8217;t form a perfect parallel, in some ways this issue of CSS icons (or other graphics) can be compared to using tables for layout. There are a few key reasons why tables for layout is a bad idea:</p><ol><li><strong>Bloat</strong> &#8211; All the necessary table tags fill up your HTML, making it big and ugly and an absolute nightmare to manage. I used to use tables back in the day, and I hated it for this very reason</li><li><strong>Inflexible</strong> &#8211; Tables are rigid, unmoving things, and getting them to do anything even remotely complex was a huge pain. Empty cells and complex ROWSPAN and COLSPAN properties can only take you so far without becoming entirely unmanageble.</li><li><strong>Purpose</strong> &#8211; Most of all, we have to recognize that it just <em>wasn&#8217;t what tables were designed to do</em>. Tables exist in HTML for the purpose of presenting <em>tabular</em> data, not for creating layouts. Yes, you <em>can</em>, create layouts with them. Yes, with a bit (or a lot) of effort, you <em>can</em> bend them to your will, but it&#8217;s just not what they were created to do.</li></ol><p>If you&#8217;ve been around the web design and devlopment industry for very long, you probably already know how much of a faux pas table-based design is considered. Well, when it comes to CSS icons, consider these thoughts:</p><ol><li><strong>Bloat</strong> &#8211; All the necessary CSS declarations will really bloat up your style sheets, making them an absolute nightmare to manage. Wait, didn&#8217;t I just write those same words? Also, depending on how the icons are achieved, you might find your HTML bloating up with extra elements too.</li><li><strong>Inflexible</strong> &#8211; Again I admit that people have done some really incredible things with CSS, but compared with a real graphics program, CSS generated graphics are incredibly limited in what they can do.</li><li><strong>Purpose</strong> &#8211; As we&#8217;ve already discussed at some length, CSS wasn&#8217;t designed as a tool for creating graphics, despite the fact that people are able to do some pretty amazing things with them, like the Peculiar and social media icons we&#8217;ve already looked at. Impressive? Yes. The right tool? No.</li></ol><p>Obviously, there are some key differences between CSS icons and using tables as a layout tool, but the similarities in these three areas are somewhat startling. I also think it works as a really excellent illustration of something that I pointed out back at the beginning of this article: that just because something can be done doesn&#8217;t mean that it <em>should</em> be done.</p><h3>Conclusion</h3><p>Of course all of this is my personal opinion, and I leave the final decesion up to you. If you think that CSS icons make sense for you to use in your own work, then feel free to take advantage of them. I&#8217;m also not trying to talk Marin out of making any money from his Peculiar icon set. If he can manage it, then more power to him.</p><p>This article was simply the presentation of my own thoughts on why I don&#8217;t thinks that CSS icons (or any other, similar graphic) are really a viable solution for displaying graphics on the web. I hope my points were clear enough, and that they provided some food for thought on this particular subject.</p><p><strong>What about you? How do you feel about the idea if CSS icons? Do you think they are viable? Would you ever consider implementing them into one of your own websites?I&#8217;d love to hear your thoughts on this.</strong></p><p>Note: Main article image supplied via <a href="http://www.shutterstock.com/pic-57544471/stock-photo-modern-metal-template.html?src=ba3953cd68b69c3f24a1917ba4ea0965-2-82">ShutterStock</a></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2010/08/14/are-we-taking-css-too-far/feed/</wfw:commentRss>
			<slash:comments>89</slash:comments>
		</item>
		<item>
			<title>10 Of My Favorite Online Tools for Design and Development</title>
			<link>http://blog.echoenduring.com/2010/08/07/10-of-my-favorite-online-tools-for-design-and-development/</link>
			<comments>http://blog.echoenduring.com/2010/08/07/10-of-my-favorite-online-tools-for-design-and-development/#comments</comments>
			<pubDate>Sat, 07 Aug 2010 14:43:16 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Roundups]]></category>
			<category><![CDATA[apps]]></category>
			<category><![CDATA[grids]]></category>
			<category><![CDATA[Icons]]></category>
			<category><![CDATA[Resources]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=3959</guid>
			<description><![CDATA[In this article, I want to share 10 awesome online resources that I use to make my work as a designer and developer faster and easier. These range from grid customization, to typographical tools, to icons and other forms of graphical generators. Be sure to check them all out.<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F08%2F07%2F10-of-my-favorite-online-tools-for-design-and-development%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F08%2F07%2F10-of-my-favorite-online-tools-for-design-and-development%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>As a designer, writer, husband and father (among other things), my life is pretty full and I absolutely love pretty much anything that can save me time. This is especially true when doing my work as a designer. Over the years, I&#8217;ve come across a number of awesome little websites and web apps, created by brilliantly helpful people to make my life easier &#8211; and yours too. </p><p>So, in this article, I&#8217;ve decided to share some of my <em>favorite</em> online resources. This isn&#8217;t to say that they are necessarily the best or the most powerful. They&#8217;re just the ones that I like to use. Some of them are generators of sorts, while others offer customizable and downloadable content that you can use in your own work.</p><h3>Grids</h3><p>I like using grids when I build websites, and the one I use most often is probably the 960 grid system, which I <a href="http://blog.echoenduring.com/2009/08/27/the-awesome-960-grid-system/">wrote about</a> in one of my first posts on this blog. Not only does the grid allow me to create a beautiful, proportionate structure for my designs, it also provides an excellent and consistent framework. This, in turn, means that I can build concepts and prototypes <em>faster</em> than I could if I was coding the entire thing from scratch.</p><p>I&#8217;ve found this to be especially useful in my last few projects, in which I did a lot more of the design work in the browser itself, rather than mocking it all up in Photoshop.</p><p>Anyhow, while the plain-jane 960 grid worked well enough for me for my first few grid-based sites, I&#8217;ve been finding more and more that I want to tweak the basic parameters of the grid. For instance, I may want to increase the size of the gutter between columns, or change the number of columns from the standard 12, 16 or 24. Well, there are some awesome grid generator tools out there that I&#8217;ve used to do this.</p><p><span id="more-3959"></span></p><h4>Grid System Generator</h4><p>The <a href="http://www.gridsystemgenerator.com/">Grid System Generator</a> is a great tool. Personally, I was first drawn to it because it could allow me to customize the standard 960.gs that I had become so accustomed to using. It allows me to specify different widths for the document, change the number of columns, and tweak the spacing of the gutter (through left and right margins). Yet, while CSS is adjusted for my settings, the basic syntax remains the same!</p><div id="attachment_3976" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.gridsystemgenerator.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/grid-system-generator.jpg" alt="Generate custom CSS grids based on four different frameworks" title="Generate custom CSS grids based on four different frameworks" width="500" height="500" class="size-full wp-image-3976" /></a><p class="wp-caption-text">Generate custom CSS grids based on four different frameworks</p></div><p>The Grid System Generator isn&#8217;t a one-system app, though. You can also generate custom grid frameworks based on the Golden Grid, 1KB Grid and Simple Grid systems, making it a truly flexible tool with appeal and practical application for a wide range of designers and developers.</p><h4>Tiny Fluid Grid</h4><p>As a matter of personal preference when it comes to coding, I tend to prefer working with fixed-width layouts. It just tends to match the way I think &#8211; mostly in exact pixel widths. However, on one website that I was designing recently, the background image was extremely important for my client, and because I was using a base width of 960 pixels, this background became somewhat obscured on displays set to 1024 pixels in width.</p><p>So, I needed a way to shrink the content area down for smaller displays, while still maintaining the default width for larger displays. In other words, I needed a fluid grid. I could probably have done the math myself and converted the existing, static grid to a fluid one, but fortunately I had just discovered the <a href="http://www.tinyfluidgrid.com/">Tiny Fluid Grid</a> generator a few days earlier!</p><div id="attachment_3977" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.tinyfluidgrid.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/tiny-fluid-grid.jpg" alt="Generate a custom fluid grid based on the 1KB Grid system" title="Generate a custom fluid grid based on the 1KB Grid system" width="500" height="500" class="size-full wp-image-3977" /></a><p class="wp-caption-text">Generate a custom fluid grid based on the 1KB Grid system</p></div><p>This little web app will generate a fluid grid &#8211; based on the 1KB Grid System &#8211; and allows you to select the number of columns, the percentage width of the gutter, and (most importantly) the minimum and maximum widths of the grid itself. The syntax is pretty similar to the 960.gs, so I only had to make one slight tweak to the CSS to apply the grid to the existing site, though I had some other CSS trickery to do to force the grid to shrink down when I wanted it to.</p><p>Regardless, Tiny Fluid Grid was a real life saver on that project. It also has an awesome GUI. While most other generators just accept numeric input, this one has some really slick sliders that just make it fun to play with!</p><h3>Typography</h3><p>Obviously, typography is a hugely important aspect of any design, and the web is no exception. With the increasingly broad browser support for @font-face, and with font replacement services like <a href="http://typekit.com/">TypeKit</a>, designers are finding more and more freedom to do incredible things with typography on the web.</p><p>It has also paved the way for some really awesome typography-based tools on the web.</p><h4>Font Squirrel</h4><p>Looking to add some flair to your website, and move away from standard, web-safe fonts? Using @font-face is a great way to do this, but there are all kinds of licensing issues to be considered before you go uploading fonts to your server. There are also conversions to be made to account for the widest possible browser support.</p><p>Font Squirrel helps alleviate some of these issues.</p><div id="attachment_3978" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.fontsquirrel.com"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/font-squirrel.jpg" alt="Find fonts and download kits for @font-face integration" title="Find fonts and download kits for @font-face integration" width="500" height="500" class="size-full wp-image-3978" /></a><p class="wp-caption-text">Find fonts and download kits for @font-face integration</p></div><p>It is basically a repository of different fonts which, based on Font Squirrel&#8217;s interpretation of their licensing, are <em>freely</em> available to use on your websites. That&#8217;s pretty awesome. But it gets even better. The site also allows you to download @font-face kits, which include the font files along with a complete stylesheet that you can easily integrate into your own code.</p><p>It has made finding and integrating new fonts into my website an absolute dream.</p><h4>What the Font?</h4><p>Ever seen a cool font and wondered what it was? If it was from a famous image or logo, you may be able to find the answer on a forum somewhere (I have before), but that&#8217;s not always going to work for everyone. Well, the folks at MyFonts.com have developed a handy little app that you can use to try to satisfy your curiosity. Meet <a href="http://new.myfonts.com/WhatTheFont/">WhatTheFont</a>.</p><div id="attachment_3979" class="wp-caption aligncenter" style="width: 510px"><a href="http://new.myfonts.com/WhatTheFont/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/what-the-font.jpg" alt="Use this tool to identify cool fonts" title="Use this tool to identify cool fonts" width="500" height="500" class="size-full wp-image-3979" /></a><p class="wp-caption-text">Use this tool to identify cool fonts</p></div><p>Basically, you take a screenshot or photograph of some typography &#8211; preferably something unique and well spaced &#8211; and upload it to the site. It will then try to decipher the different characters and ask you to confirm that it identified the letters properly. One you&#8217;ve done that, the app will go out and try to determine what the font is.</p><p>Obviously, it&#8217;s not perfect, and the results are going to depend a great deal on the quality of the original source image. From what I can tell, the results also appear to be from MyFont&#8217;s own library (which really makes sense, all things considered). Still, it&#8217;s a useful little tool that&#8217;s fun to play with, and which can potentially introduce you to some awesome new typefaces. I have an app for my iPhone too!</p><h3>Icons</h3><p>I love icons. I love finding them, designing them and finding interesting ways of integrating them into my work. A few months ago, I also wrote a <a href="http://blog.echoenduring.com/2010/03/30/icons-and-the-web-part-1-why-they-matter/">series</a> about using icons on the web. All that being said, there are a few really awesome icon resources out there. </p><h4>Iconza</h4><p><a href="http://iconza.com/">Iconza</a> is a free icon set fused together with a customizable generator. Basically, it is a set of 112 awesome, monochromatic icons that you can download and use in your designs (with attribution). All on its own, that&#8217;s pretty awesome. But it gets better.</p><div id="attachment_3982" class="wp-caption aligncenter" style="width: 510px"><a href="http://iconza.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/iconza.jpg" alt="Download this icon set with customized size and colour" title="Download this icon set with customized size and colour" width="500" height="500" class="size-full wp-image-3982" /></a><p class="wp-caption-text">Download this icon set with customized size and colour</p></div><p>The Iconza website actually allows for a reasonably broad range of customization options. There are 15 different colour options, including five shades ranging from black, to grey, to white. There are also three different sizes &#8211; 32&#215;32, 24&#215;24 and 16&#215;16, and even just a cursory glance will reveal that the icons are optimized for quality at each size, rather than just scaled down. Lastly, this little web app provides an RGB colour selector for setting the background colour of the icons.</p><h4>Feedicons.com</h4><p>There is no shortage of <a href="http://blog.echoenduring.com/2009/10/22/unique-and-sensational-rss-icons/">RSS icons</a> out there on the web, but if you&#8217;re looking for a nice simple solution for your visual RSS needs, then <a href="http://www.feedicons.com/">Feedicons.com</a> could be a great solution for you.</p><div id="attachment_3983" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.feedicons.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/feed-icons.jpg" alt="Free and simple RSS icons" title="Free and simple RSS icons" width="500" height="500" class="size-full wp-image-3983" /></a><p class="wp-caption-text">Free and simple RSS icons</p></div><p>There are a few different download options, such as a 2 icon pack of 28&#215;28 and 14&#215;14 (the smaller one does look a bit off though). There is also a tiny pack of coloured 12&#215;12 icons. The big one, however, is the developer pack, which contains icons ranging from 12&#215;12 to 128&#215;128, in all kinds of different image formats including editable vectors. This allows you all kinds of flexibility to customize the icons.</p><h4>iconSweets</h4><p>Monochromatic icons are probably some of the most useful, in terms of being able to easily integrate them into so many different types of designs, and there are so many different places to find and download such icons. One of my recent favorites is the <a href="http://www.iconsweets.com/">iconSweet</a> set, by YummyGum.</p><div id="attachment_3984" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.iconsweets.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/icon-sweets.jpg" alt="60 simple and beautiful monochrome icons" title="60 simple and beautiful monochrome icons" width="500" height="500" class="size-full wp-image-3984" /></a><p class="wp-caption-text">60 simple and beautiful monochrome icons</p></div><p>This pack contains 60 beautifully designed vector icons that appear to be designed primarily for use in your next iPhone or iPad app, but which could easily also become a focal point of your next web design too. Again, the fact that they are vector based makes them extremely customizable, which is always a bonus for any designer.</p><p>Admittedly, I also just really love the design of the website, which is part of the reason that I chose to include this particular set over some of the many others. The pink and grey colour palette and sliding images within the balloon are all really slick. That being said, however, there are lots of other similar sets available out there. To find more, check out this recent article of at SpyreStudios: <a href="http://spyrestudios.com/minimalist-icon-symbol-pictogram-sets/">40 Minimalist Icon, Symbol &#038; Pictogram Sets</a>.</p><h3>Other Graphics</h3><p>As great as icons are, however, they are not the be all and end all of supporting graphics, and there a few other cool graphic-generating web apps that I really dig.</p><h4>Placehold.it</h4><p>When building prototypes and mockups of websites, I often don&#8217;t have actual images that stick in yet, and need to create a placeholder image. Traditionally, what I used to do was to create a single pixel image and then adjust the properties to stretch it out the the required size. That worked pretty well, but thanks to a recent tweet from <a href="http://www.swiss-miss.com">SwissMiss</a>, I discovered this incredibly simple and useful little site called <a href="http://placehold.it/">Placehold.it</a>.</p><div id="attachment_3989" class="wp-caption aligncenter" style="width: 510px"><a href="http://placehold.it/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/placehold-it.jpg" alt="Grab simple placeholder images of any size" title="Grab simple placeholder images of any size" width="500" height="500" class="size-full wp-image-3989" /></a><p class="wp-caption-text">Grab simple placeholder images of any size</p></div><p>Basically, this simple web app does one thing &#8211; it generates greyscale placeholder images of absolutely any size, all with a really simple, URL based syntax that is super easy to remember. All you have to do is insert the appropriate URL into your code, and the app will serve up a placeholder image for you.</p><p>It may not seem like a huge deal, but I&#8217;m pretty excited about this recent find. I can see it saving me a ton of time in future projects.</p><h4>StripeMania</h4><p>Stripes don&#8217;t seem to quite as popular in web design as they were two or three years ago, but they&#8217;re still something that will never really go out of style entirely. Every once in a while, I find myself needing some stripes for this or that &#8211; and not always just for on the web.</p><p><a href="http://www.stripemania.com/">StripeMania</a> is an awesome little web app that I&#8217;ve blogged about before in my article &#8220;<a href="http://blog.echoenduring.com/2009/09/29/17-useful-pattern-resources/">17 Useful Pattern Resources</a>&#8220;, which I always return to when I need some kind of repeating stripe pattern.</p><div id="attachment_920" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.stripemania.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/09/stripe-mania.jpg" alt="Stripemania" title="Stripemania" width="500" height="500" class="size-full wp-image-920" /></a><p class="wp-caption-text">Stripemania</p></div><p>For an app that just generates stripes &#8211; something that might seem relatively simple &#8211; there are a surprising number of options and controls on this one. You can adjust the stripe width, the spacing width, the orientation, the colours of the stripes and the background and so forth. You can even set a gradient. All this makes for a powerful little tool with almost limitless customization.</p><h4>AjaxLoad</h4><p>If your websites are loading any kind of dynamic data through either AJAX or some other custom methodology, chances are that you&#8217;re going to want to include some sort of animated graphic, in order to indicate to the user that the data <em>is</em> actually loading. The <a href="http://www.ajaxload.info/">AjaxLoad</a> site is an awesome solution for this need.</p><div id="attachment_3974" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.ajaxload.info"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/08/ajaxload.jpg" alt="AjaxLoad allows you to generate custom loading animations in GIF format" title="AjaxLoad allows you to generate custom loading animations in GIF format" width="500" height="500" class="size-full wp-image-3974" /></a><p class="wp-caption-text">AjaxLoad allows you to generate custom loading animations in GIF format</p></div><p>You can select from over 30 different animated graphics, select the foreground colour and the background colour, then generate and download an animated GIF based on your choices. If you want, you can even make the background transparent, though of course you&#8217;ll have to take into consideration the natural drawbacks of GIF transparency.</p><p>With the broad range of animations and the extensive customization, this little resource is a great one to keep in your bookmarks!</p><h3>Conclusion</h3><p>Obviously, this list is not an exhaustive roundup of all the different resources that are out there on the web. Such a list would be much, much longer and would include all kinds of goodies and awesomeness that I didn&#8217;t have the chance to include here. As I stated in the opening, these are merely some of my favorite, bookmarked resources, which I thought might be worth sharing.</p><p><strong>What about you? What are some of your favorite resources and web apps that make your work as a designer or developer go more easily? Please feel free to share them!</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2010/08/07/10-of-my-favorite-online-tools-for-design-and-development/feed/</wfw:commentRss>
			<slash:comments>30</slash:comments>
		</item>
		<item>
			<title>It&#8217;s The Little Things</title>
			<link>http://blog.echoenduring.com/2010/07/07/its-the-little-things/</link>
			<comments>http://blog.echoenduring.com/2010/07/07/its-the-little-things/#comments</comments>
			<pubDate>Thu, 08 Jul 2010 02:25:59 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Articles]]></category>
			<category><![CDATA[Design]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=3826</guid>
			<description><![CDATA[Sometimes its the little things in a design that can have the biggest impact. In this article, we'll look at six different examples of websites that do a great job with these little things. We'll also consider each site on its own, and how the smaller details help support the design.<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F07%2F07%2Fits-the-little-things%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F07%2F07%2Fits-the-little-things%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>Years ago, as I was venturing into the unknown world of high school and some semblance of teenage angst, Gavin Rossdale sang the line &#8220;it&#8217;s the little things that kill&#8221;. That chorus played frequently through my stereo and the headphones of my good old Sony DiscMan. Even today, I find the odd occasion to listen to it that <a href="http://en.wikipedia.org/wiki/Sixteen_Stone">album</a>. </p><p>Well, the &#8220;little things&#8221; are exactly what I want to talk about today.</p><div id="attachment_3851" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/the-little-things.jpg" alt="It&#039;s The Little Things" title="It&#039;s The Little Things" width="500" height="500" class="size-full wp-image-3851" /><p class="wp-caption-text">It's The Little Things</p></div><p>From my perspective, the little things in design are all those finer details, which, though they may often go unnoticed by the most non-designers, still work to complete a design and give it that professional polish that separates the attractive from the truly beautiful. </p><p>Let&#8217;s take a look at some examples of the little things that make some of my favorite designs so awesome.</p><p><span id="more-3826"></span></p><h3>Astheria&#8217;s Subtle, Geometric Pattern</h3><p><a href="http://astheria.com/">Astheria</a> is a really great site that offers interesting and insightful articles and blog posts. It has a really nice, minimal design that pays very close attention to white space and typography. What I would like to draw your attention to, however, is the fine pattern that runs down the right hand side. </p><div id="attachment_3828" class="wp-caption aligncenter" style="width: 510px"><a href="http://astheria.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/little-things-astheria-shot.jpg" alt="Astheria" title="Astheria" width="500" height="175" class="size-full wp-image-3828" /></a><p class="wp-caption-text">Astheria</p></div><p>Because the site&#8217;s background is entirely white, and because it is aligned to the left side of the screen, the pattern of these repeating plus signs really helps establish the visual boundary of the content area. It does so in a unique way, however, which keeps very nicely with the site&#8217;s overall, subtle design. </p><p>It&#8217;s a small touch, but really helps complete and balance the site. </p><h3>FINCH&#8217;s Awesome Typography</h3><p>Much like Astheria, <a href="http://www.getfinch.com/">FINCH</a> also works with a complete white background and a very minimalist design. However, what I would like to focus on here is the attention paid to the typography. As designers, we can add so much meaning to a site just through the finer details of type. Just look at this one section of the site:</p><div id="attachment_3831" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.getfinch.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/little-things-getfinch-shot.jpg" alt="FINCH" title="FINCH" width="500" height="175" class="size-full wp-image-3831" /></a><p class="wp-caption-text">FINCH</p></div><p>In just this one small area, we can count <em>five</em> different typographical treatments on the text. There is the cursive type in the pastel circles, which work as column headers. Then there&#8217;s the small-cap subtitles, set in a light grey. Article titles are set in regular case, but slightly larger and in an almost-but-not-quite black, while the publisher of each articles is set in a smaller, italicized and lighter grey variant. Finally, the paragraph text in the leftmost column, which is similar to the publisher text, but slightly larger.</p><p>Through all these variants, a great deal of meaning is conveyed. A visual hierarchy is established, which reveals to the reader the relative importance of each segment of content, allowing for quick and easy scanning of the page. Yet, at the same time, it also maintains a cohesive beauty which is neither fragmented not cluttered.</p><p>Again, in the final product these typographical choices may seem to be a tiny detail, but they have an incredibly important bearing on the final design!</p><h3>The Design Cubicle&#8217;s Subtle Line Work</h3><p>Brian Hoff, the creator and designer behind the popular <a href="http://www.thedesigncubicle.com/">Design Cubicle</a> blog, does many things well. Typography is one example. Killer logos are another. He also has a great eye for the little things, as can be exemplified by the recent redesign of his blog.</p><div id="attachment_3830" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.thedesigncubicle.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/little-things-design-cubicle-shot.jpg" alt="The Design Cubicle" title="The Design Cubicle" width="500" height="175" class="size-full wp-image-3830" /></a><p class="wp-caption-text">The Design Cubicle</p></div><p>This is probably one of my favorite redesigns of all time, since it took the Design Cubicle from something that looked very &#8220;design-bloggy&#8221; and transformed it into a unique and beautiful site that is always a joy to look upon (and to read).</p><p>Notice all the fine detail that we can see in this shot &#8211; the diagonal line work that in the logo is also echoed very subtly through the header portion of the wide, red margins (you can also see it in the footer). The cross hatching up the sides of the content area also lends a lot to the site, and though it&#8217;s a small and subtle detail, it certainly becomes a very distinctive feature of the design.</p><h3>Darren Hoyt&#8217;s Background and Typography</h3><p><a href="http://www.darrenhoyt.com/">Darren Hoyt&#8217;s site</a> features some more of what we have already looked at in some of the previous examples, but allows us to see it working together in this one, simple screenshot:</p><div id="attachment_3829" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.darrenhoyt.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/little-things-darren-hoyt-shot.jpg" alt="Darren Hoyt" title="Darren Hoyt" width="500" height="175" class="size-full wp-image-3829" /></a><p class="wp-caption-text">Darren Hoyt</p></div><p>Like in the Design Cubicle design, we can see a really subtle cross-hatch pattern, this time worked into the background, adding a really nice visual flair to the overall design. What you obviously <em>can&#8217;t</em> see in this shot, however, is the equally subtle fading that exists, or the fact that the background is actually locked in place (meaning it doesn&#8217;t move when you scroll).</p><p>Combine this with another example of really lovely typography (though very different from that which we saw on FINCH), and we have still more evidence of the incredible power of the little details.</p><h3>Squared Eye&#8217;s Precision Design</h3><p>The bold statement plastered across the top of the <a href="http://squaredeye.com/">Squared Eye</a> site is simple. They claim to have a &#8220;monstrous appetite for the tiniest details.&#8221; This, of course, fits right in with the theme of this article, and from what I can see on the site itself, the claim appears to be justified! There is interesting line work and wonderful typography, but what I would like to focus on is the pin point precision. </p><div id="attachment_3832" class="wp-caption aligncenter" style="width: 510px"><a href="http://squaredeye.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/little-things-squared-eye-shot.jpg" alt="Squared Eye" title="Squared Eye" width="500" height="175" class="size-full wp-image-3832" /></a><p class="wp-caption-text">Squared Eye</p></div><p>The little arrow that you see in this screenshot is the back arrow for a sliding panel box that showcases recent design work. However, notice that this same arrow is also connected to a horizontal rule, which divides the blurb above it from the list of clients below. </p><p>Though subtle, this kind of effect ultimately requires expert execution, in terms of both the copy <em>and</em> the design. If it&#8217;s even just a little bit off, that part of the design could appear broken or unfinished. </p><p>Again, it&#8217;s a matter of small details paying a large role.</p><h3>31three&#8217;s </h3><p>The last example that I would like to showcase is the <a href="http://31three.com/">31three</a> site. Like pretty much all of our examples, we could talk about the typography again, which is really stunning, but what I want to highlight is how the designer (Jesse Bennett-Chamberlain) actually makes use of a number of interesting transparency effects. </p><div id="attachment_3827" class="wp-caption aligncenter" style="width: 510px"><a href="http://31three.com/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/07/little-things-31three-shot.jpg" alt="31three" title="31three" width="500" height="175" class="size-full wp-image-3827" /></a><p class="wp-caption-text">31three</p></div><p>In this screenshot, you will notice how the porthole-like circles are actually framed by a thick, transparent ring, which in turn picks up the colour changing division that runs horizontally across the screen. This same division can also be seen, though much more faintly, through the bottle on the right of the screenshot. </p><p>While neither of these effects are particularly difficult to achieve and can be done right in a graphics program like Photoshop, they still point to the designer&#8217;s keen attention to detail, and really help to pull the entire design together.</p><h3>A Problem with the Little Things</h3><p>Now, as important as paying close attention to these little things can be, and as effective as they are at really helping to improve on the overall quality of a design, we still need to be aware of the very real danger of getting <em>too</em> caught up in the little things. Sometimes, I think, designers (myself included) can become almost obsessive about these tiny details, and can whittle away hours working on them.</p><p>Always do your best to avoid this.</p><p>The little details are important, and you should always give them their due consideration. Just be careful to not obsess too much. The attention you pay to these details very likely points to a certain maturity as a designer, but the ability to consider them, make appropriate design decisions and move on demonstrates an even higher level of maturity that I think we should all ultimately strive for.</p><p>The last thing you want is for a project to get bogged down in a sea of tiny details. After all, if we&#8217;re not attentive in this area, Gavin&#8217;s raspy, grunge refrain could become an unpleasant reality in which the little things really <em>do</em> kill.</p><p><strong>You&#8217;re turn to talk! Do you have any other examples of sites that do a really great job at considering the little things? What about your own work? Do you consider these kinds of tiny details? Do you find yourself getting caught up in them? Let&#8217;s hear your thoughts!</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2010/07/07/its-the-little-things/feed/</wfw:commentRss>
			<slash:comments>21</slash:comments>
		</item>
		<item>
			<title>5 Basic Usability Breakdowns You Want to Avoid</title>
			<link>http://blog.echoenduring.com/2010/05/20/usability-breakdowns-to-avoid/</link>
			<comments>http://blog.echoenduring.com/2010/05/20/usability-breakdowns-to-avoid/#comments</comments>
			<pubDate>Thu, 20 May 2010 22:58:25 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Articles]]></category>
			<category><![CDATA[usabulity]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=3524</guid>
			<description><![CDATA[In this article, I just want to focus on five really basic usability "breakdowns", based on my own recent browsing and professional experience. It simply lists some simple and basic fundamentals that I think that every designer and developer should follow – yet which it seems that so many don't.<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F05%2F20%2Fusability-breakdowns-to-avoid%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F05%2F20%2Fusability-breakdowns-to-avoid%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>Usability is definitely a big topic in the world of web design and development. There are entire sites, like <a href="http://www.uxbooth.com/">UX Booth</a>, dedicated to the topic (and the related concept of user experience). Still, despite the plethora of information out there, I am always amazed by how many sites out there really annoy me through basic usability faux-pas, or at least by failing to provide me with certain elements that I have come to expect and look for.</p><div id="attachment_3539" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/05/usability-breakdowns.jpg" alt="5 Basic Usability Breakdowns You Want to Avoid" title="5 Basic Usability Breakdowns You Want to Avoid" width="500" height="500" class="size-full wp-image-3539" /><p class="wp-caption-text">5 Basic Usability Breakdowns You Want to Avoid</p></div><p>So, in this article, I just want to focus on five really basic usability &#8220;breakdowns&#8221;, based on my own recent browsing and professional experience. There&#8217;s nothing deep, dark or mysterious about any of this either. There is no extensive usability theory or generalized insights into the minds of your users. This article is also neither exhaustive nor entirely authoritative. It simply lists some simple and basic fundamentals that I think that every designer and developer should follow – yet which it seems that so many don&#8217;t.</p><p><span id="more-3524"></span></p><h3>Make Me Guess Menus</h3><p>I think that, sometimes, designers just try to get to clever with their navigation, and in this attempt lose all connection with that fact that people actually be able to <em>use</em> the site. From this perspective, if there is one thing that drives me up the wall when I come to a new site, it&#8217;s having to actually guess at using the menu.</p><div id="attachment_3533" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/05/blinds.jpg" alt="Make Me Guess Navigation" title="Make Me Guess Navigation" width="500" height="175" class="size-full wp-image-3533" /><p class="wp-caption-text">Make Me Guess Navigation</p></div><p>I&#8217;m sure you know what I&#8217;m talking about – those sites where there is no clear indication as to where each menu item will direct you. And that, of course is assuming that you can even find the menu. These are the sorts of sites where you actually have to hover over some object or element in order to make the menu item <em>appear</em>.</p><p>If we take the time to really think about it, I don&#8217;t think it takes all that much insight to realize that this does nothing but hurt the usability. Here I am, either as a new user of a particular site. I arrive – either to the homepage or through some other entry point – and decide that I want to navigate somewhere else. Yet, before I can figure out where I can go (let alone how to actually get there), I have to play this navigation guessing game, rolling over items just to figure out what they are.</p><p>As a user, it&#8217;s an incredibly frustrating experience, which does nothing to enamour me to a particular site, or the company that stands behind it.</p><p>The solution, of course, is simple. Always make your navigation extremely clear and explicit, using simple text, or at the very least readily identifiable icons that won&#8217;t keep users guessing.</p><h2>Glitchy Drop Downs</h2><p>While the navigation guessing game can be frustrating, some drop down menus that I&#8217;ve come across are just plain unusable, usually due to some sort of coding issue that creates a glitch in the interface. The most common example that I come across is a menu in which the drop down items become totally inaccessible due to the way that they are styled.</p><p>Basically, the problem goes like this: I hover over a menu item. As expected, several other options appear in a dropdown sub menu. Deciding that I would like to view one of the items in that submenu, I quickly move my cursor towards it. However, before I can actually click on the item that I want, the entire submenu vanishes in a puff of CSS/box model buggy-ness.</p><div id="attachment_3532" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/05/arrow-cursor.jpg" alt="Glitchy Drop Downs" title="Glitchy Drop Downs" width="500" height="175" class="size-full wp-image-3532" /><p class="wp-caption-text">Glitchy Drop Downs</p></div><p>Of course, being the determined user, I try it a few more times (knowing full well that it won&#8217;t work), before sighing in frustration. Now, if I <em>really</em> want to access the information, I might try bringing up the page in a different browser, but how many users to you really thing are going to be that dedicated? Probably not very many.</p><p>From what I can see from most of these sites, the problem has to do with a breakdown within the display of the menu, usually surrounding hovers and margins. For whatever reason, the submenu&#8217;s top margin is effected somehow, causing a space between it an the main navigational element. When this happens, the submenu becomes completely inaccessible. This is because, in order to move from the main menu to the submenu, the user&#8217;s cursor has to bridge the gap. The moment this happens, the hover state is to longer true, and the submenu vanishes.</p><p>More often than not, this issue is probably the result of less-than-extensive testing for cross-browser compatibility, and could be remedied by more extensive testing.</p><p><strong>Note</strong>: I have recently become aware of some issues that have developed with my own site in some browsers. I am currently working towards ironing these out in my upcoming redesign.</p><h3>Buried Contact Page</h3><p>This is something that I see all the time: a contact page that is buried somewhere on the site. Let&#8217;s be straightforward and to the point about this one – if you want your users (or customers) to contract you through your website, then make your contact page visible and accessible from every single page on your website.</p><p>I&#8217;ve frequently seen sites where the contact page is buried in a submenu – possibly under an “about” section or some other less logical area. This forces the user to work harder to find it.</p><div id="attachment_3537" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/05/buried-in-sand.jpg" alt="Buried Contact Pag" title="Buried Contact Pag" width="500" height="175" class="size-full wp-image-3537" /><p class="wp-caption-text">Buried Contact Pag</p></div><p>This is not a good thing! Please don&#8217;t fall into the engagement trap, attempting to justify this usability faux pas under the premise that this will help &#8220;engage&#8221; your users. Yes, users want to engage with your website, but they want to do it through your content. They <em>don&#8217;t</em> want to have to spend extra time just trying to figure out how to find or access that content – in this case the contact page.</p><p>The more a user has to work at something, the less likely they are to follow through with a particular action.</p><p>So, unless you don&#8217;t want your users contacting you (which is another issue altogether), make your contract page visible and accessible throughout your website. I recommend including it in your main navigation. Some sites relegate this to a secondary menu at the bottom of the page. While this is better than nothing, I still advise against it, since it reduces the overall visibility of the page.</p><p>Remember: more work for the user translates into less followthrough.</p><h3>No Favicon or Title</h3><p>For those (few) who don&#8217;t know, a favicon is that little icon that appears on each tab in your browser. It&#8217;s a customizable feature that has been available for quite some time now, and though it may not seem like a really big deal, failing to include a favicon on a site is one minor usability issues that can really drive me up the wall.</p><div id="attachment_3535" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/05/favicons.jpg" alt="No Favicon or Title" title="No Favicon or Title" width="500" height="175" class="size-full wp-image-3535" /><p class="wp-caption-text">No Favicon or Title</p></div><p>Allow me to explain.</p><p>A number of year ago now, I started using Firefox. I actually discovered the browser while in university, where a few friends introduced it to me. There were a number of things that I really liked about it, not the least of which was the ability to maintain multiple pages in the same window using tabs. That was pretty cutting edge at the time and blew my mind. I quickly grew accustomed to this kind of browsing and these days (in which all major browsers support tabbed browsing), it is not unusual for me to have upwards of ten or twelve pages open in the same window at the same time.</p><p>The favicon for each page actually appears on the individual tabs, too, offering a quick and visual way of recognize which page is which and being able to click from tab to tab. That is, of course, as long as the pages are <em>using</em> favicons. Sites that aren&#8217;t become more difficult to pick out quickly, making the browsing experience less enjoyable – especially if you happen to have multiple favicon-less pages open at the same time.</p><p>A related, and even more dire (though less frequent), phenomenon is that of pages not including anything in the &lt;title&gt; tag, or which neglect to change the contents from “Untitled Page”. This has much the same effect as a lack of a favicon, in that it simply fails to properly identify the page.</p><p>It&#8217;s also a complete SEO blunder. Now, I&#8217;m no SEO “guru” (if such a thing even exists), but I have found that a good title is probably one of the most effective ways of building recognition on search engines, and any page that lacks this information is doing nothing but hurting its visibility on the search engine front.</p><p>That being said, then, in today&#8217;s world of search engine optimization and multi tabbed browsing, you always want to provide both a meaningful title and a recognizable favicon to help users and search engines find and recognize your site.</p><h3>Breadcrumb Only Navigation</h3><p>The last usability issue that I want to touch on is something that I myself once implemented on a site, and which really didn&#8217;t work out – the use of breadcrumbs as the only real form of navigation.</p><p>At the time, it seemed like a good idea. It would allow the user to know exactly where in the site they were at any given moment, and would help clean up the page by minimizing the number of menu items that a visitor would have to deal with at any given moment. I thought it was brilliant.</p><p>It turned out to be a disaster.</p><p>A technique that was mean to help users find and maintain their bearings as they navigated the site actually left them feeling lost and confused. They might be able to see where they were, but they still had significant challenges trying to figure out how to get anywhere else. The breadcrumb trail did actually have some drop down navigation functionality, but it was foreign and unfamiliar to users and they simply did not embrace it.</p><p>A subsequent redesign saw the navigation return to a more complete and more traditional navigation system.</p><div id="attachment_3534" class="wp-caption aligncenter" style="width: 510px"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/05/chains.jpg" alt="Breadcrumb Only Navigation" title="Breadcrumb Only Navigation" width="500" height="175" class="size-full wp-image-3534" /><p class="wp-caption-text">Breadcrumb Only Navigation</p></div><p>In retrospect, that experience taught me something very important about breadcrumbs – they are seen and understood as being primarily linear. Like a chain, one element links to directly to another, and the navigation allows the user to move back up that chain. However, though it may be one of the most obvious statements of the century, a website is more like a web (see? Obvious). Everything is interconnected, and a good navigation system should reflect this, allowing users to move from one section to another with relative ease.</p><p>Am I saying that breadcrumbs are bad? Not at all. They can be an incredibly useful navigational <em>enhancement</em>. What I <em>am</em> saying is that breadcrumbs should not make up the only (or even the primary) form of navigation.</p><h3>Conclusion</h3><p>So there you have it – five different usability breakdowns that you will want to avoid. As I&#8217;ve already mentioned, this list is neither exhaustive nor authoratative. There are many, many more usability issues that we could talk about, and which have probably been discussed on other websites. These are simply five key ones that came to my mind when thinking about my own recent browsing and professional experience.</p><p><strong>What do you guys think? Do you agree with me about these importance of avoiding these usability issues? Do you have any experience with them? Are there any other issues that you want to bring up? Have your say!</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2010/05/20/usability-breakdowns-to-avoid/feed/</wfw:commentRss>
			<slash:comments>28</slash:comments>
		</item>
		<item>
			<title>Echoes – Week 19 (Jan 18, 2010)</title>
			<link>http://blog.echoenduring.com/2010/01/18/echoes-%e2%80%93-week-19-jan-18-2010/</link>
			<comments>http://blog.echoenduring.com/2010/01/18/echoes-%e2%80%93-week-19-jan-18-2010/#comments</comments>
			<pubDate>Tue, 19 Jan 2010 03:20:58 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Echoes]]></category>
			<category><![CDATA[art]]></category>
			<category><![CDATA[logo]]></category>
			<category><![CDATA[Tutorial]]></category>
			<category><![CDATA[Websites]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=2301</guid>
			<description><![CDATA[Echoes: Week 19 – Jan 18 2010. This is the nineteenth edition of my weekly Echoes posts, in which I feature some of the best work that I have found on the web. Features one logo, one piece of art, one tutorial and one website.<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F01%2F18%2Fechoes-%25e2%2580%2593-week-19-jan-18-2010%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2010%2F01%2F18%2Fechoes-%25e2%2580%2593-week-19-jan-18-2010%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>What a week! I am still kind of reeling from the devastation that occurred down in Haiti, which actually hits very close to home for me. I&#8217;ve already started doing some design work to help drum up funds for the relief work. I&#8217;ll be posting more on that, and my own personal connection to Haiti later.</p><p>I&#8217;ve also been extremely busy with client projects &#8211; specifically, I&#8217;ve been working on a couple of websites, both of which are approaching completion. I&#8217;ll also be posting about those once they&#8217;re all done and have gone live. </p><p>All told, that&#8217;s why it&#8217;s been a bit quiet here on the Echo Enduring Blog this week. I do have a long line of content lined up though. It&#8217;s just a matter of getting in written, polished and posted. Hopefully you will see more of that over the coming weeks!</p><p>Now on to this week&#8217;s Echoes!</p><h3>Logo &#8211; Living Grace Lutheran Church</h3><p>It&#8217;s always great to see a well designed church logo that moves beyond the simple cliches that so many of them seem to use &#8211; a dove, a simple cross, a globe. This week&#8217;s logo is just such an example! </p><div id="attachment_2311" class="wp-caption aligncenter" style="width: 330px"><a href="http://www.logospire.com/logos/2899"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/01/living-grace-logo.jpg" alt="Living Grace Lutheran Church" title="Living Grace Lutheran Church" width="320" height="260" class="size-full wp-image-2311" /></a><p class="wp-caption-text">Living Grace Lutheran Church</p></div><p>Okay, so the logo is not entirely devoid of the cross image, but I&#8217;ll cut the designer some slack. The cross is the quintessential symbol of Christianity, so it only makes sense to have it reflected in a church logo. What I like about this one, though, is that the designer didn&#8217;t just fall back into the same old version of the cross. Actually, the cross shape is almost secondary. The first thing most people will see when they look at this is the tree.</p><p><span id="more-2301"></span></p><p>There is actually a scriptural basis for the tree metaphor. In the book of Acts, the apostle Peter refers to the cross as a tree, and throughout the Gospels, Jesus presents several parables in which he talks about trees. I won&#8217;t get into the specifics here, but the image of the tree works very well for a Church.</p><p>It also does a nice job of dividing the background of the logo into four quadrants, which are coloured differently, to suggest the four different seasons. This suggests that the church itself is a church for all seasons, or, if reading the metaphor a bit more deeply, for all ages. </p><h3>Art &#8211; Chaos</h3><p>Even though I got a lot of my inner geekiness out in my &#8220;<a href="http://blog.echoenduring.com/2010/01/09/if-photoshop-was-batman-then-illustrator-would-be/">If Photoshop Was Batman, Then Illustrator Would Be…</a>&#8221; post, there&#8217;s always room for a little bit more with me. So, when I came across this incredible painting of the Joker, I just knew I would have to feature it here in Echoes.</p><div id="attachment_2309" class="wp-caption aligncenter" style="width: 510px"><a href="http://sullen-skrewt.deviantart.com/art/Chaos-150143767"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/01/Chaos_by_sullen_skrewt-500x557.jpg" alt="Chaos" title="Chaos" width="500" height="557" class="size-large wp-image-2309" /></a><p class="wp-caption-text">Chaos</p></div><p>I feel that the composition of this piece perfectly reflects the damaged psyche of the Joker character. The image itself is broken and distorted, just like the Joker himself. At least, we assume that the Joker is broken and distorted. It is entirely possible, however, that he is actually quite sane &#8211; and just completely evil. But that&#8217;s an entirely different can of worms. </p><p>There is something very interesting about the eyes in this one, though. They look almost calm and serene, states of being that are certainly not traditionally associated with the psyco-sociopathic clown. The make-up is also made to look more like paint, which appears to be melting off of the Joker&#8217;s face, further suggesting that the maniacal persona is exactly that, just a persona that the Joker puts on. </p><p>An interesting idea, and an awesome painting. </p><h3>Tutorial &#8211; Design a Surreal Desert Scene in Photoshop</h3><p>It&#8217;s been a while since I&#8217;ve featured a complex photo manipulation tutorial here on Echoes, so that&#8217;s what we will be looking at this week. The tutorial is from Tutorial 9, and provides in-depth, step by step instructions on exactly how to create a surrealistic scene using an interesting variety of different pieces of photographs.</p><div id="attachment_2321" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.tutorial9.net/photoshop/design-a-surreal-desert-scene-in-photoshop/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/01/desert-scene-tutorial.jpg" alt="Design a Surreal Desert Scene in Photoshop" title="Design a Surreal Desert Scene in Photoshop" width="500" height="500" class="size-full wp-image-2321" /></a><p class="wp-caption-text">Design a Surreal Desert Scene in Photoshop</p></div><p>Like most photo manipulation tutorials of this type, this one involves a lot of cutting elements out of their backgrounds, layering them over top of one another and using a variety of blending modes and other techniques to bring them all together into one cohesive looking final image. I don&#8217;t find that there&#8217;s anything really all that mysterious in this one. It makes some interesting use of levels for some colour adjustments, and does a good job of creating realistic shadows. Basically, though, it&#8217;s just a solid exercise in blending different photographic elements.</p><p>I also particularly like the techniques from the final few steps, which use some gradient maps and blending modes in order to really brighten up the image and give it that dreamy, surrealistic look. Those techniques are enough, in and of themselves, to make this a valuable tutorial.</p><p>I just have one question. Why does so much surrealistic art want to include clocks? Think Salvador Dali&#8230;</p><h3>Website &#8211; Denise Chandler Website</h3><p>Here&#8217;s a cool little site that came across in one of the CSS galleries that I frequent. This one has a pretty cool design, with a few interesting features.</p><div id="attachment_2322" class="wp-caption aligncenter" style="width: 510px"><a href="http://teamfannypack.com/denise/"><img src="http://blog.echoenduring.com/wp-content/uploads/2010/01/denise-chandler.jpg" alt="Denise Chandler Website" title="Denise Chandler Website" width="500" height="500" class="size-full wp-image-2322" /></a><p class="wp-caption-text">Denise Chandler Website</p></div><p>For the most part, this is a minimalist site. The design elements themselves are relatively simple, and there is not a lot of excess decoration going on, and virtually no texture. Of course, the big, bold header of a question contrasts beautifully against this minimalism, giving the site immediate weight and impact from the moment it opens in the viewer&#8217;s browser window. </p><p>It&#8217;s also the first phrase of what seems to be somewhat self-effacing copy throughout the site. It&#8217;s all carefully chosen, of course, and crafted to make it seem like Denise doesn&#8217;t take herself too seriously (and she probably doesn&#8217;t). I&#8217;ve noticed that this is kind of a trend these days on designer sites. I wonder if the humour is beneficial?</p><p>The coolest part of this site has to be the bees though. The two very simply rendered little insects buzz merrily around the top of the page. This is a great example of how to give a bit of life to a static design <i>without using flash</i>. The bees exist simply as animated GIFs. Yes, that&#8217;s right &#8211; animated GIFs. They do still exist, and can have a purpose in the modern web beyond just advertisement banners! Very cool!</p><p><strong>Well that’s it for this week’s Echoes. Which ones were your favorites? As always, if you know of any designs, tutorials or art that merits being included in a future post, feel free to let me know about it!</strong></p><p><strong>And please do keep the people of Haiti in your thoughts and prayers. Thank you.</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
			<wfw:commentRss>http://blog.echoenduring.com/2010/01/18/echoes-%e2%80%93-week-19-jan-18-2010/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		</item>
		<item>
			<title>25 Examples of Green and Grassy Websites</title>
			<link>http://blog.echoenduring.com/2009/11/29/25-examples-of-green-and-grassy-websites/</link>
			<comments>http://blog.echoenduring.com/2009/11/29/25-examples-of-green-and-grassy-websites/#comments</comments>
			<pubDate>Mon, 30 Nov 2009 03:25:27 +0000</pubDate>
			<dc:creator>Matt Ward</dc:creator>
			<category><![CDATA[Roundups]]></category>
			<category><![CDATA[Websites]]></category>
			<category><![CDATA[grass]]></category>
			<category><![CDATA[Inspiration]]></category>
			<category><![CDATA[trend]]></category>
			<guid isPermaLink="false">http://blog.echoenduring.com/?p=1700</guid>
			<description><![CDATA[One extremely popular trend that I have noticed in website design over the past little while is the use of green and grassy elements. In this post we will be looking at 25 examples from across the web, and discussing the advantages and disadvantages of this particular technique. <p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2009%2F11%2F29%2F25-examples-of-green-and-grassy-websites%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2009%2F11%2F29%2F25-examples-of-green-and-grassy-websites%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>Those of you who may have read my <a href="http://blog.echoenduring.com/2009/10/13/25-dark-website-designs/">25 Dark Websites</a> and <a href="http://blog.echoenduring.com/2009/11/10/25-creative-website-footers/">25 Creative Footers</a> posts may be noticing a pattern developing here. I&#8217;ve decided to do my best to stick with the whole 25 theme for these roundup articles. It&#8217;s just a nice, round manageable number, but still enough to prove valuable. I have a wide range of different ideas for these roundups, too, so be on the look out for more coming your way.</p><p>I&#8217;ve also been doing some thinking about roundups in general. I&#8217;ve seen several different posts just this past week that are complaining about how the authors&#8217; RSS readers are getting crammed with all kinds of roundup posts &#8211; so much so that it&#8217;s getting difficult to find other, valuable content. </p><p>I guess I hadn&#8217;t really thought of that before. Most of the stuff in my reader is actually tutorial and/or freebie oriented. I see most of the roundups I visit via Twitter. Still, I certainly don&#8217;t want to be viewed as clutter, so I&#8217;m going to do my best to add extra value to these roundups with a bit of extra editorializing!</p><p>Anyhow, today I want to look at a trend that I&#8217;ve been noticing in my frequent visits to various CSS galleries. It seems that on almost every page of these galleries I see sites that are designed around green and grassy imagery. Obviously, such sites don&#8217;t actually appear on <i>every</i> page, but there certainly are a lot of them! They tend fall into one of two categories. Either they use a ground level view of grass as a sort of horizontal divider or feature lush rolling hills &#8211; usually vectorized and cartoony. </p><p>Here are 25 different examples of this trend.</p><div id="attachment_1704" class="wp-caption aligncenter" style="width: 510px"><a href="http://anna-pawelczyk.net/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/anna-pawelczyk-500x255.jpg" alt="Anna Pawelczyk" title="Anna Pawelczyk" width="500" height="255" class="size-large wp-image-1704" /></a><p class="wp-caption-text">Anna Pawelczyk</p></div><p><span id="more-1700"></span></p><div id="attachment_1706" class="wp-caption aligncenter" style="width: 510px"><a href="http://blogsville.us/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/blogsville-2009-500x255.jpg" alt="Blogsville 2009" title="Blogsville 2009" width="500" height="255" class="size-large wp-image-1706" /></a><p class="wp-caption-text">Blogsville 2009</p></div><div id="attachment_1707" class="wp-caption aligncenter" style="width: 510px"><a href="http://ripie6.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/ripie-500x255.jpg" alt="RIPIE" title="RIPIE" width="500" height="255" class="size-large wp-image-1707" /></a><p class="wp-caption-text">RIPIE</p></div><div id="attachment_1708" class="wp-caption aligncenter" style="width: 510px"><a href="http://twittground.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/twitt-ground-500x255.jpg" alt="TwittGround" title="TwittGround" width="500" height="255" class="size-large wp-image-1708" /></a><p class="wp-caption-text">TwittGround</p></div><div id="attachment_1710" class="wp-caption aligncenter" style="width: 510px"><a href="http://warwickpumpkins.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/new-house-farm-500x255.jpg" alt="New House Farm" title="New House Farm" width="500" height="255" class="size-large wp-image-1710" /></a><p class="wp-caption-text">New House Farm</p></div><div id="attachment_1711" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.1024media.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/10-24-media-500x255.jpg" alt="Ten24Media" title="Ten24Media" width="500" height="255" class="size-large wp-image-1711" /></a><p class="wp-caption-text">Ten24Media</p></div><div id="attachment_1714" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.acroex.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/acroex-500x255.jpg" alt="Acroex" title="Acroex" width="500" height="255" class="size-large wp-image-1714" /></a><p class="wp-caption-text">Acroex</p></div><div id="attachment_1715" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.bimbisicuramente.it/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/bimbisicuramente-500x255.jpg" alt="BimbiSicuramente" title="BimbiSicuramente" width="500" height="255" class="size-large wp-image-1715" /></a><p class="wp-caption-text">BimbiSicuramente</p></div><div id="attachment_1719" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.blossomsvillage.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/blossoms-village-resort-500x255.jpg" alt="Blossom Village Resort" title="Blossom Village Resort" width="500" height="255" class="size-large wp-image-1719" /></a><p class="wp-caption-text">Blossom Village Resort</p></div><div id="attachment_1720" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.campusvida.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/campamento-universitario-500x255.jpg" alt="CampamentoUniversiatrio" title="CampamentoUniversiatrio" width="500" height="255" class="size-large wp-image-1720" /></a><p class="wp-caption-text">CampamentoUniversiatrio</p></div><div id="attachment_1721" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.clark-studios.co.uk/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/clark-studios-500x255.jpg" alt="Clark Studios" title="Clark Studios" width="500" height="255" class="size-large wp-image-1721" /></a><p class="wp-caption-text">Clark Studios</p></div><div id="attachment_1724" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.deanoakley.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/deanoakley-500x255.jpg" alt="Dean Oakley" title="Dean Oakley" width="500" height="255" class="size-large wp-image-1724" /></a><p class="wp-caption-text">Dean Oakley</p></div><div id="attachment_1725" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.footsteps.nl/nieuws" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/foot-steps-500x255.jpg" alt="Foot Steps" title="Foot Steps" width="500" height="255" class="size-large wp-image-1725" /></a><p class="wp-caption-text">Foot Steps</p></div><div id="attachment_1727" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.geovisionsae.com.br/br/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/geo-vision-500x255.jpg" alt="GeoVision" title="GeoVision" width="500" height="255" class="size-large wp-image-1727" /></a><p class="wp-caption-text">GeoVision</p></div><div id="attachment_1729" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.gugafit.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/guga-500x255.jpg" alt="Guga" title="Guga" width="500" height="255" class="size-large wp-image-1729" /></a><p class="wp-caption-text">Guga</p></div><div id="attachment_1732" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.hearthcore.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/hearth-core-500x255.jpg" alt="HearthCore" title="HearthCore" width="500" height="255" class="size-large wp-image-1732" /></a><p class="wp-caption-text">HearthCore</p></div><div id="attachment_1733" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.jaidermorais.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/jaider-morais-500x255.jpg" alt="Jaider Morais" title="Jaider Morais" width="500" height="255" class="size-large wp-image-1733" /></a><p class="wp-caption-text">Jaider Morais</p></div><div id="attachment_1734" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.juandiegovelasco.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/juan-diego-velasco-500x255.jpg" alt="Juan Diego Velasco" title="Juan Diego Velasco" width="500" height="255" class="size-large wp-image-1734" /></a><p class="wp-caption-text">Juan Diego Velasco</p></div><div id="attachment_1735" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.kiddikicks.co.uk/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/kiddikicks-500x255.jpg" alt="KiddiKicks" title="KiddiKicks" width="500" height="255" class="size-large wp-image-1735" /></a><p class="wp-caption-text">KiddiKicks</p></div><div id="attachment_1737" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.mint.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/mint-500x255.jpg" alt="Mint" title="Mint" width="500" height="255" class="size-large wp-image-1737" /></a><p class="wp-caption-text">Mint</p></div><div id="attachment_1741" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.parcheggio.it/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/parcheggio-500x255.jpg" alt="Parcheggio" title="Parcheggio" width="500" height="255" class="size-large wp-image-1741" /></a><p class="wp-caption-text">Parcheggio</p></div><div id="attachment_1742" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.riegosariel.com.ar" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/riegos-ariel-500x255.jpg" alt="Riegos Ariel" title="Riegos Ariel" width="500" height="255" class="size-large wp-image-1742" /></a><p class="wp-caption-text">Riegos Ariel</p></div><div id="attachment_1743" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.slimkiwi.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/slim-kiwi-500x255.jpg" alt="Slim Kiwi" title="Slim Kiwi" width="500" height="255" class="size-large wp-image-1743" /></a><p class="wp-caption-text">Slim Kiwi</p></div><div id="attachment_1744" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.spafu.nl/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/spafu-500x255.jpg" alt="SPAFU Online Marketing" title="SPAFU Online Marketing" width="500" height="255" class="size-large wp-image-1744" /></a><p class="wp-caption-text">SPAFU Online Marketing</p></div><div id="attachment_1745" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.yodaa.com/" target="_blank"><img src="http://blog.echoenduring.com/wp-content/uploads/2009/11/yodaa-500x255.jpg" alt="Yodaa" title="Yodaa" width="500" height="255" class="size-large wp-image-1745" /></a><p class="wp-caption-text">Yodaa</p></div><p>These sites come in varying degrees of effectiveness, and I am in no way trying to suggest that these are great or sensational designs (though I did weed out some of the weaker designs &#8211; pun intended). I am also not saying that they any of them are poor. This is simply a showcase. However, this collection certainly demonstrates that there is a very strong trend towards using these this kind of imagery in web design. And there are many different types of sites represented, suggesting that it is not just one particular group or industry that&#8217;s latching on to this trend. </p><p>You make also notice that these elements all tend to work pretty much the same way. The grass stretches horizontally across the screen, creating a clear and logical divider. Most of the sites listed here actually take advantage of this, using the natural break as a means of organizing their content in some form or other. It&#8217;s an interesting technique that many of these sites actually implement quite well.</p><p>Now, before you get too inspired and run off to throw a grassy divider into your next website design, let&#8217;s take a moment to think about some of the advantages and disadvantages of using this kind of imagery.</p><h3>Advantages</h3><ul><li><strong>Position yourself as Green</strong> &#8211; The entire concept of the environment and climate change is a huge deal these days. Many people are thinking and talking about it, and this use of nice, green grass very naturally posits your site as being &#8220;green&#8221;.</><li><strong>Natural Divider</strong> &#8211; We&#8217;ve already touched on the fact that that this design technique provides you with a very obvious horizontal break, which you can use to organize your content</li><li><strong>Open and Friendly</strong> &#8211; Grass can suggest friendliness and openness &#8211; a sort of neighborly camaraderie &#8211; and could be a useful visual element if this is the kind of image you want associated with your site or brand.</li></ul><h3>Disadvantages</h3><ul><li><strong>Position yourself as Green</strong> &#8211; Wait, didn&#8217;t we just mention this as an advantage? We did indeed, and while it can be beneficial, it can also work against you. Many environmentally conscious people are also very aware of what companies are doing, or not doing, and can have very strong backlash against those who try to make themselves look &#8220;green&#8221; without taking any actual steps or initiatives to helping the environment or slowing climate change. Beware of the backlash that can come from this kind of &#8220;greenwashing&#8221;, even if it&#8217;s unintentional.</li><li><strong>A Tired Concept?</strong> &#8211; This post alone collects 25 grassy sites, and I had several most listed when I was doing my research. I&#8217;m sure there are more than that, too. So, I think it&#8217;s pretty safe to say that this kind of imagery is pretty common out there on the web these days. As such, unless it is a perfect fit for your site, you may want to think twice about following this particular trend.</li><li><strong>Wrong Visual Cue?</strong> &#8211; Another possible disadvantage with this trend could be the strong associations that grass can convey. Will visitors immediately assume that the site has something to do with grass itself &#8211; perhaps a seed or fertilizer company? As designers, we always (or at least almost always) want viewers to look at something and get it right away, not have to puzzle it out on their own. If using grass (or any other design element) will obscure meaning rather than reveal it, then it&#8217;s probably not the right choice</li></ul><p>Obviously, this is just a really cursory look at the trend of using green and grassy designs on the web, but I hope that it has been at least somewhat insightful and/or inspiring for you. </p><p><strong>I&#8217;d love to hear you opinions! Have you ever used grass as a design element? Are there any other sites that you would like to add to this list? Are there any other advantages or disadvantages that strike you? We&#8217;d love to hear them, so feel free to drop a comment!</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
		<wfw:commentRss>http://blog.echoenduring.com/2009/11/29/25-examples-of-green-and-grassy-websites/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	</item>
	<item>
		<title>25 Dark Website Designs</title>
		<link>http://blog.echoenduring.com/2009/10/13/25-dark-website-designs/</link>
		<comments>http://blog.echoenduring.com/2009/10/13/25-dark-website-designs/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 00:46:22 +0000</pubDate>
		<dc:creator>Matt Ward</dc:creator>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[dark]]></category>
		<category><![CDATA[Websites]]></category>
		<guid isPermaLink="false">http://blog.echoenduring.com/?p=1098</guid>
		<description><![CDATA[I really love dark website designs. In this post, I have collected 25 prime examples of this kind of design from around the internet, to help inspire your creativity. I hope you enjoy these!<p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></description>
		<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.echoenduring.com%2F2009%2F10%2F13%2F25-dark-website-designs%2F"><br /><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.echoenduring.com%2F2009%2F10%2F13%2F25-dark-website-designs%2F&amp;source=echoenduring&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br /></a></div><p>As you can probably tell from this website (at least in it&#8217;s current state), I am a big fan of websites with a dark colour palette. That&#8217;s what this post is all about (if you thought it was about dark as in evil, sorry about that). Working through some of my favorite CSS and Website galleries, I have compiled this collection of 25 awesome website designs, which all incorporate darker colours to some degree.</p><p>Of course, all of the sites are very different from each other, but there are a few elements that you will find repeated in many of them. First, many of the sites incorporate interesting and unique lighting effects, in a wide variety of colours. These range from evanescent swirls, to broad glows, to actual lamps shinning beams of light. I think that the darker background of these sites really lend themselves to these kinds of lighting effects, which would be either lost or much less effective on lighter backdrops.</p><p>You may also notice that many of these sites make use of texture, and in many cases, grungy texture. Again, this is probably due to the dark colours, which really lend themselves well to being textured. It adds a lot of visual interest to the design. In some cases you will also see texture combined with light, to great effect!</p><p>Anyhow, I really hope you enjoy these, and that they get your creative juices flowing!</p><div id="attachment_1099" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.cleoannexsalon.com/" target="_blank"><img class="size-large wp-image-1099" title="Cleo Annex Salon" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/cleo-annex-salon-500x255.jpg" alt="Cleo Annex Salon" width="500" height="255" /></a><p class="wp-caption-text">Cleo Annex Salon</p></div><p><span id="more-1098"></span></p><div id="attachment_1100" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.xpcodecpack.com/" target="_blank"><img class="size-large wp-image-1100" title="XP Codec Pack" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/xp-codecpack-500x255.jpg" alt="XP Codec Pack" width="500" height="255" /></a><p class="wp-caption-text">XP Codec Pack</p></div><div id="attachment_1102" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.subassemblyservices.co.uk/" target="_blank"><img class="size-large wp-image-1102" title="Sub Assembly Services" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/sub-assembly-services-500x255.jpg" alt="Sub Assembly Services" width="500" height="255" /></a><p class="wp-caption-text">Sub Assembly Services</p></div><div id="attachment_1103" class="wp-caption aligncenter" style="width: 510px"><a href="http://arunpattnaik.com/" target="_blank"><img class="size-large wp-image-1103" title="Arun Pattnaik Portfolio &amp; Blog" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/arun-pattnaik-500x255.jpg" alt="Arun Pattnaik Portfolio &amp; Blog" width="500" height="255" /></a><p class="wp-caption-text">Arun Pattnaik Portfolio &amp; Blog</p></div><div id="attachment_1104" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.miloszekovic.com/" target="_blank"><img class="size-large wp-image-1104" title="Miloš Zeković" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/milos-zekovic-500x255.jpg" alt="Miloš Zeković" width="500" height="255" /></a><p class="wp-caption-text">Miloš Zeković</p></div><div id="attachment_1105" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.robinjamesyu.com/" target="_blank"><img class="size-large wp-image-1105" title="Robin James Yu" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/robin-james-yu-500x255.jpg" alt="Robin James Yu" width="500" height="255" /></a><p class="wp-caption-text">Robin James Yu</p></div><div id="attachment_1106" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.kaiserinteractive.com/main_eng.htm" target="_blank"><img class="size-large wp-image-1106" title="Kaiser Interactive Creative Studio" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/kaiser-interactive-studio-500x255.jpg" alt="Kaiser Interactive Creative Studio" width="500" height="255" /></a><p class="wp-caption-text">Kaiser Interactive Creative Studio</p></div><div id="attachment_1107" class="wp-caption aligncenter" style="width: 510px"><a href="http://two24studios.com/" target="_blank"><img class="size-large wp-image-1107" title="Two 24 Studios" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/two24studios-500x255.jpg" alt="Two 24 Studios" width="500" height="255" /></a><p class="wp-caption-text">Two 24 Studios</p></div><div id="attachment_1109" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.jwdesigns.co.uk/" target="_blank"><img class="size-large wp-image-1109" title="JWD Designs" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/jwd-designs-500x255.jpg" alt="JWD Designs" width="500" height="255" /></a><p class="wp-caption-text">JWD Designs</p></div><div id="attachment_1110" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.duplostudio.com/web/" target="_blank"><img class="size-large wp-image-1110" title="Duplo Motion Graphics" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/duplo-motion-graphics-500x255.jpg" alt="Duplo Motion Graphics" width="500" height="255" /></a><p class="wp-caption-text">Duplo Motion Graphics</p></div><div id="attachment_1111" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.spicedjack94.com/no94.php" target="_blank"><img class="size-large wp-image-1111" title="Spiced Jack No 94" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/spiced-jack-500x255.jpg" alt="Spiced Jack No 94" width="500" height="255" /></a><p class="wp-caption-text">Spiced Jack No 94</p></div><div id="attachment_1112" class="wp-caption aligncenter" style="width: 510px"><a href="http://mattbrett.com/" target="_blank"><img class="size-large wp-image-1112" title="Matt Brett" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/matt-brett-500x255.jpg" alt="Matt Brett" width="500" height="255" /></a><p class="wp-caption-text">Matt Brett</p></div><div id="attachment_1115" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.twenty3design.co.uk/" target="_blank"><img class="size-large wp-image-1115" title="Twenty3Design" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/twenty3design-500x255.jpg" alt="Twenty3Design" width="500" height="255" /></a><p class="wp-caption-text">Twenty3Design</p></div><div id="attachment_1119" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.okb.es/" target="_blank"><img class="size-large wp-image-1119" title="OKB Estudio Interactivo" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/okb-estudio-interactivo-500x255.jpg" alt="OKB Estudio Interactivo" width="500" height="255" /></a><p class="wp-caption-text">OKB Estudio Interactivo</p></div><div id="attachment_1120" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.sugarrhyme.com/" target="_blank"><img class="size-large wp-image-1120" title="Sugar Rhyme" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/sugar-rhyme-500x255.jpg" alt="Sugar Rhyme" width="500" height="255" /></a><p class="wp-caption-text">Sugar Rhyme</p></div><div id="attachment_1121" class="wp-caption aligncenter" style="width: 510px"><a href="http://design-newz.com/" target="_blank"><img class="size-large wp-image-1121" title="Design Newz" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/design-newz-500x255.jpg" alt="Design Newz" width="500" height="255" /></a><p class="wp-caption-text">Design Newz</p></div><div id="attachment_1124" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.greenliteweb.com/" target="_blank"><img class="size-large wp-image-1124" title="GreenLite" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/green-lite-500x255.jpg" alt="GreenLite" width="500" height="255" /></a><p class="wp-caption-text">GreenLite</p></div><div id="attachment_1125" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.dsignzmedia.com/" target="_blank"><img class="size-large wp-image-1125" title="Dsignz Media" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/dsignz-media-500x255.jpg" alt="Dsignz Media" width="500" height="255" /></a><p class="wp-caption-text">Dsignz Media</p></div><div id="attachment_1126" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.jefffinley.org/" target="_blank"><img class="size-large wp-image-1126" title="Artist &amp; Designer Jeff Finley" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/jeff-finley-500x255.jpg" alt="Artist &amp; Designer Jeff Finley" width="500" height="255" /></a><p class="wp-caption-text">Artist &amp; Designer Jeff Finley</p></div><div id="attachment_1127" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.gomedia.us/" target="_blank"><img class="size-large wp-image-1127" title="GoMedia" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/go-media-500x255.jpg" alt="GoMedia" width="500" height="255" /></a><p class="wp-caption-text">GoMedia</p></div><div id="attachment_1128" class="wp-caption aligncenter" style="width: 510px"><a href="http://visual-carnival.co.uk/" target="_blank"><img class="size-large wp-image-1128" title="Visual Carnival" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/visual-carnival-500x255.jpg" alt="Visual Carnival" width="500" height="255" /></a><p class="wp-caption-text">Visual Carnival</p></div><div id="attachment_1129" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.mikeprecious.com/" target="_blank"><img class="size-large wp-image-1129" title="Mike Precious" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/mike-precious-500x255.jpg" alt="Mike Precious" width="500" height="255" /></a><p class="wp-caption-text">Mike Precious</p></div><div id="attachment_1131" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.nue-media.com/" target="_blank"><img class="size-large wp-image-1131" title="new(me)dia" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/neu-me-dia-500x255.jpg" alt="new(me)dia" width="500" height="255" /></a><p class="wp-caption-text">new(me)dia</p></div><div id="attachment_1132" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.ignitenewmedia.net/" target="_blank"><img class="size-large wp-image-1132" title="Ignite New Media" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/ignite-new-media-500x255.jpg" alt="Ignite New Media" width="500" height="255" /></a><p class="wp-caption-text">Ignite New Media</p></div><div id="attachment_1133" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.61pixels.com/" target="_blank"><img class="size-large wp-image-1133" title="61 Pixels - Online Porfolio of Todd Adams" src="http://blog.echoenduring.com/wp-content/uploads/2009/10/todd-adams-500x255.jpg" alt="61 Pixels - Online Porfolio of Todd Adams" width="500" height="255" /></a><p class="wp-caption-text">61 Pixels - Online Porfolio of Todd Adams</p></div><p>So there you have them &#8211; all 25 designs. You&#8217;ll notice that I refrained from adding my own site to this list, even though it&#8217;s dark and uses a similar lighting effect to some of these sites. I figure you&#8217;re already here right? Also, many of these sites belong to creative agencies and freelancers, which means that some of them could change at any moment (since many designers love to mix it up). All these these designs are current as of the date of posting, though!</p><p><strong>Anyhow, I hope you enjoyed these! Which are your favorites? Are you as drawn to dark designs as I am? If so, what do you think the allure is? I&#8217;d love to hear your thoughts on this!</strong></p><p><h3>Exclusive Content</h3><p>To thank you for subscribing to my feed, I am including exclusive, feed-only content for you at the bottom of each post!</p><p><strong>Current Freebie Code</strong> - 7ev165dd</p></p>]]></content:encoded>
		<wfw:commentRss>http://blog.echoenduring.com/2009/10/13/25-dark-website-designs/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	</item>
</channel>
</rss>
