<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>1stwebdesigner - Graphic and Web Design Blog</title>
	
	<link>http://www.1stwebdesigner.com</link>
	<description>1stwebdesigner is a design blog dedicated to bloggers, freelancers, web-developers and designers. Topics focus on web design and inspirational articles.</description>
	<lastBuildDate>Thu, 02 Sep 2010 21:00:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/1stwebdesigner" /><feedburner:info uri="1stwebdesigner" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>1stwebdesigner</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>20 Snippets You should be using from Html5 Boilerplate</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/v27b8lDzrAk/</link>
		<comments>http://www.1stwebdesigner.com/development/snippets-html5-boilerplate/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 21:00:08 +0000</pubDate>
		<dc:creator>Matthew Corner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[boilerplate]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23776</guid>
		<description><![CDATA[I recently, as many web designers and developers will have, became aware of a fantastic resource put together by web developer, Paul Irish, and Divya Manian. Html5 Boilerplate, as they have named it, is a powerful starting off point for any website or web application. As Paul Irish describes it; &#8220;It&#8217;s essentially a good starting [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.1stwebdesigner.com/development/snippets-html5-boilerplate/"><img class="size-full wp-image-23869 alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/thumb12.jpg" alt="" width="150" height="150" /></a>I recently, as many web designers and developers will have, became aware of a fantastic resource put together by web developer, Paul Irish, and Divya Manian. <a href="http://html5boilerplate.com/" target="_blank">Html5</a><a target="_blank" href="http://html5boilerplate.com/" target="_blank"> Boilerplate</a>, as they have named it, is a powerful starting off point for any website or web application. As Paul Irish describes it; &#8220;It&#8217;s essentially a good starting template of html and css and a folder structure that works., but baked into it is years of best practices from front-end development professionals.&#8221;</p>
<p>It is absolutely packed full of fantastic snippets of code that are still very much worth using even if you don&#8217;t want to start using html5 boilerplate as your base template.</p>
<h2>Html</h2>
<p>We will start off by checking out some of the html snippets used in the resource. All of these are snippets of code that may not necessarily be only html, but will definitely be placed in your html files if used.</p>
<p><strong>Favicon and Apple icons</strong></p>
<p>The favicon is pretty much normality these day. the interesting bit here is the apple-touch-icon which is used if you save a bookmark to your home screen on an apple touch device such as an iPad or iPhone. Interestingly enough, android also supports its usage. As far as I can tell, the apple-touch-icon size is 60px by 60px. As the comment says, if your icons are in the root of your domain, these links aren&#8217;t required.</p>
<pre class="brush: xml;">
&lt;!-- Place &lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;favicon&lt;/span&gt;.&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;ico&lt;/span&gt; and apple-touch-icon.png in the root of your domain and delete these references --&gt;
&lt;link rel=&quot;shortcut icon&quot; href=&quot;/favicon.ico&quot;&gt;
&lt;link rel=&quot;apple-touch-icon&quot; href=&quot;/apple-touch-icon.png&quot;&gt;
</pre>
<p><strong> </strong></p>
<p><strong>Faster page load hack</strong></p>
<p>This empty conditional comment hack is used to basically increase performance of your site. When conditional comments are used on your site, for example, for an ie6 conditional stylesheet, it will block further downloads until the css files are fully downloaded, hence increasing load time. To solve this issue, an empty conditional comment, like below, is used before any css is loaded in the document, and the problem will be solved! <a target="_blank" href="http://www.phpied.com/conditional-comments-block-downloads/" target="_blank">For further reading, check out this article. </a></p>
<pre class="brush: xml;">
&lt;!--[if IE]&gt;&lt;![&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;endif&lt;/span&gt;]--&gt;
</pre>
<p><strong>X-UA-Compatible</strong></p>
<p>Internet Explorer has many rendering engines ready for use. What this line of code basically does is force IE to use the most up to date rendering engine that it has available, so that your pages will render as well as possible. It then goes on to talk about Chrome Frame. Chrome Frame is a plugin for IE6, 7, and 8 which brings all the rendering, and js power of Google Chrome to IE. If the user has it installed, we render our site using it. For more information on Chrome Frame, and how you can even prompt users without it to install it, <a target="_blank" href="http://www.chromium.org/developers/how-tos/chrome-frame-getting-started" target="_blank">check here.</a></p>
<pre class="brush: xml;">
&lt;!-- Always force latest IE rendering engine (even in intranet) &amp; Chrome Frame --&gt;
&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot;&gt;
</pre>
<p><strong>Conditional body tag</strong></p>
<p>This snippet is a Paul Irish original, and allows you to target IE browsers specifically without having to add in an extra http request with another separate stylesheet. Basically, depending on the IE browser that the user is using, a class is added to the body tag. If the user is not using IE, then a classless body tag is used. This allows you to target specific browsers in your css without having to use css hacks, or further stylesheets. <a target="_blank" href="http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/" target="_blank">For further reading, check out the original article on this.</a></p>
<pre class="brush: xml;">
&lt;!--[if lt IE 7 ]&gt; &lt;body class=&quot;&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;ie6&lt;/span&gt;&quot;&gt; &lt;![&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;endif&lt;/span&gt;]--&gt;
&lt;!--[if IE 7 ]&gt;    &lt;body class=&quot;&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;ie7&lt;/span&gt;&quot;&gt; &lt;![&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;endif&lt;/span&gt;]--&gt;
&lt;!--[if IE 8 ]&gt;    &lt;body class=&quot;ie8&quot;&gt; &lt;![&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;endif&lt;/span&gt;]--&gt;
&lt;!--[if IE 9 ]&gt;    &lt;body class=&quot;ie9&quot;&gt; &lt;![&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;endif&lt;/span&gt;]--&gt;
&lt;!--[if (gt IE 9)|!(IE)]&gt;&lt;!--&gt;  &lt;!--&lt;![&lt;span class=&quot;hiddenSpellError&quot; pre=&quot;&quot;&gt;endif&lt;/span&gt;]--&gt;
</pre>
<p><strong>jQuery loading fallback</strong></p>
<p>A vast majority of sites these days make use of the jQuery JavaScript library. A vast majority also make use of Google&#8217;s hosted version of the library for faster loading speed&#8217;s, and better cross site caching. However, what if there is ever a problem and jQuery is not loaded from Google? Well here is your backup. What it basically does is check if jQuery is loaded from Google. If not, then we load it locally from our own version of jQuery.</p>
<pre class="brush: xml;">
&lt;!-- Grab Google CDN's jQuery. fall back to local if necessary --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--mce:0--&gt;&lt;/script&gt;
&lt;script&gt;!window.jQuery &amp;&amp; document.write('&lt;script src=&quot;js/jquery-1.4.2.min.js&quot;&gt;&lt;\/script&gt;')&lt;/script&gt;
</pre>
<p><strong>Optimised Google Analytics</strong></p>
<p>Google Analytics is a very popular tool for tracking your website&#8217;s user behaviour, and visits. This is simply an optimised version of Google&#8217;s asynchronous tracking snippet. To learn what has been optimised, and why it is faster than Google&#8217;s own version, <a target="_blank" href="http://mathiasbynens.be/notes/async-analytics-snippet" target="_blank">read the article here.</a></p>
<pre class="brush: xml;">
&lt;!-- asynchronous google analytics
change the UA-XXXXX-X to be your site's ID --&gt;
&lt;script&gt;
 var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
 (function(d, t) {
  var g = d.createElement(t),
      s = d.getElementsByTagName(t)[0];
  g.async = true;
  g.src = '//www.google-analytics.com/ga.js';
  s.parentNode.insertBefore(g, s);
 })(document, 'script');
&lt;/script&gt;
</pre>
<h2>Css</h2>
<p>Moving on into Css, this is where the vast majority of awesome snippets care to be found. Don&#8217;t be put off by some of the one-liners; they are just as useful and awesome as some of the larger snippets to be found.</p>
<p><strong>Html5 ready reset</strong></p>
<p>Plenty of you will have used Eric Meyer&#8217;s css reset before now. It is included in many frameworks and so on, like 960.gs. This is a revamped version of that reset, that brings it into the present with full support for html5. It sets all the new structural tags as block level, and resets all their default styling as expected.</p>
<p><strong> </strong></p>
<pre class="brush: css;">
/*   html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)  v1.4 2009-07-27 | Authors: Eric Meyer &amp; Richard Clark  html5doctor.com/html-5-reset-stylesheet/*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section, menu,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}

article, aside, figure, footer, header,
hgroup, nav, section { display:block; }

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help; }

/* tables still need cellspacing=&quot;0&quot; in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */
</pre>
<p><strong>Font normalisation</strong></p>
<p>To get rid of rendering inconsistencies that can occur between browsers and OS&#8217;s when rendering fonts in pixels, this snippet allows you to size your fonts in such a way that the size and line-height will remain consistent across these platforms for your website. You will basically be setting your font sizes via percentages that <a target="_blank" href="http://developer.yahoo.com/yui/fonts/" target="_blank">can be found here.</a></p>
<p><strong> </strong></p>
<pre class="brush: css;">
/*
fonts.css from the YUI Library: developer.yahoo.com/yui/
Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22; }
table { font-size:inherit; font:100%; }
select, input, textarea { font:99% sans-serif; }
</pre>
<p><strong>Webkit font smoothing</strong></p>
<p>This is anti-aliasing for webkit browsers, sadly only in Mac OSX. It basically makes your text render better, and make it more readable, without all the text thinning hacks that we have seen in the past. For further reading <a target="_blank" href="http://maxvoltar.com/archive/-webkit-font-smoothing" target="_blank">check out Tim Van Damme&#8217;s article on this.</a></p>
<pre class="brush: css;">
/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing: antialiased; }
</pre>
<p><strong>Force scrollbar</strong></p>
<p>Sometimes, pages can be shorter than the browser view-port, and when you load a page on the same site that has longer content and uses a scrollbar, content can jump side to side. By forcing a scrollbar no matter the height of our content, we stop this small, but annoying issue.</p>
<pre class="brush: css;">
html { overflow-y: scroll; }
</pre>
<p><strong>Formatting quoted code</strong></p>
<p>This snippet simply makes the text wrap when it reaches the walls of its container, in this case, the pre tag, whilst still preserving line breaks and white space cross browser. To read up on this, <a target="_blank" href="www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/" target="_blank">have a look at this article. </a></p>
<pre class="brush: css;">
pre {
padding: 15px;
white-space: pre; /* CSS2 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
}
</pre>
<p><strong>Aligning Labels</strong></p>
<p>Alignment of labels with their relevant inputs can be a horrible task to achieve in older browsers. This snippets solves that for us by making it consistent across browsers!</p>
<pre class="brush: css;">
/* align checkboxes, radios, text inputs with their label */
input[type=&quot;radio&quot;] { vertical-align: text-bottom; }
input[type=&quot;checkbox&quot;] { vertical-align: bottom; *vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }
</pre>
<p><strong>Clickable inputs</strong></p>
<p>For some reason, most browsers don&#8217;t apply a pointer cursor to some clickable input&#8217;s by default to let the user now that this item is clickable, so we solve this by doing it ourselves.</p>
<pre class="brush: css;">
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
</pre>
<p><strong>Screenreader access</strong></p>
<p>This snippet basically gives us the best of both worlds, allowing the best usability when it comes to link outlines for both screenreaders tabbing through links, and mouse users. <a target="_blank" href="http://people.opera.com/patrickl/experiments/keyboard/test" target="_blank">To learn more, read this article. </a></p>
<pre class="brush: css;">
a:hover, a:active { outline: none; }

a, a:active, a:visited { color:#607890; }
a:hover { color:#036; }
</pre>
<p><strong>IE7 image resizing</strong></p>
<p>Ie7 by default uses an image resizing algorithm that means that scaled down images can look far from awesome. To solve this, we simply enable a much better resizing algorithm that is available in Ie7 that produces results similar to what you&#8217;d expect from most image editing software. To read more about this, and similar solutions for Ie6, <a target="_blank" href="http://code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/" target="_blank">read this insightful article by the Flickr developers. </a></p>
<pre class="brush: css;">
/* bicubic resizing for non-native sized IMG:
code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }
</pre>
<p><strong>Print styles</strong></p>
<p>Any decent site should be print ready, as even though we live in a technology driven time, people still like to have  a hard copy of some information. This snippet firstly uses a css media declaration, allowing you to include this in your main stylesheet, and not having to place another link in the head of your document. This benefits load time, as even when the page inst being printed, a browser will always download that extra css file, generating an extra http request. The snippet then goes on to include some useful print styles such as printing our link urls, and so on.</p>
<p><strong> </strong></p>
<pre class="brush: css;">
/*
* print styles
* inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/
*/
@media print {
* { background: transparent !important; color: #444 !important; text-shadow: none; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: &quot; (&quot; attr(href) &quot;)&quot;; }
  abbr:after { content: &quot; (&quot; attr(title) &quot;)&quot;; }    .ir a:after { content: &quot;&quot;; }  /* Don't show links for images */    pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }    img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}
</pre>
<p><strong>Device orientation</strong></p>
<p>These are just two css media queries you may want to use for your website development. With lots of smart-phones, and tablets being able to orientate their screens from landscape to portrait, you may want to include different styles for each. This is how you would go about achieving this.</p>
<pre class="brush: css;">
@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
}

@media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
}
</pre>
<h2>.htaccess</h2>
<p>One thing that html5 boilerplate does come with that other starting point templates generally don&#8217;t is server sided files. Check out these awesome .htaccess snippets that can easily improve your site.</p>
<p><strong>X-UA-Compatible Server sided</strong></p>
<p>This is the same as the html version mentioned above, forcing the latest rendering engine in IE, and Chrome Frame if it exists. The benefit of including this in your .htaccess file is that it saves you having to declare this in the head of each and every html document you produce.</p>
<p><strong> </strong></p>
<pre class="brush: xml;">
  &lt;IfModule mod_headers.c&gt;
    BrowserMatch MSIE ie
    Header set X-UA-Compatible &quot;IE=Edge,chrome=1&quot; env=ie
  IfModule&gt;
IfModule&gt;
</pre>
<p><strong>Gzip compression</strong></p>
<p>Gzip compression allows us to drastically reduce out file sizes. This .htaccess snippet does the gzipping for us.</p>
<pre class="brush: xml;">
# gzip compression.
&lt;IfModule mod_deflate.c&gt;
  # html, xml, css, and js:
  AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x-javascript text/javascript application/javascript application/json
  # webfonts and svg:
  &lt;FilesMatch &quot;\.(ttf|otf|eot|svg)$&quot; &gt;
    SetOutputFilter DEFLATE
  &lt;/FilesMatch&gt;
&lt;/IfModule&gt;
</pre>
<p><strong>Expiry date for cache filetypes</strong></p>
<p>When we cache our files on the user&#8217;s machine, we may want to specify how long they remain there, depending on how often we change them ourselves. This snippet provides basic times for common file types, some of which you may wish to change for your own site.</p>
<pre class="brush: xml;">
# these are pretty far-future expires headers
# they assume you control versioning with cachebusting query params like
#   &lt;script src=&quot;application.js?20100608&quot;&gt;
# additionally, consider that outdated proxies may miscache
#   www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
# if you don't use filenames to version, lower the css and js to something like
#   &quot;access plus 1 week&quot; or so
&lt;IfModule mod_expires.c&gt;
  Header set cache-control: public
  ExpiresActive on

  # Perhaps better to whitelist expires rules? Perhaps.
  ExpiresDefault                          &quot;access plus 1 month&quot;
  # cache.manifest needs re-reqeusts in FF 3.6 (thx Remy ~Introducing HTML5)
  ExpiresByType text/cache-manifest       &quot;access plus 0 seconds&quot;
  # your document html
  ExpiresByType text/html                  &quot;access&quot;
  # rss feed
  ExpiresByType application/rss+xml       &quot;access plus 1 hour&quot;
  # favicon (cannot be renamed)
  ExpiresByType image/vnd.microsoft.icon  &quot;access plus 1 week&quot;
  # media: images, video, audio
  ExpiresByType image/png                 &quot;access plus 1 month&quot;
  ExpiresByType image/jpg                 &quot;access plus 1 month&quot;
  ExpiresByType image/jpeg                &quot;access plus 1 month&quot;
  ExpiresByType video/ogg                 &quot;access plus 1 month&quot;
  ExpiresByType audio/ogg                 &quot;access plus 1 month&quot;
  ExpiresByType video/mp4                 &quot;access plus 1 month&quot;
  # webfonts
  ExpiresByType font/ttf                  &quot;access plus 1 month&quot;
  ExpiresByType font/woff                 &quot;access plus 1 month&quot;
  ExpiresByType image/svg+xml             &quot;access plus 1 month&quot;
  # css and javascript
  ExpiresByType text/css                  &quot;access plus 1 month&quot;
  ExpiresByType application/javascript    &quot;access plus 1 month&quot;
  ExpiresByType text/javascript           &quot;access plus 1 month&quot;
&lt;/IfModule&gt;

# Since we're sending far-future expires, we don't need ETags for
# static content.
#   developer.yahoo.com/performance/rules.html
#etags
FileETag None
</pre>
<h2>Further thoughts</h2>
<p>I strongly suggest you go check out <a target="_blank" href="http://html5boilerplate.com/" target="_blank">Html5 Boilerplate</a>. It is a fantastic resource that houses all of these snippets and more, that I am sure you will find useful.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=v27b8lDzrAk:xuFkphoC8C8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=v27b8lDzrAk:xuFkphoC8C8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=v27b8lDzrAk:xuFkphoC8C8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=v27b8lDzrAk:xuFkphoC8C8:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/v27b8lDzrAk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/development/snippets-html5-boilerplate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/development/snippets-html5-boilerplate/</feedburner:origLink></item>
		<item>
		<title>Ultimate List Of Web Design Checklists: Get Work Done!</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/xDvyJmeoLqM/</link>
		<comments>http://www.1stwebdesigner.com/development/web-design-checklists/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 10:00:51 +0000</pubDate>
		<dc:creator>Daniels Mekšs</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[checklists]]></category>
		<category><![CDATA[questionnaires]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23892</guid>
		<description><![CDATA[When building a website, there are so many things and aspects to keep in mind. It often happens that in that mess we forget about some basic things like favicon or maybe about dummy content removal from test site. It’s much easier to go trough all those things when you have all of them written down.
In this article you are [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/development/web-design-checklists/" target="_self"><img class="alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/preview-useful-web-design-checklists.jpg" border="0" alt="Preview-useful-web-design-checklists" /></a>When building a website, there are so many things and aspects to keep in mind. It often happens that in that mess we forget about some basic things like favicon or maybe about dummy content removal from test site. It’s much easier to go trough all those things when you have all of them written down.</p>
<p>In this article you are going to find bunch of different checklists, questionnaires and tips covering almost everything for an upcoming website. You probably will need just one of these tools, so choose carefully. Read some tips and decide which tool fits the best for your project planning and development process.<span id="more-23892"></span></p>
<h2>Client Checklists</h2>
<h2>1. <a target="_blank" href="http://freelanceswitch.com/finding/web-design-client-questionnaires/" target="_blank">How to Extract the Facts with a Web Design Client Questionnaire</a></h2>
<p>This article will help you create a prospect qualification questionnaire that can be used via telephone or Internet or in face-to-face meetings.</p>
<p><a target="_blank" href="http://freelanceswitch.com/finding/web-design-client-questionnaires/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/extract-facts-client-questionnaire-useful-web-design-checklists.jpg" border="0" alt="Extract-facts-client-questionnaire-useful-web-design-checklists" /></a></p>
<h2>2. <a target="_blank" href="http://www.thedesigncubicle.com/2009/11/questions-to-ask-clients-before-designing-their-website/" target="_blank">Questions to Ask Clients Before Designing a Website</a></h2>
<p>Reading some of these questions and following some guidelines will also save you and your client plenty of headaches throughout the process and pave the way to a lasting and trusting relationship.</p>
<p><a target="_blank" href="http://www.thedesigncubicle.com/2009/11/questions-to-ask-clients-before-designing-their-website/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/questions-ask-client-before-designing-website-useful-web-design-checklists.jpg" border="0" alt="Questions-ask-client-before-designing-website-useful-web-design-checklists" /></a></p>
<h2>3. <a target="_blank" href="http://www.evotech.net/blog/2009/04/22-web-client-ued-questions/" target="_blank">22 Questions to Ask Before Developing a Website</a></h2>
<p>Detailed questionnaire that you can stick to to ease your work.</p>
<p><a target="_blank" href="http://www.evotech.net/blog/2009/04/22-web-client-ued-questions/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/questions-ask-before-developing-website-useful-web-design-checklists.jpg" border="0" alt="Questions-ask-before-developing-website-useful-web-design-checklists" /></a></p>
<h2>4. <a target="_blank" href="http://bonfx.com/72-questions-to-ask-new-web-design-clients-with-pdf-chart/" target="_blank">72 Questions to Ask New Web Design Clients with PDF Chart</a></h2>
<p>Huge list of the best 72 questions to ask prospective web design clients, along with a PDF chart.</p>
<p><a target="_blank" href="http://bonfx.com/72-questions-to-ask-new-web-design-clients-with-pdf-chart/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/questions-ask-new-clients-chart-useful-web-design-checklists.jpg" border="0" alt="Questions-ask-new-clients-chart-useful-web-design-checklists" /></a></p>
<h2>5. <a target="_blank" href="http://www.traceygrady.com/design-checklist-what-clients-should-provide-their-designer" target="_blank">Design Checklist: What Clients Should Provide Their Designer</a></h2>
<p>This is a checklist of things that clients should provide their designer at the outset. To follow this list will ensure the client and designer are dealing professionally as well as creating an efficient workflow.</p>
<p><a target="_blank" href="http://www.traceygrady.com/design-checklist-what-clients-should-provide-their-designer"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/what-clients-should-provide-designer-useful-web-design-checklists.jpg" border="0" alt="What-clients-should-provide-designer-useful-web-design-checklists" /></a></p>
<h2>6. <a target="_blank" href="http://www.vision4dezign.com/ComprehensiveWebDesignChecklist.html" target="_blank">Comprehensive Web Design Checklist</a></h2>
<p>The following checklist and the associated answers will facilitate the analysis process of designing and building the website that allows you to relate with the client better and understand what he needs.</p>
<p><a target="_blank" href="http://www.vision4dezign.com/ComprehensiveWebDesignChecklist.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/comphrehensive-useful-web-design-checklists.jpg" border="0" alt="Comphrehensive-useful-web-design-checklists" /></a></p>
<h2>7. <a target="_blank" href="http://freelancefolder.com/42-questions-every-freelancer-should-ask-their-clients/" target="_blank">42 Questions Every Freelancer Should Ask Their Clients</a></h2>
<p>This is a helpful list of 42 questions for freelancers to ask prospective clients during the interview/briefing process.</p>
<p><a target="_blank" href="http://freelancefolder.com/42-questions-every-freelancer-should-ask-their-clients/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/questions-every-freelancers-should-ask-clients-useful-web-design-checklists.jpg" border="0" alt="Questions-every-freelancers-should-ask-clients-useful-web-design-checklists" /></a></p>
<h2>8. <a target="_blank" href="http://www.noupe.com/how-tos/how-to-create-the-perfect-client-questionnaire.html" target="_blank">How To Create The Perfect Client Questionnaire</a></h2>
<p>You won’t find a list of premade questions in this article, but instead you are going to learn how to write your own queastions, formule and refine them.</p>
<p><a target="_blank" href="http://www.noupe.com/how-tos/how-to-create-the-perfect-client-questionnaire.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/create-perfect-client-questionnaire-useful-web-design-checklists.jpg" border="0" alt="Create-perfect-client-questionnaire-useful-web-design-checklists" /></a></p>
<h2>9. <a target="_blank" href="http://sixrevisions.com/productivity/create_web_design_questions/" target="_blank">How to Create an Effective Web Design Questionnaire</a></h2>
<p>This article is primarily about developing a one-way questionnaire where you aren’t there to explain or expound on the questions you’ve asked the respondent, though the same concepts apply whether you’re communicating via email or during a face-to-face meet.</p>
<p><a target="_blank" href="http://sixrevisions.com/productivity/create_web_design_questions/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/create-effective-questionnaire-useful-web-design-checklists.jpg" border="0" alt="Create-effective-questionnaire-useful-web-design-checklists" /></a></p>
<h2>10. <a target="_blank" href="http://www.creativelatitude.com/links/resources_downloads.html" target="_blank">Creative Latitude Client questionnaire</a></h2>
<p>Find out what your client wants by asking the right questions. Download this helpful PDF questionnaire.<em><br />
</em></p>
<h2>Prelaunch Chechklists</h2>
<h2>1. <a target="_blank" href="http://www.smashingmagazine.com/2009/04/07/15-essential-checks-before-launching-your-website/" target="_blank">15 Essential Checks Before Launching Your Website</a></h2>
<p>This article reviews some important and necessary checks that web-sites should be checked against before the official launch  — little details are often forgotten or ignored, but – if done in time – may sum up to an overall greater user experience and avoid unnecessary costs after the official site release.</p>
<p><a target="_blank" href="http://www.smashingmagazine.com/2009/04/07/15-essential-checks-before-launching-your-website/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/essential-checks-before-launching-website-useful-web-design-checklists.jpg" border="0" alt="Essential-checks-before-launching-website-useful-web-design-checklists" /></a></p>
<h2>2. <a target="_blank" href="http://technopedia.info/tech/2006/02/14/10-things-a-web-developer-should-do-for-the-client.html" target="_blank">10 Things a Web Developer Should Do for The Client</a></h2>
<p>Not exactly wrote as a checklist, but still useful list of things you should do before launching the website.</p>
<p><a target="_blank" href="http://technopedia.info/tech/2006/02/14/10-things-a-web-developer-should-do-for-the-client.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/things-should-do-client-useful-web-design-checklists.jpg" border="0" alt="Things-should-do-client-useful-web-design-checklists" /></a></p>
<h2>3. <a target="_blank" href="http://boagworld.com/business-strategy/pre-launch-checklist" target="_blank">The Ultimate Website Prelaunch Checklist</a></h2>
<p>Large and comprehensive list with checklists you should check before launching website.</p>
<p><a target="_blank" href="http://boagworld.com/business-strategy/pre-launch-checklist"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/ultimate-prelaunch-web-design-checklists.jpg" border="0" alt="Ultimate-prelaunch-web-design-checklists" /></a></p>
<h2>4. <a target="_blank" href="http://www.webdesignerdepot.com/2010/02/using-a-pre-launch-checklist-for-your-website/" target="_blank">Using a Pre-Launch Checklist for your Website</a></h2>
<p>This pre-launch checklist entails a systematic approach to ensuring that important details are addressed before launching or relaunching a website.</p>
<p><a target="_blank" href="http://www.webdesignerdepot.com/2010/02/using-a-pre-launch-checklist-for-your-website/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/using-pre-launch-website-useful-web-design-checklists.jpg" border="0" alt="Using-pre-launch-website-useful-web-design-checklists" /></a></p>
<h2>5. <a target="_blank" href="http://validator.w3.org/unicorn/" target="_blank">W3C Unicorn &#8211; W3C&#8217;s Unified Validator</a></h2>
<p>Ultimate W3C validator, which will check your markup, CSS <span id="task_descrip">validity, <span id="task_descrip">mobile-friendliness and <span id="task_descrip">syntax of Atom or RSS feeds.</span></span></span></p>
<p><a target="_blank" href="http://validator.w3.org/unicorn/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/unicorn-validator-w3c-useful-web-design-checklists.jpg" border="0" alt="Unicorn-validator-w3c-useful-web-design-checklists" /></a></p>
<h2>Usability Checklists</h2>
<h2>1. <a target="_blank" href="http://www.uxbooth.com/blog/quick-usability-checklist/" target="_blank">Quick Usability Checklist</a></h2>
<p>This post highlights some of the more common problems designers should address on their own sites in a usability checklist of sorts.</p>
<p><a target="_blank" href="http://www.uxbooth.com/blog/quick-usability-checklist/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/quick-usability-useful-web-design-checklists.jpg" border="0" alt="Quick-usability-useful-web-design-checklists" /></a></p>
<h2>2. <a target="_blank" href="http://cgstudents.net/specific/indd/in_english/typog_rules.pdf" target="_blank">Some Typography Rules to Remember</a></h2>
<p>PDF checklist of some typography do&#8217;s &amp; don’ts which can be applied in web design.</p>
<h2>3. <a target="_blank" href="http://www.userfocus.co.uk/resources/guidelines.html" target="_blank">247 Web Usability Guidelines</a></h2>
<p>Ultimate list of usability guidelines splitted into 9 sections.</p>
<p><a target="_blank" href="http://www.userfocus.co.uk/resources/guidelines.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/usability-guidelines-web-design-checklists.jpg" border="0" alt="Usability-guidelines-web-design-checklists" /></a></p>
<h2>4. <a target="_blank" href="http://www.usereffect.com/topic/25-point-website-usability-checklist" target="_blank">25-point Website Usability Checklist</a></h2>
<p>This 25 point website usability checklist is a great  way to create some method out of madness and make sure you don&#8217;t forget anything critical when working with a new client.</p>
<p><a target="_blank" href="http://www.usereffect.com/topic/25-point-website-usability-checklist"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/point-website-usability-useful-web-design-checklists.jpg" border="0" alt="Point-website-usability-useful-web-design-checklists" /></a></p>
<h2>5. <a target="_blank" href="http://tgoden.com/index.php/the-ultimate-webdesign-usability-checklist/" target="_blank">The Ultimate Web design Usability Checklist</a></h2>
<p>This checklist with 88 questions is a must read for every web designer who cares about usability.</p>
<p><a target="_blank" href="http://tgoden.com/index.php/the-ultimate-webdesign-usability-checklist/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/ultimate-usability-list-useful-web-design-checklists.jpg" border="0" alt="Ultimate-usability-list-useful-web-design-checklists" /></a></p>
<h2>6. <a target="_blank" href="http://www.alistapart.com/articles/sensibleforms" target="_blank">Sensible Forms: A Form Usability Checklist</a></h2>
<p>Follow these guidelines, and you’ll be able to create beautiful, function able forms.</p>
<p><a target="_blank" href="http://www.alistapart.com/articles/sensibleforms"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/sensible-forms-usability-useful-web-design-checklists.jpg" border="0" alt="Sensible-forms-usability-useful-web-design-checklists" /></a></p>
<h2>7. <a target="_blank" href="http://www.skelliewag.org/the-blog-usability-checklist-95.htm" target="_blank">The Blog Usability Checklist</a></h2>
<p>This is a 19 point checklist that should be useful to any blogger looking for a practical way to evaluate (and improve) the usability of their blog. Many of the principles here will apply to websites, as well.</p>
<p><a target="_blank" href="http://www.skelliewag.org/the-blog-usability-checklist-95.htm"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/blog-usability-useful-web-design-checklists.jpg" border="0" alt="Blog-usability-useful-web-design-checklists" /></a></p>
<h2>8. <a target="_blank" href="http://www.dailybits.com/the-essential-website-usability-checklist/" target="_blank">The Essential Website Usability Checklist</a></h2>
<p>This post is a simple 13-point usability checklist for webmasters. Ever good website must be able to answer ‘yes’ to each of these points.</p>
<p><a target="_blank" href="http://www.dailybits.com/the-essential-website-usability-checklist/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/essential-website-usability-useful-web-design-checklists.jpg" border="0" alt="Essential-website-usability-useful-web-design-checklists" /></a></p>
<h2>9. <a target="_blank" href="http://www.accesskeys.org/tools/color-contrast.html" target="_blank">Access Color</a></h2>
<p>AccessColor tests the color contrast and color brightness between the foreground and background of all elements in the <acronym title="Document Object Model">DOM</acronym> to make sure that the contrast is high enough for people with visual impairments.</p>
<p><a target="_blank" href="http://www.accesskeys.org/tools/color-contrast.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/access-color-useful-web-design-checklists.jpg" border="0" alt="Access-color-useful-web-design-checklists" /></a></p>
<h2>General Checklists</h2>
<h2>1. <a target="_blank" href="http://terrymorris.net/bestpractices/" target="_blank">Web Design Best Practices Checklist</a></h2>
<p>This is a sorted list that contains some of the most important aspects you should keep in mind when developing a website.</p>
<p><a target="_blank" href="http://terrymorris.net/bestpractices/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/best-practises-useful-web-design-checklists.jpg" border="0" alt="Best-practises-useful-web-design-checklists" /></a></p>
<h2>2. <a target="_blank" href="http://www.searchenginejournal.com/50-questions-to-evaluate-the-quality-of-your-website/6400/" target="_blank">50 Questions to Evaluate the Quality of Your Website</a></h2>
<p>This 50 questions long questionnaire might trigger something here and there for some of you or maybe brings some forgotten item from the long to-do list back into your mind.</p>
<p><a target="_blank" href="http://www.searchenginejournal.com/50-questions-to-evaluate-the-quality-of-your-website/6400/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/questions-evaluate-quality-seful-web-design-checklists.jpg" border="0" alt="Questions-evaluate-quality-seful-web-design-checklists" /></a></p>
<h2>3. <a target="_blank" href="http://articles.sitepoint.com/article/checklists-web-design" target="_blank">Essential Navigation Checklists for Web Design</a></h2>
<p>These checklists pull together best practice in the disciplines of information design, usability and accessibility, into an easy to apply format.</p>
<p><a target="_blank" href="http://articles.sitepoint.com/article/checklists-web-design"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/essential-navigation-useful-web-design-checklists.jpg" border="0" alt="Essential-navigation-useful-web-design-checklists" /></a></p>
<h2>4. <a target="_blank" href="http://cameronmoll.com/archives/2008/06/web_accessibility_checklist/" target="_blank">Aaron Cannon’s Web Accessibility Checklist</a></h2>
<p>This checklist attempts to answer the question, ‘What concise pieces of advice can be given to designers that will have the greatest impact on accessibility in the majority of cases?’ Again, this list is not the perfect solution, nor is it the only solution, but it is a good first step, and it gives developers and designers a place to start from.</p>
<p><a target="_blank" href="http://cameronmoll.com/archives/2008/06/web_accessibility_checklist/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/aaron-cannon-accesability-useful-web-design-checklists.jpg" border="0" alt="Aaron-cannon-accesability-useful-web-design-checklists" /></a></p>
<h2>5. <a target="_blank" href="http://www.sohtanaka.com/web-design/beginners-checklist-debugging-css-bug/" target="_blank">Beginner’s Checklist Before Debugging CSS</a></h2>
<p>Most beginners make a common pattern of mistakes quite frequently. So if you are a beginner, this checklist will be just in time.</p>
<p><a target="_blank" href="http://www.sohtanaka.com/web-design/beginners-checklist-debugging-css-bug/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/beginner-css-debugging-useful-web-design-checklists.jpg" border="0" alt="Beginner-css-debugging-useful-web-design-checklists" /></a></p>
<h2>6. <a target="_blank" href="http://www.seomoz.org/blog/10-things-relaunch-your-website" target="_blank">10 Things You Must Check When You Re-launch Your Website</a></h2>
<p>The following is a list of 10 things that you should check prior to and immediately after you have launched a new site.</p>
<p><a target="_blank" href="http://www.seomoz.org/blog/10-things-relaunch-your-website"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/things-must-check-re-launch-useful-web-design-checklists.jpg" border="0" alt="Things-must-check-re-launch-useful-web-design-checklists" /></a></p>
<h2>7. <a target="_blank" href="http://css-tricks.com/common-sense-seo-checklist/" target="_blank">Common Sense SEO Checklist</a></h2>
<p>6 point beginner checklist that helps you to focus on what you do have control over and what improves your SEO rankings.</p>
<p><a target="_blank" href="http://css-tricks.com/common-sense-seo-checklist/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/common-sense-seo-useful-web-design-checklists.jpg" border="0" alt="Common-sense-seo-useful-web-design-checklists" /></a></p>
<h2>8. <a target="_blank" href="http://www.netreach.com/Services/Website-Design-and-Development/Web-Design-Development-Checklist/479/" target="_blank">Web Design &amp; Development Checklist</a></h2>
<p>This questionnaire is for the front-end look and feel and does not address technical specifications. You may find that some of the questions are not applicable to a particular client or project.</p>
<p><a target="_blank" href="http://www.netreach.com/Services/Website-Design-and-Development/Web-Design-Development-Checklist/479/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/development-checklist-useful-web-design-checklists.jpg" border="0" alt="Development-checklist-useful-web-design-checklists" /></a></p>
<h2>9. <a target="_blank" href="http://www.westwardstrategy.com/blog/2010/seo-checklist-for-your-new-website/" target="_blank">SEO Checklist for Your New Website</a></h2>
<p>The following 12 step optimization checklist will bring you one step closer to maximizing your revenues with smart web design.</p>
<p><a target="_blank" href="http://www.westwardstrategy.com/blog/2010/seo-checklist-for-your-new-website/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/seo-new-website-useful-web-design-checklists.jpg" border="0" alt="Seo-new-website-useful-web-design-checklists" /></a></p>
<h2>Ultimate Checklists</h2>
<h2>1. <a target="_blank" href="http://www.maxdesign.com.au/articles/checklist/" target="_blank">Web Standards Checklist</a></h2>
<p>This is a large checklist to help you build websites that match the web standards. However, this list should not be seen as a list of items that must be addressed on every site that you develop. It is simply a guide that can be used:</p>
<ul>
<li>to show the breadth of web standards</li>
<li>as a handy tool for developers during the production phase of websites</li>
<li>as an aid for developers who are interested in moving towards web standards</li>
</ul>
<p><a target="_blank" href="http://www.maxdesign.com.au/articles/checklist/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/web-standarts-checklist-useful-web-design-checklists.jpg" border="0" alt="Web-standarts-checklist-useful-web-design-checklists" /></a></p>
<h2>2. <a target="_blank" href="http://www.boxuk.com/blog/the-ultimate-website-launch-checklist" target="_blank">The Ultimate Website Launch Checklist</a></h2>
<p>Very detailed checklist that covers both the pre-launch and the post-launch phase of the web site life cycle. It contains checks related to content and style, standards and validation, search engine visibility, functional testing, security/risk, performance and marketing.</p>
<p><a target="_blank" href="http://www.boxuk.com/blog/the-ultimate-website-launch-checklist"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/ultimate-launch-useful-web-design-checklists.jpg" border="0" alt="Ultimate-launch-useful-web-design-checklists" /></a></p>
<h2>3. <a target="_blank" href="http://www.webpagesthatsuck.com/does-my-web-site-suck/does-my-web-site-suck-checklist-part-one.html" target="_blank">149 Mortal Sins That Will Send Your Site to Web Design Hell</a></h2>
<p>Huge post with 2 checklists that will probably give you a preview of how a website should look.</p>
<p><a target="_blank" href="http://www.webpagesthatsuck.com/does-my-web-site-suck/does-my-web-site-suck-checklist-part-one.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/mortal-sins-send-useful-web-design-checklists.jpg" border="0" alt="Mortal-sins-send-useful-web-design-checklists" /></a></p>
<h2>4. <a target="_blank" href="http://www.merttol.com/articles/web/design-checklist.html" target="_blank">Design Checklist</a></h2>
<p>The following checklist serves to summarize the major points and to help you ensure you’ve done all you should before finalizing any web site you are creating.</p>
<p><a target="_blank" href="http://www.merttol.com/articles/web/design-checklist.html"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/ultimate-web-design-checklists.jpg" border="0" alt="Ultimate-web-design-checklists" /></a></p>
<h2>5. <a target="_blank" href="http://www.chromaticsites.com/blog/the-official-successful-website-checklist-challenge/" target="_blank">The Official ‘Successful Website Checklist Challenge’</a></h2>
<p>Complete guide from planning to SEo. Take this challenge and see what you’re doing right, what you’re doing wrong, and what you’re forgetting to do. There are notes and resources included for nearly every item on the checklist.</p>
<p><a target="_blank" href="http://www.chromaticsites.com/blog/the-official-successful-website-checklist-challenge/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/official-successful-challenge-useful-web-design-checklists.jpg" border="0" alt="Official-successful-challenge-useful-web-design-checklists" /></a></p>
<h2>6. <a target="_blank" href="http://www.insidecrm.com/features/101-web-site-fixes-031808/" target="_blank">101 Five-Minute Fixes to Incrementally Improve Your Web Site</a></h2>
<p>Tackle these quick fixes over time, and you&#8217;ll be able to improve your website with minimal pain.</p>
<p><a target="_blank" href="http://www.insidecrm.com/features/101-web-site-fixes-031808/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/five-minute-fixes-incrementally-improve-useful-web-design-checklists.jpg" border="0" alt="Five-minute-fixes-incrementally-improve-useful-web-design-checklists" /></a></p>
<h2>7. <a target="_blank" href="http://launchlist.net/" target="_blank">Launchlist</a></h2>
<p>Launchlist is intended to help and encourage web designers and developers to check their work before exposing it to the world at large. The process is simple &#8211; enter your name and email and the same for a recipient, your project details and website URL, and then proceed through our list of provided fields.</p>
<p><a target="_blank" href="http://launchlist.net/"><img src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/web-design-checklists/launch-list-useful-web-design-checklists.jpg" border="0" alt="Launch-list-useful-web-design-checklists" /></a></p>
<h2>Further Resources</h2>
<ul>
<li><a href="http://www.1stwebdesigner.com/development/tools-analyze-web-design/" target="_blank">12 Tools To Reevaluate And Analyze Your Web Design</a></li>
<li><a href="http://www.1stwebdesigner.com/resources/online-tools-website-validation-testing/" target="_blank">20+ Online Tools for Website Validation and Testing</a></li>
<li><a href="http://www.1stwebdesigner.com/resources/getting-feedback-tools-polls/" target="_blank">Getting Real Feedback For Your New Design, Usability Testing</a></li>
<li><a target="_blank" href="http://sixrevisions.com/web-standards/accessibility_testtools/" target="_blank">10 Tools for Evaluating Web Design Accessibility</a></li>
<li><a target="_blank" href="http://www.tripwiremagazine.com/2009/11/35-freelancer-tools-and-services-for-testing-web-projects.html" target="_blank">40+ Freelancer Tools and Services for Testing Web Projects</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=xDvyJmeoLqM:5igP3a3jTTc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=xDvyJmeoLqM:5igP3a3jTTc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=xDvyJmeoLqM:5igP3a3jTTc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=xDvyJmeoLqM:5igP3a3jTTc:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/xDvyJmeoLqM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/development/web-design-checklists/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/development/web-design-checklists/</feedburner:origLink></item>
		<item>
		<title>20+ Awesome Flickr Groups for Logo and Web Design Inspiration</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/Pj-olZ0IC3k/</link>
		<comments>http://www.1stwebdesigner.com/inspiration/flickr-groups-logo-web-design-inspiration/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 21:00:23 +0000</pubDate>
		<dc:creator>Taimur Asghar</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[Roundup]]></category>
		<category><![CDATA[showcase]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23849</guid>
		<description><![CDATA[Designers are always attracted towards creative work and new sources for design inspiration. There are plenty of websites for getting inspiration like deviantArt, Behance Network, Flickr and many more. Since Flickr has started, it happens to be one of the biggest source of inspiration, there are also some groups that have been established to showcase [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/inspiration/flickr-groups-logo-web-design-inspiration/"><img class="size-full wp-image-23851 alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/flickr-groups-logo-web-design-inspiration.jpg" alt="" width="150" height="150" /></a>Designers are always attracted towards creative work and new sources for design inspiration. There are plenty of websites for getting inspiration like deviantArt, Behance Network, Flickr and many more. Since Flickr has started, it happens to be one of the biggest source of inspiration, there are also some groups that have been established to showcase the work of designers.</p>
<p>Today we have browsed the most valuable source of inspiration simply known as &#8220;Flickr&#8221; and extracted a useful list of groups for Logo and Web Design inspiration and displayed two images of sample work by members of these groups for your inspiration.<span id="more-23849"></span></p>
<h2>Logo Designing</h2>
<h2>1. <a target="_blank" href="http://www.flickr.com/groups/logodesign/">Design the Logo</a></h2>
<p><strong>Members:</strong> 6,762<br />
<strong>Items:</strong>16,602<br />
“Design the Logo” is Flickr group completely dedicated to graphic designing especially creating logos, having huge amount of creative logos design projects for inspiration and ideas for your projects.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/logodesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/DesigntheLogo2flickrgroupslogowebdesign.jpg" border="0" alt="Design the Logo2-flickr-groups-logo-web-design" width="570" height="905" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/logodesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/DesigntheLogoflickrgroupslogowebdesign.jpg" border="0" alt="Design the Logo-flickr-groups-logo-web-design" width="570" height="525" /></a></p>
<h2>2. <a target="_blank" href="http://www.flickr.com/groups/780785@N24/">The Brand Identity Design</a></h2>
<p><strong>Members:</strong> 1,014<br />
<strong>Items:</strong> 3,413<br />
&#8220;Brand Identity Design&#8221; group has huge and increasing collection of logo design and branding for logo and branding lover&#8217;s inspiration.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/780785@N24/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/TheBrandIdentityDesign2flickrgroupslogowebdesign.jpg" border="0" alt="aec" width="570" height="804" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/780785@N24/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/TheBrandIdentityDesignflickrgroupslogowebdesign.jpg" border="0" alt="The Brand Identity Design-flickr-groups-logo-web-design" width="570" height="804" /></a></p>
<h2>3. <a target="_blank" href="http://www.flickr.com/groups/590926@N21/">Real Graphic Design</a></h2>
<p><strong>Members:</strong> 1,382<br />
<strong>Items:</strong> 1,098<br />
Real Graphic Design is an splendid showcase of web layout, typography, logo creation and branding.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/590926@N21/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/RealGraphicDesignflickrgroupslogowebdesign.jpg" border="0" alt="Real Graphic Design-flickr-groups-logo-web-design" width="570" height="377" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/590926@N21/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/RealGraphicDesign2flickrgroupslogowebdesign.jpg" border="0" alt="Real Graphic Design2-flickr-groups-logo-web-design" width="570" height="574" /></a></p>
<h2>4. <a target="_blank" href="http://www.flickr.com/groups/607735@N20/">LOГO</a></h2>
<p><strong>Members:</strong> 998<br />
<strong>Items:</strong> 5,770<br />
LOГO has huge collection of logo designs for your inspiration.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/607735@N20/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LOOflickrgroupslogowebdesign.jpg" border="0" alt="LOГO-flickr-groups-logo-web-design" width="570" height="378" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/607735@N20/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LOO2flickrgroupslogowebdesign.jpg" border="0" alt="LOГO2-flickr-groups-logo-web-design" width="570" height="673" /></a></p>
<h2>5. <a target="_blank" href="http://www.flickr.com/groups/logopond/">Logopond Lillies</a></h2>
<p><strong>Members:</strong> 740<br />
<strong>Items:</strong> 1,584<br />
“Who doesn&#8217;t love identity design <a target="_blank" href="http://logopond.com/">Logopond </a>brings you the best from around the world, but sometimes you want to check out business cards, websites, and other collateral materials. Here is an opportunity to share your work with a like minded creatives.”</p>
<p><a target="_blank" href="http://www.flickr.com/groups/logopond/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogopondLilliesflickrgroupslogowebdesign.png" border="0" alt="Logopond Lillies-flickr-groups-logo-web-design" width="570" height="380" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/logopond/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogopondLillies2flickrgroupslogowebdesign.jpg" border="0" alt="Logopond Lillies2-flickr-groups-logo-web-design" width="570" height="321" /></a></p>
<h2>6. <a target="_blank" href="http://www.flickr.com/groups/885697@N20/">Logo Design Pro</a></h2>
<p><strong>Members:</strong> 683<br />
<strong>Items:</strong> 2,769<br />
Logo Design Pro provides you quality Logo design, Corporate Logo design, Best logos, Brand identity, Brand identity Design and more.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/885697@N20/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignProflickrgroupslogowebdesign.jpg" border="0" alt="Print" width="570" height="680" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/885697@N20/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignPro2flickrgroupslogowebdesign.jpg" border="0" alt="Logo Design Pro2-flickr-groups-logo-web-design" width="570" height="535" /></a></p>
<h2>7. <a target="_blank" href="http://www.flickr.com/groups/identitydesign/">Identity + Logo Design</a></h2>
<p><strong>Members:</strong> 1,986<br />
<strong>Items:</strong>4,611<br />
Identity + Logo Design enables you to showcase your own creations as well as you favorites logo designs.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/identitydesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/IdentityLogoDesignflickrgroupslogowebdesign.jpg" border="0" alt="Identity   Logo Design-flickr-groups-logo-web-design" width="570" height="329" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/identitydesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/IdentityLogoDesign2flickrgroupslogowebdesign.jpg" border="0" alt="Identity   Logo Design2-flickr-groups-logo-web-design" width="570" height="403" /></a></p>
<h2>8. <a target="_blank" href="http://www.flickr.com/groups/logoart/">Loco Logos</a></h2>
<p><strong>Members:</strong> 470<br />
<strong>Items:</strong>1,857<br />
Loco Logos provide you quality corporate logo designs majorly submitted by the group users.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/logoart/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/locologosflickrgroupslogowebdesign.jpg" border="0" alt="loco logos-flickr-groups-logo-web-design" width="570" height="553" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/logoart/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/locologos2flickrgroupslogowebdesign.jpg" border="0" alt="loco logos2-flickr-groups-logo-web-design" width="570" height="380" /></a></p>
<h2>9. <a target="_blank" href="http://www.flickr.com/groups/logo/">Logo Design</a></h2>
<p><strong>Members:</strong> 435<br />
<strong>Items:</strong>1,566<br />
In &#8220;Logo Design&#8221; you can share your logos and identity design packages and discuss topics relating logo designing.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/logo/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesign2flickrgroupslogowebdesign.jpg" border="0" alt="Logo Design2-flickr-groups-logo-web-design" width="570" height="428" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/logo/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignflickrgroupslogowebdesign.jpg" border="0" alt="Logo Design-flickr-groups-logo-web-design" width="570" height="536" /></a></p>
<h2>10. <a target="_blank" href="http://www.flickr.com/groups/887496@N21/">Logo Design Showcase</a></h2>
<p><strong>Members:</strong> 203<br />
<strong>Items:</strong> 1,009<br />
Logo Design Showcase is another Flickr group exhibiting professional logo designs for you inspiration.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/887496@N21/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignShowcaseflickrgroupslogowebdesign.jpg" border="0" alt="Logo Design Showcase-flickr-groups-logo-web-design" width="570" height="570" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/887496@N21/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignShowcase2flickrgroupslogowebdesign.jpg" border="0" alt="Logo Design Showcase2-flickr-groups-logo-web-design" width="570" height="570" /></a></p>
<h2>11. <a target="_blank" href="http://www.flickr.com/groups/logodesignerblog/">Logo Designer Blog User Submitted Designs</a></h2>
<p><strong>Members:</strong> 219<br />
<strong>Items:</strong> 568<br />
This Flickr group is official Flickr group of <a target="_blank" href="http://logodesignerblog.com/">Logo Design Blog</a>, all the logo designs are submitted by Logo Design Blog’s readers.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/logodesignerblog/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignerBlogUserSubmittedDesignsflickrgroupslogowebdesign.jpg" border="0" alt="Logo Designer Blog User Submitted Designs-flickr-groups-logo-web-design" width="570" height="466" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/logodesignerblog/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/LogoDesignerBlogUserSubmittedDesigns2flickrgroupslogowebdesign.png" border="0" alt="Logo Designer Blog User Submitted Designs2-flickr-groups-logo-web-design" width="570" height="454" /></a></p>
<h2>Web Design</h2>
<h2>1. <a target="_blank" href="http://www.flickr.com/groups/webdesign/">Web Design</a></h2>
<p><strong>Members:</strong> 7,098<br />
<strong>Items:</strong> 12,252<br />
&#8220;Web Design&#8221; Flickr group has massive number of inspirational web designs, which can be used for inspiration as well as you can get constructive idea for your next web designing project.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/webdesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebDesignflickrgroupslogowebdesign.jpg" border="0" alt="Web Design-flickr-groups-logo-web-design" width="570" height="515" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/webdesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebDesign2flickrgroupslogowebdesign.jpg" border="0" alt="Web Design2-flickr-groups-logo-web-design" width="570" height="943" /></a></p>
<h2>2. <a target="_blank" href="http://www.flickr.com/groups/webdesign-inspiration/">Webdesign Inspiration</a></h2>
<p><strong>Members:</strong> 1,881<br />
<strong>Items:</strong> 3,133<br />
This Flickr group is a showcase for websites, graphics, logos and all things for designer&#8217;s inspiration.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/webdesign-inspiration/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebdesignInspirationflickrgroupslogowebdesign.jpg" border="0" alt="Webdesign Inspiration-flickr-groups-logo-web-design" width="570" height="340" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/webdesign-inspiration/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebdesignInspiration2flickrgroupslogowebdesign.jpg" border="0" alt="Webdesign Inspiration2-flickr-groups-logo-web-design" width="570" height="508" /></a></p>
<h2>3. <a target="_blank" href="http://www.flickr.com/groups/37996583675@N01/">Web Development</a></h2>
<p><strong>Members:</strong> 610<br />
<strong>Items:</strong> 1,340<br />
This group is dedicated to Web development, scripting and web layouts.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/37996583675@N01/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebDevelopmentflickrgroupslogowebdesign.jpg" border="0" alt="Web Development-flickr-groups-logo-web-design" width="570" height="497" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/37996583675@N01/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebDevelopment2flickrgroupslogowebdesign.jpg" border="0" alt="Web Development2-flickr-groups-logo-web-design" width="570" height="476" /></a></p>
<h2>4. <a target="_blank" href="http://www.flickr.com/groups/webdesignedge/">Web Design Edge</a></h2>
<p><strong>Members:</strong> 380<br />
<strong>Items:</strong> 1,570<br />
&#8220;Are you wondering how to develop that perfect website for you or your business but are concerned about costs? Are you uncertain about how to market yourself online? Are you looking for knowledgeable, reliable support&#8230; looking for an Edge? “Web Design Edge” is here to help you achieve your goals and make plain sense out of the world of website development and online marketing.”</p>
<p><a target="_blank" href="http://www.flickr.com/groups/webdesignedge/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebDesignEdgeflickrgroupslogowebdesign.jpg" border="0" alt="Web Design Edge-flickr-groups-logo-web-design" width="570" height="297" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/webdesignedge/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WebDesignEdge2flickrgroupslogowebdesign.jpg" border="0" alt="Web Design Edge2-flickr-groups-logo-web-design" width="570" height="557" /></a></p>
<h2>5. <a target="_blank" href="http://www.flickr.com/groups/boagworldinspiration/">Boagworld: Web Design Inspiration</a></h2>
<p><strong>Members:</strong> 977<br />
<strong>Items:</strong> 1,653<br />
This group is official Flickr group of <a target="_blank" href="http://boagworld.com/">Boagworld blog </a>run by web strategist Paul Boag, in this group you will find awesome web designs and layout for your web design inspiration.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/boagworldinspiration/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Boagworldflickrgroupslogowebdesign.jpg" border="0" alt="Boagworld-flickr-groups-logo-web-design" width="570" height="584" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/boagworldinspiration/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Boagworld2flickrgroupslogowebdesign.jpg" border="0" alt="Boagworld2-flickr-groups-logo-web-design" width="570" height="570" /></a></p>
<h2>6. <a target="_blank" href="http://www.flickr.com/groups/websitedesigns/">Web designs</a></h2>
<p><strong>Members:</strong> 489<br />
<strong>Items:</strong> 1,874<br />
Web designs is another Flickr group where you can find professional web layouts.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/websitedesigns/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Webdesignsflickrgroupslogowebdesign.jpg" border="0" alt="Web designs-flickr-groups-logo-web-design" width="570" height="376" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/websitedesigns/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Webdesigns2flickrgroupslogowebdesign.jpg" border="0" alt="Web designs2-flickr-groups-logo-web-design" width="570" height="393" /></a></p>
<h2>7. <a target="_blank" href="http://www.flickr.com/groups/webultimate/">Web ultimate</a></h2>
<p><strong>Members:</strong> 259<br />
<strong>Items:</strong> 872<br />
Flickr group devoted to provide you quality web-design, web-interface, web 2.0, portals, promo-pages, online-shops and GUI.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/webultimate/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Webultimate2flickrgroupslogowebdesign.jpg" border="0" alt="Web ultimate2-flickr-groups-logo-web-design" width="570" height="433" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/webultimate/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Webultimateflickrgroupslogowebdesign.jpg" border="0" alt="Web ultimate-flickr-groups-logo-web-design" width="570" height="570" /></a></p>
<h2>8. <a target="_blank" href="http://www.flickr.com/groups/bestofwebdesign/">Best of Web Design</a></h2>
<p><strong>Members:</strong> 186<br />
<strong>Items:</strong> 653<br />
Best of Web Design, as name signifies, provides you best websites designs ever created. You can add your work as well as your favorite well designed sites.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/bestofwebdesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/BestofWebDesignflickrgroupslogowebdesign.jpg" border="0" alt="Best of Web Design-flickr-groups-logo-web-design" width="570" height="428" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/bestofwebdesign/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/BestofWebDesign2flickrgroupslogowebdesign.jpg" border="0" alt="Best of Web Design2-flickr-groups-logo-web-design" width="570" height="403" /></a></p>
<h2>9. <a target="_blank" href="http://www.flickr.com/groups/webui/">Web2.0 Interface</a></h2>
<p><strong>Members:</strong> 250<br />
<strong>Items:</strong> 284<br />
&#8220;Web2.0 Interface&#8221; showcases beautiful web2.0 designs and user interfaces.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/webui/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Web2.0Interfaceflickrgroupslogowebdesign.jpg" border="0" alt="Web2.0 Interface-flickr-groups-logo-web-design" width="570" height="757" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/webui/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Web2.0Interface2flickrgroupslogowebdesign.jpg" border="0" alt="Web2.0 Interface2-flickr-groups-logo-web-design" width="570" height="620" /></a></p>
<h2>10. <a target="_blank" href="http://www.flickr.com/groups/churchdots/">ChurchDots &#8211; Church Web Design</a></h2>
<p><strong>Members:</strong> 135<br />
<strong>Items:</strong> 85<br />
&#8220;ChurchDots is a Flickr group dedicated to showcasing beautiful church websites from around the world. The goal of ChurchDots is to inspire the church community to create better websites to effectively communicate with each others.&#8221;</p>
<p><a target="_blank" href="http://www.flickr.com/groups/churchdots/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/ChurchDotsflickrgroupslogowebdesign.jpg" border="0" alt="ChurchDots-flickr-groups-logo-web-design" width="570" height="349" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/churchdots/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/ChurchDots2flickrgroupslogowebdesign.jpg" border="0" alt="ChurchDots2-flickr-groups-logo-web-design" width="570" height="452" /></a></p>
<h2>11. <a target="_blank" href="http://www.flickr.com/groups/woothemes/">WooThemes</a></h2>
<p><strong>Members:</strong> 254<br />
<strong>Items:</strong> 144<br />
WooThemes is one of the leading WordPress premium theme provider. In this Flickr group you can add your own WordPress themes.</p>
<p><a target="_blank" href="http://www.flickr.com/groups/woothemes/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WooThemesflickrgroupslogowebdesign.jpg" border="0" alt="WooThemes-flickr-groups-logo-web-design" width="570" height="299" /></a></p>
<p><a target="_blank" href="http://www.flickr.com/groups/woothemes/"><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/WooThemes2flickrgroupslogowebdesign.jpg" border="0" alt="WooThemes2-flickr-groups-logo-web-design" width="570" height="779" /></a></p>
<p>If you know other informative and useful Flickr groups then please share with us. :)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=Pj-olZ0IC3k:Qh60OM9LthA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=Pj-olZ0IC3k:Qh60OM9LthA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=Pj-olZ0IC3k:Qh60OM9LthA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=Pj-olZ0IC3k:Qh60OM9LthA:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/Pj-olZ0IC3k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/inspiration/flickr-groups-logo-web-design-inspiration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/inspiration/flickr-groups-logo-web-design-inspiration/</feedburner:origLink></item>
		<item>
		<title>Performance Optimization: How to Load your javascript faster!</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/uRCmc6KuCks/</link>
		<comments>http://www.1stwebdesigner.com/development/load-javascript-faster/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:00:17 +0000</pubDate>
		<dc:creator>przemek</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[cdn]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[labjs]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[packing]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23143</guid>
		<description><![CDATA[Javascript is now extremely important. Some sites use javascript for a tiny enchantments, many of today&#8217;s webapps are depending on it, some of them are even totally written in js. In this article I&#8217;ll point out some important rules, how to use your javascript, which tools to use and what benefits you&#8217;ll gain from it.

Keep [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/development/load-javascript-faster/"><img class="size-full wp-image-22047 alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/load-js-faster_150.png" alt="Load your javascript faster" /></a>Javascript is now extremely important. Some sites use javascript for a tiny enchantments, many of today&#8217;s webapps are depending on it, some of them are even totally written in js. In this article I&#8217;ll point out some important rules, how to use your javascript, which tools to use and what benefits you&#8217;ll gain from it.</p>
<p><span id="more-23143"></span></p>
<h2>Keep your code at minimum</h2>
<p><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/keep-your-code-at-minimum.png" border="0" alt="Keep your code at minimum" width="570" /></p>
<p>Don&#8217;t rely on javascript. Don&#8217;t duplicate your scripts. Treat it like a candy-tool to make things more pretty. Don&#8217;t bloat your site with s**t-loads of <em>javascript</em>. Use it only when necessary. Only when it <em>really</em> improves user experience.</p>
<h3>Minimize DOM access</h3>
<p>Accessing DOM elements with JavaScript is easy, code is more readable, but it&#8217;s slow. Here are some tips: <em>Limit your layout fixing with javascript</em>, <em>cache references to accessed elements</em>. Sometimes when your site is depending so much on <code>DOM</code> modifications you should consider limiting your markup. It&#8217;s a good reason to switch to HTML5 and leave those old XHTML, HTML4 behind. You can check the number of your <code>DOM</code> elements by typing in Firebug&#8217;s console: <code>document.getElementsByTagName('*').length</code></p>
<h3>Compress your code</h3>
<blockquote cite="http://dean.edwards.name/weblog/2007/08/js-compression/"><p>The most efficient way to serve compressed JavaScript is to first run your code through a JavaScript compressor that shrinks variable and argument names, and then serve the resulting code using gzip compression.</p></blockquote>
<p>Well, I don&#8217;t compress my <code>main.js</code>, but check if you have any jQuery plugins that are not compressed, do it (remember to keep author&#8217;s notes). Below I listed some options for compression.</p>
<ul>
<li><a target="_blank" rel="nofollow" href="http://yuilibrary.com/downloads/#yuicompressor">YUI Compressor</a> (my favorite, used by jQuery team), beginners <a target="_blank" title="Extreme JavaScript Compression With YUI Compressor" rel="nofollow" href="http://www.slideshare.net/nzakas/extreme-javascript-compression-with-yui-compressor">guide</a>, <a target="_blank" rel="nofollow" href="http://vilimpoc.org/research/js-speedup/">second guide</a> and <a target="_blank" rel="nofollow" href="http://developer.yahoo.com/yui/compressor/">official site</a></li>
<li><a target="_blank" rel="nofollow" href="http://dean.edwards.name/packer/">Dean Edwards Packer</a></li>
<li><a target="_blank" rel="nofollow" href="http://crockford.com/javascript/jsmin">JSMin</a></li>
</ul>
<p><strong>GZip Compression</strong>: Idea behind this is to reduce time of transferring data between browser and server. When it&#8217;s done you get your file with <code>Accept-Encoding: gzip,deflate</code> header. It has some disadvantages though. It takes: CPU on both server-side and client side (to compress and uncompress) and disc space.</p>
<p><strong>Avoid <code>eval()</code></strong>: While sometimes it may bring some time efficiency, it&#8217;s definitely wrong practice. It makes your code look more dirty and it crashes out most of the compressors.</p>
<h2>Tool to speed up <em>javascript</em> loading &#8211; <a target="_blank" href="http://labjs.com/">Lab.js</a></h2>
<p>There are many awesome tools that could speed up your javascript loading time. One is worth mentioning — <strong>Lab.js</strong>.</p>
<p>With <strong>LAB.js</strong> (Loading And Blocking JavaScript) you can load your javascript files in parallel, speeding up the total loading process. What is more you can also set up certain order for scripts to be loaded, so no dependencies are broken. Also, the developer declares a 2x speed improvement on his site.</p>
<h2>Using proper CDN</h2>
<p>Many webpages now use <strong>CDN</strong> (Content delivery network). It improves your caching, because everybody can use it. It can also save you some bandwidth. You can easy ping or <em>firebug</em> those servers to check from where you get data faster. Choose CDN by matching your readers localization. Remember to use public repositories when it&#8217;s possible.</p>
<p>Some CDN options for <em>jQuery</em>:</p>
<ul>
<li><code>http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js</code> &#8211; Google Ajax, information about <a target="_blank" href="http://code.google.com/apis/libraries/devguide.html#Libraries">more libraries</a></li>
<li><code>http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js</code> &#8211; Microsoft&#8217;s CDN</li>
<li><code>http://code.jquery.com/jquery-1.4.2.min.js</code> &#8211; Edgecast (mt)</li>
</ul>
<h2>Load your javascript at the end of page</h2>
<p><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/load-you-js-at-the-end.png" border="0" alt="Load your javascript at the end" width="570" /></p>
<p>Very good practice if you care about user and him/her not leaving your page because of slow internet connection. Usability and user at first, javascript at the end. This may be painful, but you should be prepared for users with disabled javascript. You may put some javascript to be loaded in <code>head</code> section, but only if it&#8217;s loading asynchronously.</p>
<h2>Load tracking asynchronously</h2>
<p>This one is very important. Most of us are using <em>Google Analytics</em> for statistics. It&#8217;s good. Now look where you put your tracking code. Is it in head section? Is it using <code>document.write</code>? Then you should blame yourself for not using <em>asynchronous tracking code for Google Analytics</em>.</p>
<p>This is what asynchronous tracking code for Google Analytics looks like. We must acknowledge that it uses <code>DOM</code> instead of <code>document.write</code>, which may be better for you. It detects some of the events before page load which is very important. Now think of all the users closing your page before it even loaded. The cure of missing <em>page views</em> has been found.</p>
<pre class="brush: jscript;">

	var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-XXXXXXX-XX']);
	_gaq.push(['_trackPageview']);

	(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	})();
</pre>
<p>Don&#8217;t using <em>GA</em>? It&#8217;s not a problem, most of today&#8217;s analytics providers will allow you to use asynchronous tracking.</p>
<h2>Ajax Optimization</h2>
<p><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/ajax-optimization.jpg" border="0" alt="Ajax Optimization" width="570" /></p>
<p>Ajax request have great impact on your site&#8217;s performance. Below I pointed some tips about ajax optimization.</p>
<h3>Cache your ajax</h3>
<p>Look at your code. Is your ajax cacheable? Well, it depends on data, but mostly your ajax requests should be cacheable. In <a target="_blank" title="jQuery Ajax API" href="http://api.jquery.com/jQuery.ajax/">jQuery</a> your requests are cached by default, not including <code>script</code> and <code>jsonp</code> dataType.</p>
<h3>Use GET for Ajax Requests</h3>
<p><code>POST</code> type requests takes two TCP packets to send (headers sent first, data next). <code>GET</code> type request takes only one packet to send (which may depend on your amount of cookies). So while your URL length is less than <abbr title="IE Limitation">2K</abbr> and you want to request some data use <code>GET</code>.</p>
<h2>Use ySlow</h2>
<p><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/yslow-tool.png" border="0" alt="Use Free ySlow Tool" width="570" /></p>
<p>It&#8217;s both simple and extremely powerful when it comes to performance. It grades your website and shows you what you need to correct, what should be taken care of.</p>
<h2>Bonus: Pack your javascript into PNG File</h2>
<p><img style="border-width: 0px;" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/jquery-prototype-packed-into-image.png" border="0" alt="jQuery and Prototype Packed into one image" width="570" /></p>
<blockquote cite="http://ajaxian.com/archives/want-to-pack-js-and-css-really-well-convert-it-to-a-png-and-unpack-it-via-canvas"><p>Imagine adding your JS and CSS to the end of an image and cropping it in CSS to have all the info you need in an app in a single HTTP request.</p></blockquote>
<p>I have recently found this. What is basically does it packs up your javascript/css data into PNG file. After that you can unpack it by using the canvas API&#8217;s <code>getImageData()</code>. What is more it&#8217;s very efficient. You can gain about <strong>35% compression without minifying your data</strong>. Lossless compression! I must point out that for larger scripts you can feel &#8220;some&#8221; load time while image is pointed to canvas and pixels are read.</p>
<p>For more information about this one check out this <a target="_blank" title="Compression using Canvas and PNG-embedded data" href="http://blog.nihilogic.dk/2008/05/compression-using-canvas-and-png.html">article from 2008</a>.</p>
<h2>Final Thoughts</h2>
<p>Hope you guys liked this article. If yes, remember to share it and to say hello to me on twitter. Stay in tune for some further posts about serious performance optimization.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=uRCmc6KuCks:tQ9TQIx-aus:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=uRCmc6KuCks:tQ9TQIx-aus:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=uRCmc6KuCks:tQ9TQIx-aus:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=uRCmc6KuCks:tQ9TQIx-aus:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/uRCmc6KuCks" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/development/load-javascript-faster/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/development/load-javascript-faster/</feedburner:origLink></item>
		<item>
		<title>Discover What Type of Designer Are You?</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/ssZKfiRWXYI/</link>
		<comments>http://www.1stwebdesigner.com/design/types-of-designers/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 21:00:38 +0000</pubDate>
		<dc:creator>Hilde Torbjornsen</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[Types of Designer]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23685</guid>
		<description><![CDATA[Just like there are different client types, and different people in general &#8211; there are a few different types of designers. In this article we will have a look at some of the characteristics of some of these and give you some tips on how to improve. Hopefully you will have a few good tips [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/design/types-of-designers/"><img class="alignleft size-full wp-image-23801" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/title-designer-type.jpg" alt="" width="150" height="150" /></a>Just like there are different client types, and different people in general &#8211; there are a few different types of designers. In this article we will have a look at some of the characteristics of some of these and give you some tips on how to improve. Hopefully you will have a few good tips on how you can become an even better designer when you&#8217;re done with this article!</p>
<p><span id="more-23685"></span></p>
<p>Have you ever thought that you&#8217;re unique? Or felt that you&#8217;re just one of thousands out there struggling to get a project?</p>
<p><img class="aligncenter size-full wp-image-23787" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/01-designer-type.jpg" alt="" width="570" height="300" /></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.bizior.com/" target="_blank">Piotr Bizior</a></em></p>
<p>Most likely, both of these statements are true. Many designers are out there trying to get their next project and most of them are in a way unique. Still there are some characteristics that we all have more or less of. By understanding some of these and knowing how to take advantage of your better sides while getting rid of the bad ones, you will be more likely to succeed!</p>
<p><strong>Different Characteristics</strong></p>
<p>Very few are just one single type. Most of us have some characteristics from several of these types, giving us hundreds of possible combinations. So we are indeed unique. Being one specific type doesn&#8217;t mean that you&#8217;re better than everyone else, or worse for that matter. The best way to be is a nice mix of different ones if possible. Even some of the more negative sounding types do have their positive sides. Now let&#8217;s have a look at one way to divide us into these types:</p>
<p><strong>The Over-worker</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23788" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/02-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.proledesign.com/" target="_blank">Ivan Prole</a></em></p>
<p>More common within the ranks of fresh designers is the over-worker. This is the designer that spends a lot of time on even the smaller projects believing that this is the answer to everything. On the good side it&#8217;s always great when people try to make sure they&#8217;ve done the best they can. On the other hand this can be a dangerous path to go as you will have time for less projects during a month. If you&#8217;re being paid by the hour your designs will be more expensive than with several other designers and if you&#8217;re paid by the project there&#8217;s a good chance you&#8217;re working a lot for every dollar you get in. The key here is to learn when to say stop and getting more confident in what you do.</p>
<p><strong>The Confident</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23789" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/03-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.sxc.hu/profile/ilco" target="_blank">ilker</a></em></p>
<p>Confident can be good. Actually it&#8217;s very good to some point. The confident designer knows that he&#8217;s doing well and sometimes dares to believe in his own gut feeling when making decisions. Balance is essential though. If you&#8217;re too confident you may be missing some important feedback from the client or not be critical enough to your own work.</p>
<p><strong>The Nervous Wreck</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23790" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/04-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.ephnastie.blogspot.com/" target="_blank">Farmer Stephanie</a></em><strong><br />
</strong></p>
<p>I&#8217;ve met a few designers that are really nervous wrecks. They think that everything they do is bad or that clients will be unhappy with them no matter what they deliver. The confidence level is zero and I&#8217;ve many times thought that it must be really painful to have it this way. For some it can be just a matter of getting some quality feedback or polishing the skills a bit to feel more confident. Ask fellow designers for feedback, read up on what you do and do an evaluation of your routines. Maybe you&#8217;re someone who&#8217;s better off in another job?</p>
<p><strong>The Average Designer</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23791" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/05-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.celalteber.com/" target="_blank">Celal Teber</a></em></p>
<p>As the title says this is the average one. By average I don&#8217;t mean bad, just someone who&#8217;s right there in the middle with thousands of others without standing out much. A lot of us manage well in this segment and get a nice share of projects on a regular basis. These designers live by current trends without daring to take too many risks. They have the basic skills and understanding and usually make an ok living from designing.</p>
<p><strong>The Creative Mess</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23792" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/06-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.bluegumgraphics.com.au/" target="_blank">Richard Dudley</a></em></p>
<p>The creative mess has a lot of ongoing projects simultaneously. He/she often has many projects outside the design terms as well, along with personal projects and dreams &#8211; all in the creative field. This can be a dangerous path to walk down if you&#8217;re not able to get done with what you&#8217;re doing. Try to get balance (the next characteristic) and work on time management. Sometimes it can be hard, but necessary to realise that you can&#8217;t do everything you want always. Priorities have to be made.</p>
<p><strong>The Balanced Creative</strong></p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-23793" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/07-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.sxc.hu/profile/dlnny" target="_blank">Kostya Kisleiko</a></em></p>
<p>This is the succesful version of the creative mess type. With a lot of ongoing projects, this designer knows that it takes priority and hard work. Having multiple projects can be a really good thing and this designer has found the secrets to how to balance all projects in a satisfying way.</p>
<p><strong>The Unique</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23794" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/08-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.sxc.hu/profile/geoX" target="_blank">George Georgiades</a></em><strong><br />
</strong></p>
<p>This designer works more for the design than for the money (usually). A person that focuses on design that is uncommon and rarely seen. He doesn&#8217;t always have enough work but occasionally there comes huge projects along from clients that dare to go for his unique groundbreaking style. Often this designer works part-time.</p>
<p><strong>The Trendsetter</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23795" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/09-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.alessandropaiva.com/" target="_blank">Alessandro Paiva</a></em></p>
<p>Many times the trendsetter can own his own company or work with a bigger one. But these can also be freelancers. This type is the first one to start-up new trends and often has a lot of success. He can choose from many available projects at most times and is well-known in his niche. To be able to stay on top this designer will need to spend a lot of time reading up on what&#8217;s happening in the market, have the latest software and keep the skills polished.</p>
<p><strong>The Ego-tripper</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23796" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/10-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.sxc.hu/profile/raichinger" target="_blank">Robert Aichinger</a></em></p>
<p>Haven&#8217;t we all met them at some point? The designer who believes he is a trend setter or that his designs are absolutely awesome at all times. This person needs to be better to listen to feedback and be more realistic. Instead of attracting clients he will be likely to drive them away. Clients that re-buy are few and he doesn&#8217;t understand why as he is &#8220;perfect&#8221; in his own eyes.</p>
<p><strong>The Copycat</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23797" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/11-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://designer77.com" target="_blank">Hilde Torbjornsen</a></em></p>
<p>There are some designers that copy others work almost for a living sometimes. This will eventually be discovered and is a really bad thing. It gives a horrible reputation and most of these designers have to stop doing business after a short time. The secret is to do your research properly and learn to use trends without copying someone elses work.</p>
<p>﻿﻿<strong>﻿The Lucky One and the Unlucky One</strong></p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-23798" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/12-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.sxc.hu/profile/elkfish" target="_blank">Elke Rohn</a></em><strong><br />
</strong></p>
<p>This is many times more a myth than a fact in my opinion. I&#8217;ve many times hear someone say they don&#8217;t succeed because they have bad luck or that someone else succeeded because they were &#8220;really lucky&#8221;. Obviously you can have good and bad luck with everything you do, that&#8217;s a fact. But using it as an excuse is not the way to go. While some succeed or hit that one client that is great referral or has a lot of money, it all comes down to hard work. The harder you work, the bigger the chance is for success!</p>
<p><strong>Conclusion</strong></p>
<p><strong><img class="aligncenter size-full wp-image-23799" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/13-designer-type.jpg" alt="" width="570" height="300" /></strong></p>
<p style="text-align: center;"><em>Picture by <a target="_blank" href="http://www.sxc.hu/profile/noeska66" target="_blank">Joke van Zomeren</a></em></p>
<p>There are many types of designers, and you&#8217;re probably a combination of several of these. My advice to you is to have a look at these, make up your own opinion and work towards becoming the type you think is the best for you. I&#8217;m sure I&#8217;ve forgotten some characteristics, so feel free to leave your feedback for everyone to hear. By doing things your own way without blaming the situation and working hard instead, you will have a better chance at success!</p>
<p>Good luck!</p>
<p>( Which type are you? )</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=ssZKfiRWXYI:L4YLsRhLL3k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=ssZKfiRWXYI:L4YLsRhLL3k:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=ssZKfiRWXYI:L4YLsRhLL3k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=ssZKfiRWXYI:L4YLsRhLL3k:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/ssZKfiRWXYI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/design/types-of-designers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/design/types-of-designers/</feedburner:origLink></item>
		<item>
		<title>The Ultimate Guide to Getting Started with Zen Cart (Part 2)</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/ELUuPt4nKyQ/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/zen-cart-guide-part-2/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 10:00:51 +0000</pubDate>
		<dc:creator>Kevin Stanley</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[shopping cart]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ZenCart]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23408</guid>
		<description><![CDATA[This article is the continued part 2 version of Getting Started with ZenCart. In part 1 we learned about ZenCart, and it&#8217;s basic files and getting started with the &#8220;Bare Bones&#8221; template. We also learned a little about the admin screen provided by ZenCart. In this part 2 version I will go more in depth [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/tutorials/zen-cart-guide-part-2/"><img class="alignleft size-full wp-image-23470" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zen-cart-logo.jpeg" alt="" width="150" height="150" /></a>This article is the continued part 2 version of<a href="http://www.1stwebdesigner.com/tutorials/beginner-guide-zen-cart-1/"> Getting Started with ZenCart</a>. In part 1 we learned about ZenCart, and it&#8217;s basic files and getting started with the &#8220;Bare Bones&#8221; template. We also learned a little about the admin screen provided by ZenCart. In this part 2 version I will go more in depth about using and customizing ZenCart OpenSource Shopping Cart.<span id="more-23408"></span></p>
<h3>Custom logo of your e-Commerce Store</h3>
<p>First we will go back to our files that we downloaded in part one. Within the header.php file we can see the following code:</p>
<h4>header.php</h4>
<pre class="brush: php;">
// added defines for header alt and text
  define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
  define('HEADER_SALES_TEXT', 'TagLine Here');
  define('HEADER_LOGO_WIDTH', '192px');
  define('HEADER_LOGO_HEIGHT', '64px');
  define('HEADER_LOGO_IMAGE', 'logo.gif');
</pre>
<p>You will notice that the logo width, and height is defined in this area, but we will also need to modify our template .CSS file to make it match to what we add here. This will tell the template what dimensions we want, and the css file will give the matched output. Changing one or the other and not both can sometimes output errors.</p>
<p>The logo image itself is located in the template directory under the &#8220;images&#8221; folder. The filename can be changed if you want, but again must be defined in the header.php file.</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-logo-e1282838309626.jpg"><img class="aligncenter size-full wp-image-23490" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-logo-e1282838309626.jpg" alt="" width="500" height="304" /></a></p>
<h3>The Catalog Menu</h3>
<p>You will be using this option in your admin panel to add and remove or modify products to your store. Though it is pretty straight forward I have still had many clients ask me to help them with it. It seems like if I explain it to someone, then they understand it and can do it themselves, so instead of assuming we can do this part &#8211; I will give a detailed explination. Be sure to make a note that even under the catalog menu, when items are added or modified &#8211; you will always have extra options that appear beside or below each item. I see many people a lot of times miss these extra options, then later wonder where to change something at. Please be sure to take a few minutes to look around on each screen to see what options are available to you.</p>
<p>Here is a list of each of the options available under the Catalog menu:</p>
<p><strong>1. Categories / Products</strong><br />
This is the main part where you can add new categories to your store, and add/change/remove products that you have available for sale. Again, please check all the options available to you when you are under these sub-screens.</p>
<p><strong>2. Product Types</strong><br />
This section will allow you to select a generic type of product you are listing &#8211; Either general, music, or digital download. This section by default is ok to leave alone unless you want to specify products into sub-areas.</p>
<p><strong>3. Products Price Manager</strong><br />
This will be the area you modify prices in your store. You will add the prices when you add a product, but if you wish to modify any of that data later on, then you will need to visit this area to change it.</p>
<p><strong>4. Option Name and Option Value Manager</strong><br />
For changing data that has been input already when adding items.</p>
<p><strong>5. Reviews</strong><br />
This is where users will be leaving reviews and you will be able to moderate it. Check it often and be sure to approve comments and feedback being left by your visitors.</p>
<p><strong>6. Specials</strong><br />
This is the section you will need to visit to add special discount deals to your website. It will display as showing the old price, then the new price highlighted in red to show it is a &#8220;special&#8221; or on sale item. You can set the variables for these items as well as moderate and edit them under this screen.</p>
<p><strong>7. Featured Products</strong><br />
This is the area to add items that you want to be &#8220;featured&#8221; &#8211; If you choose the box under box layout that displays featured items either on your page, or your sidebar, then you can set the specifics for these items under this section. This is a good way to show items you want to sell either on your sidebar or main page. This can also be set to randomly show items each time the page is refreshed.</p>
<p><strong>8. SaleMaker</strong><br />
Make your own sale, and choose how to run it. If you want to make everything 10% off or make it 50% off and last for 3 days then this is the section you need to visit. You can also specify categories and other variables within this page to specifically suit your needs.</p>
<p><strong>9. Products Expected</strong><br />
This will show the items dates that are out of stock and expected back in. These variables can be set from a few different screens and modified under this section. If you are out of inventory on an item and want to change the status to show back in inventory then you will use this screen.</p>
<h2>ZenCart Addon Modules</h2>
<p>Many modules are available for ZenCart. Most of these can be found directly on the ZenCart website. Modules range from PayPal payment addons, to extra sidebar modules. Each of these serves a great purpose and can help out when customizing a ZenCart install. I have found a few modules that I usually install with each website I create with ZenCart. You can browse through the repository of modules by following the link <a target="_blank" href="http://www.zen-cart.com/index.php?cPath=40&amp;main_page=index" target="_blank">[HERE]</a></p>
<p>Here are a few of my favorites:</p>
<p><strong>1. <a target="_blank" href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;cPath=40_51&amp;products_id=889" target="_blank">Flat Rate Clone</a></strong><br />
<strong>2. <a target="_blank" href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;cPath=40_52&amp;products_id=174" target="_blank">Blank Sidebox</a></strong><br />
<strong>3. <a target="_blank" href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;cPath=40_47&amp;products_id=116" target="_blank">Ad Manager</a></strong></p>
<h2>Zen Cart Define Pages Editor</h2>
<p>This is located in the admin panel of your ZenCart install. You can get to it by going to &#8220;tools&#8221; then selecting &#8220;Define Pages Editor&#8221; &#8211; This allows you to select a page and edit it within your ZenCart admin panel. This makes it easy to modify some of your other pages on your website. From here you can add information to your home page, or modify your terms and conditions or even your contact page.</p>
<h4>The defualt available pages to edit are:</h4>
<p><strong> </strong></p>
<p><strong></p>
<ul>
<li>Checkout_Success</li>
<li>Conditions</li>
<li>Contact_Us</li>
<li>Discount_Coupon</li>
<li>Main_Page</li>
<li>Page_2</li>
<li>Page_3</li>
<li>Page_4</li>
<li>Page_not_Found</li>
<li>Privacy</li>
<li>ShippingInfo</li>
<li>Site_map</li>
</ul>
<p></strong></p>
<p>These are all self-explanitory, and when edited through your admin panel will show the changed results on your website. You can also choose to edit via text editor or HTML within your admin panel.</p>
<h2>Zen Cart EZ-Pages</h2>
<p>This is also in the admin panel under the &#8220;tools&#8221; menu option. This is an easy way to create new pages for your website. This option panel will also allow you to select where on your website the pages are located, and where the link to them is displayed. You can use this to create a bio page for your website, or even a different about page to give additional information about your company or website. EZ-Pages makes it very simple to add more to your website without having to code more template files. You can also edit the pages you have already created from here by selecting the &#8220;edit&#8221; button on the right side of the screen after selecting a page.</p>
<h2>Custom Zen Cart Templates</h2>
<p>For those of you looking to create a ZenCart Template or Theme from scratch &#8211; Here is the basic file structure that will need to be followed. You can either copy the default them and modify it from there, or even use the before-mentioned theme &#8220;Bare Bones&#8221; to create one as well. Most theme templates work the same as basic HTML and CSS &#8211; so with good knowledge of both of these you can easily create your own template.</p>
<pre class="brush: php;">
includes/languages/YOUR_TEMPLATE/english.php
includes/languages/english/YOUR_TEMPLATE/index.php
includes/languages/english/YOUR_TEMPLATE/header.php
includes/templates/YOUR_TEMPLATE/template_info.php
includes/templates/YOUR_TEMPLATE/common/tpl_header.php
includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
includes/templates/YOUR_TEMPLATE/images/logo.gif
includes/templates/YOUR_TEMPLATE/css/stylesheet.css
</pre>
<p>Make sure when personalizing a template and creating one, you use the template_info.php file within your theme to tell ZenCart the information it will need for your files. Here is a quick look at the information:</p>
<pre class="brush: php;">
&lt;?php
/**
 * Template Information File
 *
 * @package templateSystem
 * @copyright Copyright 2003-2005 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: template_info.php 2306 2005-11-05 21:34:28Z wilt $
 */
$template_name = 'Bare Bones';
$template_version = 'Version 1.0';
$template_author = 'Rowan Wigginton';
$template_description = 'Completely white with gray outlines.';
$template_screenshot = 'barebones_screenshot.png';
?&gt;
</pre>
<p>The above example shows the name of the template (Which will also be displayed within your admin panel when selecting a template to use) As well as the version number, author, description, and a link to the screenshot. Creating your own template will require a file like the above example to ensure your information is properly processed to work as a template for ZenCart.</p>
<h2>In Closing&#8230;</h2>
<p>I hope everyone has enjoyed this two part article on starting with ZenCart. If there are any questions or requests then feel free to comment below and I will try to help out as much as possible. I have found ZenCart to be VERY powerful and a great opensource shopping cart platform to use on a variety of websites. Thank you for reading!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=ELUuPt4nKyQ:PRv5WqOpSz8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=ELUuPt4nKyQ:PRv5WqOpSz8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=ELUuPt4nKyQ:PRv5WqOpSz8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=ELUuPt4nKyQ:PRv5WqOpSz8:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/ELUuPt4nKyQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/zen-cart-guide-part-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/tutorials/zen-cart-guide-part-2/</feedburner:origLink></item>
		<item>
		<title>5 Killer Ways to Streamline your Coding Efficiency</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/nIpkJDlYPQw/</link>
		<comments>http://www.1stwebdesigner.com/development/streamline-your-coding/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 21:00:01 +0000</pubDate>
		<dc:creator>Matthew Corner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23053</guid>
		<description><![CDATA[I recently read a forum thread about designers and developers, and the hourly rates they charge. One commenter made a great point, saying that you can start to charge more per hour, if you are more efficient, and faster at producing quality work, as long as quality is not compromised for speed. Apart from practice, how can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/development/streamline-your-coding/"><img class="size-full wp-image-23755 alignleft" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/aptanastudio21-e1282940417797.png" alt="" width="150" height="150" /></a>I recently read a forum thread about designers and developers, and the hourly rates they charge. One commenter made a great point, saying that you can start to charge more per hour, if you are more efficient, and faster at producing quality work, as long as quality is not compromised for speed. Apart from practice, how can you actually speed up your coding you may be thinking. Well there are plenty options out there to aid you in doing so.<span id="more-23053"></span></p>
<h3>1. Snippets</h3>
<p><img class="size-medium wp-image-23744 alignright" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/snippely-screenshot-300x236.png" alt="" width="300" height="236" />The first of these is having snippets at your finger tips. Programmers of high-end applications commonly make use of something called a module library; basically a library of pre-written, pre-tested code that can be inserted into their software. The benefits of this isn&#8217;t only faster coding, but faster error checking as well, as you know it is already tested to work. Why shouldn&#8217;t we, as web developers, also be making use of our own version of a module library?</p>
<p>There are pretty much 3 ways snippets can be organised, and used. The first is online, commonly via a website that will store your snippets as a database for everyone to share and use. Here are a few you might want to check out, while I&#8217;m sure there are plenty more quality options out there.</p>
<ul>
<li><a target="_blank" href="http://snipt.net/">http://snipt.net/</a></li>
<li><a target="_blank" href="http://www.smipple.net/">http://www.smipple.net/</a></li>
<li><a target="_blank" href="http://snipplr.com/">http://snipplr.com/</a></li>
<li><a target="_blank" href="http://www.bytemycode.com/">http://www.bytemycode.com/</a></li>
<li><a target="_blank" href="http://snippetsmania.com/">http://snippetsmania.com/</a></li>
</ul>
<p>The second way is to have your own local database of useful snippets at your fingertips, instead of them being out there online, and everyone else&#8217;s being there too. There are plenty applications and so on to cover this, with this short round-up covering just a few.</p>
<ul>
<li><a target="_blank" href="http://code.google.com/p/snippely/">Snippely</a></li>
<li><a target="_blank" href="http://fuelcollective.com/snippet/">Snippet</a></li>
<li><a target="_blank" href="http://myownapp.com/applications/mysnippets/mysnippets.html">mySnippets</a></li>
<li><a target="_blank" href="http://www.macupdate.com/info.php/id/27798/jcodecollector">jCodeCollector</a></li>
<li><a target="_blank" href="http://www.snippetsapp.com/">Snippetsapp</a></li>
</ul>
<h3>2. Text expanders</h3>
<p>The third and possibly best way to make use of your snippets is via a text expander. Think of them as a snippets library application on steroids. Basically, you set up your snippets so that you type a few characters, and then without leaving the keyboard, expand it into your full snippet. It will seriously revolutionise, and drastically increase the way, and speed that you code.</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/add-new-hotstring.png"><img class="aligncenter size-full wp-image-23748" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/add-new-hotstring.png" alt="" width="480" height="212" /></a></p>
<p><a target="_blank" href="http://net.tutsplus.com/articles/news/how-i-can-code-twice-as-fast-as-you/">This article</a>, and screen cast by Jeffrey Way gives you a visual view of the power a text expander puts at your finger tips, and is well worth a read. Having seen what you can achieve, here are several text expander applications that you may want to try out.</p>
<ul>
<li><a target="_blank" href="http://lifehacker.com/software/texter/lifehacker-code-texter-windows-238306.php">Texter</a></li>
<li><a target="_blank" href="http://www.nch.com.au/fastfox/index.html">Fastfox</a></li>
<li><a target="_blank" href="http://smilesoftware.com/TextExpander/">TextExpander</a></li>
<li><a target="_blank" href="http://www.gideonsoftworks.com/snippetmonkey.html">Snippetmonkey</a></li>
<li><a target="_blank" href="http://www.ergonis.com/products/typinator/">Typinator</a></li>
</ul>
<blockquote><p>Editor&#8217;s Note: I highly suggest you to use <a target="_blank" href="http://www.phraseexpress.com/">Phrase Express</a> instead of Texter. A far better option than its competitor.</p></blockquote>
<h3>3. Integrated Development Enviroment (IDE)</h3>
<p>An Integrated Development Environment, or IDE as they are commonly refered to as, is basically like a well-developed environment to code your websites in. <a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/aptana.png"><img class="alignleft size-full wp-image-23749" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/aptana.png" alt="" width="213" height="70" /></a>They often comes with great perks, which help you improve your coding, such as auto closing tags, code hints, and much more.  Lets take Aptana Studios &#8211; my favourite IDE &#8211; as an example by looking at what features it has to offer.</p>
<ul>
<li><strong>HTML, CSS, and JavaScript Code Assist &#8211; </strong>Code Assist helps you author HTML, CSS and JavaScript code more quickly. It supports all HTML elements and properties and generates suggestions and hints for CSS.</li>
<li><strong>JavaScript Debugging &#8211; </strong>Aptana Studio integrates with Firebug for Firefox and Internet Explorer, offering multiple debugging options including breakpoints, stepping through code, DOM inspection, and more.</li>
<li><strong>JavaScript Libraries &#8211; </strong>Support for popular JavaScript libraries and frameworks such as jQuery, prototype, scriptaculous, Ext JS and more. For each you get code assist, importable sample projects, and doc links at your fingertips.</li>
</ul>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/aptanastudio2.png"><img class="aligncenter size-full wp-image-23752" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/aptanastudio2.png" alt="" width="506" height="336" /></a></p>
<ul>
<li><strong>DOM Outline View &#8211; </strong>View and navigate the DOM in this hierarchical outline of your HTML page. Select nodes to jump to that location in the editor. Filter nodes to see collections that match patterns.</li>
<li><strong>File Transfer &amp; Synchronization &#8211; </strong>Support for one-shot as well as keep-synchronized setups. Multiple protocols including FTP, SFTP and FTPS. Ability to automatically publish your websites to selected ISPs and hosting services.</li>
<li><strong>Live Preview &#8211; </strong>Quickly switch between a view of your source code and the rendered HTML page in popular web browsers.</li>
</ul>
<p>Compared to your code editors such as Notepad++ and so on, a web IDE such as this makes coding so much easier, as well as testing and so on. You rarely have to leave your coding environment for anything else! Check out these options below, or ask around to find out about many more, there are plenty out there.</p>
<ul>
<li><a target="_blank" href="http://www.activestate.com/komodo-ide">Komodo IDE</a></li>
<li><a target="_blank" href="http://www.aptana.com/">Aptana</a></li>
<li><a target="_blank" href="http://www.panic.com/coda/">Coda</a></li>
<li><a target="_blank" href="http://macromates.com/">Textmate</a></li>
<li><a target="_blank" href="http://netbeans.org/features/web/index.html">Netbeans</a></li>
</ul>
<h3>4. <a target="_blank" href="http://code.google.com/p/zen-coding/">Zen Coding</a></h3>
<p>Zen Coding is a text editor plugin for many IDE&#8217;s and text editors out there that will seriously change the way you code. Think of it like a text expander, but for any code you want to write. Basically, you write out your blocks of code as css selectors, and then expand them. Zen coding will then swiftly turn this into proper html code! Take this for example.</p>
<pre class="brush: css;">
div#page&gt;div.logo+ul#navigation&gt;li*5&gt;a
</pre>
<p>This code would be turned into a fully fledged logo and navigation html structure for you to work from. Think of the typing, and tabbing time that can be saved across multiple html documents with this!</p>
<pre class="brush: xml;">
&lt;div id=&quot;page&quot;&gt;
&lt;div class=&quot;logo&quot;&gt;&lt;/div&gt;
&lt;ul id=&quot;navigation&quot;&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>Check out <a target="_blank" href="http://vimeo.com/7405114">Zen Coding v0.5</a> from <a target="_blank" href="http://vimeo.com/user2060676">Sergey Chikuyonok</a> on <a target="_blank" href="http://vimeo.com">Vimeo</a> to see live action of Zen Coding.</p>
<p>Zen Coding, as I&#8217;ve already mentioned is available for plenty different applications, including Aptana, Textmate, Coda, Expresso, Komodo Edit, Notepad++ and PSPad, with unofficial support in plenty others. <a target="_blank" href="http://code.google.com/p/zen-coding/">Go get it here!</a></p>
<h3>5. Frameworks</h3>
<p>The final way you may want to improve your coding efficiency is via the use of a framework. There are plenty frameworks out there, for a variety of different things, but some of the main usages are for css layouts and a basic set up for you to start coding with. Think of all those things you type up, and repeat every time yo start a new project, or even a new html or css document. What about grid&#8217;s and class&#8217;s you set up in almost every project you code. Well what if they were already there every-time you started a project, saving you having to type them out again. That&#8217;s what so-called frameworks hope to solve. Some aim at css grids, some aim at having a html base, and so on. Check out some of these below to get an idea.</p>
<ul>
<li><a target="_blank" href="http://easyframework.com/">Easy Framework</a></li>
<li><a target="_blank" href="http://www.blueprintcss.org/">Blueprint Css</a></li>
<li><a target="_blank" href="http://960.gs/">960 Grid System</a></li>
<li><a target="_blank" href="http://lessframework.com/v1/">Less Framework</a></li>
<li><a target="_blank" href="http://html5boilerplate.com/">Html5 Boilerplate</a></li>
</ul>
<h3>Further Discussion</h3>
<p>Know of further ways to improve coding efficiency and speed? Get them down in the comments as always. It&#8217;s always great to get some further insight and thought&#8217;s on subjects such as these.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=nIpkJDlYPQw:wFyp_V4bDXU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=nIpkJDlYPQw:wFyp_V4bDXU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=nIpkJDlYPQw:wFyp_V4bDXU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=nIpkJDlYPQw:wFyp_V4bDXU:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/nIpkJDlYPQw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/development/streamline-your-coding/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/development/streamline-your-coding/</feedburner:origLink></item>
		<item>
		<title>The Ultimate Guide to Getting Started with Zen Cart (Part 1)</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/6Y_jJsbbwvo/</link>
		<comments>http://www.1stwebdesigner.com/tutorials/beginner-guide-zen-cart-1/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 10:00:41 +0000</pubDate>
		<dc:creator>Kevin Stanley</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[shopping cart]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ZenCart]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23382</guid>
		<description><![CDATA[In this article I will be covering the basic installation and functionality of ZenCart eCommerce shopping cart. I have been using ZenCart on clients eCommerce websites for a while and found the most common questions about installing, and modifying along with the most edited files to get you up and running with ZenCart. I will [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/tutorials/beginner-guide-zen-cart-1/"><img class="alignleft size-full wp-image-23470" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zen-cart-logo.jpeg" alt="" width="150" height="150" /></a>In this article I will be covering the basic installation and functionality of ZenCart eCommerce shopping cart. I have been using ZenCart on clients eCommerce websites for a while and found the most common questions about installing, and modifying along with the most edited files to get you up and running with ZenCart. I will also cover some basic theme creation for ZenCart as well. This should be an excellent starting point for everyone looking to setup an online store and create a custom look and feel.<span id="more-23382"></span></p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-e1282833139929.jpg"><img class="aligncenter size-full wp-image-23449" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-e1282833139929.jpg" alt="" width="500" height="275" /></a></p>
<p>When I first started with ZenCart I found myself searching the web trying to find where the most simple things were located. Even for me on the ZenCart website itself I found it hard sometimes to find the simple answers I was looking for. I was looking for basic things like changing the page title, and editing the meta information. These small things seemed so hard to find at first. The more I found myself using ZenCart over the past year I have found out easy ways to change and modify it for each website I have it on. I learned that it actually wasn&#8217;t as hard as I was making it to begin with. Even though you can find most of the information online and different sources, I wanted to make an article that was a central location for doing the main things to install and setup ZenCart.</p>
<h4>First things First</h4>
<p>Now go grab a copy of ZenCart to install on your server. You can download the latest release by visiting here:<br />
<a target="_blank" href="http://www.zen-cart.com/" target="_blank">ZenCart Download</a><br />
This will come with everything you need. The install is pretty straight forward. If there are any technical questions for those of you that have not installed a script of any kind before, then please see the help file documentation or visit the ZenCart website for installation help. I am going to assume that most of us here have installed a script before so I can move on to the good stuff.</p>
<h3>Right After The Installation</h3>
<p>Right after the installation you will now have your script up and running for the first time. You will notice that by visiting your site that you installed it on, there is a lot that seems to need changing. First off the ZenCart logo is in place, and all of the text on the page is aimed at ZenCart with links back to ZenCart. Considering that it&#8217;s free, I don&#8217;t mind seeing it all at first &#8211; But let&#8217;s get started. We will need to select a theme to use, as well as change the front page text, and add our meta information.</p>
<h3>Let&#8217;s Get Started</h3>
<p>To Start, I want to take a look at the file structure. There are a few main files that can be easily edited to modify many different things on our ZenCart powered website. To make it easier on myself I have found that downloading these files and saving them locally allow me to make changes on my desktop, then upload the modified files to my server via FTP to make the changes to my website.</p>
<p>Let&#8217;s start by downloading the following files using your ftp software and logging into your website:</p>
<pre class="brush: php;">
/includes/languages/english/index.php

/includes/languages/english/header.php

/includes/languages/english/meta_tags.php
</pre>
<p>We will do more with these files later one, so be sure to save them where you can access them later on. These files will do most of the setup for your ZenCart installation. I will cover these each in more detail after we choose our theme and get the basic site setup to use.</p>
<h3>Get that Template!</h3>
<p>Now we will choose a theme. I have found one theme that I like the best. It is somewhat of a &#8220;framework&#8221; theme that is very easy to work with, and has always allowed me to make a custom site for every client I have used it for. The theme is called &#8220;Bare Bones&#8221; &#8211; This theme is basic, very easy to modify, and a perfect starting point for a custom ZenCart template. You can download the Bare Bones template by clicking <a target="_blank" href="http://www.zen-cart.com/index.php?main_page=product_contrib_info&amp;cPath=40_53&amp;products_id=281" target="_blank">[HERE]</a></p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/barebones_screenshot-e1282834086614.png"><img class="aligncenter size-full wp-image-23466" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/barebones_screenshot-e1282834086614.png" alt="" width="499" height="284" /></a></p>
<h3>Logging In To your ZenCart Installation</h3>
<p>Now it is time to log in to your admin account of your ZenCart Install. To do this you will visit your website domain name then add the forward slash and &#8220;admin&#8221; &#8211; You can then use your login name and password that you set during the install of ZenCart to access the backend of your store.</p>
<p style="text-align: center;"><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-login-e1282831688874.jpg"><img class="size-full wp-image-23433 aligncenter" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-login-e1282831688874.jpg" alt="" width="400" height="266" /></a></p>
<p>This is where most of your business end will take place. From the Admin panel you can setup the &#8220;Boxes&#8221; or &#8220;Layout&#8221; of your site, as well as add / remove products for your store. We will start with a basic overview of the menu functions and screens to give you an idea of how it all works. First off let&#8217;s go change our template.</p>
<p>To Change your template in ZenCart use the menu and select &#8220;Tools&#8221; then select &#8220;Template Selection&#8221;</p>
<p><a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-template-e1282832283155.jpg"><img class="aligncenter size-full wp-image-23438" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-template-e1282832283155.jpg" alt="" width="500" height="256" /></a></p>
<p>Now you can see the installed templates located on the right hand side of the screen. Selecting &#8220;Edit&#8221; on the right side of the admin panel will allow you to select and change templates within your ZenCart Install. Let&#8217;s select the Bare Bones template we have uploaded and activate it now by selecting &#8220;Update&#8221; below the drop down box.</p>
<h3>Layout of the Site</h3>
<p>Now to choose some layout options. Again at the top of the admin panel menu select &#8220;Tools&#8221; then select &#8220;Layout Boxes Controller&#8221;<br />
<a href="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-layout-boxes-edit.jpg"><img class="aligncenter size-full wp-image-23443" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/zencart-layout-boxes-edit.jpg" alt="" width="500" height="300" /></a><br />
Using this you can add change and remove different options that will be set for your ZenCart powered site. These are some basic functions that include the search option, as well as displaying newly added products. Make sure when you choose to turn the boxes on, you are also editing the options that appear on the right side of the admin panel. This allows you to choose options like where to place the box, and additional options for each individual box being placed on the site.</p>
<h3>Getting Rid of those Banners</h3>
<p>Now to remove the banners that are default with the ZenCart install. Again go to &#8220;Tools&#8221; Then &#8220;Banner Manager&#8221; &#8211; You can then click on each one displayed to de-activate them. You can add your own later if you want, but we will remove these to better help see our website and how to set it up for now.</p>
<h3>Store Configuration</h3>
<p>For this part you may want to spend some time viewing the options yourself. On the menu in the admin panel you can select &#8220;Configuration&#8221; and see the self explanitory options that are all below it. This will be the main area you can setup your store name, and store info. There are many other options that you will want to set under the configuration area. This will ensure your website is personalized to what you need.</p>
<h3>Where are we now?</h3>
<p>Ok, you should have a basic starting point now where your store looks really empty, and you have the files ready to start making it your own. Let&#8217;s go back to the files we downloaded earlier and take a quick look at each one and what they do. This step is important for making your ZenCart powered store SEO friendly, as well as making it custom to suit your needs. First we will look at the index.php file:</p>
<h4>index.php</h4>
<pre class="brush: php;">
php
/**
 * @package languageDefines
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: index.php 6550 2007-07-05 03:54:54Z drbyte $
 */

define('TEXT_MAIN','This is the main define statement for the page for english when no template defined file exists. It is located in: &lt;strong&gt;/includes/languages/english/index.php&lt;/strong&gt;');

// Showcase vs Store
if (STORE_STATUS == '0') {
  define('TEXT_GREETING_GUEST', 'Welcome &lt;span class=&quot;greetUser&quot;&gt;Guest!&lt;/span&gt; Would you like to &lt;a href=&quot;%s&quot;&gt;log yourself in&lt;/a&gt;?');
} else {
  define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
}

define('TEXT_GREETING_PERSONAL', 'Hello &lt;span class=&quot;greetUser&quot;&gt;%s&lt;/span&gt;! Would you like to see our &lt;a href=&quot;%s&quot;&gt;newest additions&lt;/a&gt;?');

define('TEXT_INFORMATION', 'Define your main Index page copy here.');

//moved to english
//define('TABLE_HEADING_FEATURED_PRODUCTS','Featured Products');

//define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');
//define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');
//define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

if ( ($category_depth == 'products') || (zen_check_url_get_terms()) ) {
  // This section deals with product-listing page contents
  define('HEADING_TITLE', 'Available Products');
  define('TABLE_HEADING_IMAGE', 'Product Image');
  define('TABLE_HEADING_MODEL', 'Model');
  define('TABLE_HEADING_PRODUCTS', 'Product Name');
  define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
  define('TABLE_HEADING_QUANTITY', 'Quantity');
  define('TABLE_HEADING_PRICE', 'Price');
  define('TABLE_HEADING_WEIGHT', 'Weight');
  define('TABLE_HEADING_BUY_NOW', 'Buy Now');
  define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');
  define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.');
  define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: ');
  define('TEXT_SHOW', 'Filter Results by:');
  define('TEXT_BUY', 'Buy 1 \'');
  define('TEXT_NOW', '\' now');
  define('TEXT_ALL_CATEGORIES', 'All Categories');
  define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
} elseif ($category_depth == 'top') {
  // This section deals with the &quot;home&quot; page at the top level with no options/products selected
  /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart&amp;trade; E-Commerce Solution.');
} elseif ($category_depth == 'nested') {
  // This section deals with displaying a subcategory
  /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart&amp;trade; E-Commerce Solution.');
}
?&gt;
</pre>
<p>It is easy with this file to remember one golden rule: If it starts with the word &#8220;DEFINE&#8221; then you can change the value for it. Make sure when editing these .php files you keep everything within the single quotes and don&#8217;t overwrite something by accident. It is good practice to back up files and keep local copies as well.</p>
<p>Let&#8217;s check out some of the most basic areas of the index.php file that we will want to change to start personalizing the ZenCart powered site:</p>
<h4>index.php</h4>
<pre class="brush: php;">
define('TEXT_MAIN','This is the main define statement for the page for english when no template defined file exists. It is located in: &lt;strong&gt;/includes/languages/english/index.php&lt;/strong&gt;');

// Showcase vs Store
if (STORE_STATUS == '0') {
  define('TEXT_GREETING_GUEST', 'Welcome &lt;span class=&quot;greetUser&quot;&gt;Guest!&lt;/span&gt; Would you like to &lt;a href=&quot;%s&quot;&gt;log yourself in&lt;/a&gt;?');
} else {
  define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
}

define('TEXT_GREETING_PERSONAL', 'Hello &lt;span class=&quot;greetUser&quot;&gt;%s&lt;/span&gt;! Would you like to see our &lt;a href=&quot;%s&quot;&gt;newest additions&lt;/a&gt;?');

define('TEXT_INFORMATION', 'Define your main Index page copy here.');
</pre>
<p>This is the main page information. You can change it to make it your own to fit your website as you need to. Some of the main page content can also be edited using the &#8220;Page Editor&#8221; from the admin panel &#8211; but for now we will stick to doing it this way. You will notice some of the text that is located in the above code, also displays within your website on the homepage.</p>
<p>The lower portion of this file contains more areas you can define. Some of these are more detailed. Let&#8217;s take a look at it:</p>
<h4>index.php</h4>
<pre class="brush: php;">
if ( ($category_depth == 'products') || (zen_check_url_get_terms()) ) {
  // This section deals with product-listing page contents
  define('HEADING_TITLE', 'Available Products');
  define('TABLE_HEADING_IMAGE', 'Product Image');
  define('TABLE_HEADING_MODEL', 'Model');
  define('TABLE_HEADING_PRODUCTS', 'Product Name');
  define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
  define('TABLE_HEADING_QUANTITY', 'Quantity');
  define('TABLE_HEADING_PRICE', 'Price');
  define('TABLE_HEADING_WEIGHT', 'Weight');
  define('TABLE_HEADING_BUY_NOW', 'Buy Now');
  define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');
  define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.');
  define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: ');
  define('TEXT_SHOW', 'Filter Results by:');
  define('TEXT_BUY', 'Buy 1 \'');
  define('TEXT_NOW', '\' now');
  define('TEXT_ALL_CATEGORIES', 'All Categories');
  define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
} elseif ($category_depth == 'top') {
  // This section deals with the &quot;home&quot; page at the top level with no options/products selected
  /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart&amp;trade; E-Commerce Solution.');
} elseif ($category_depth == 'nested') {
  // This section deals with displaying a subcategory
  /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart&amp;trade; E-Commerce Solution.');
}
?&gt;
</pre>
<p>These defined objects will allow you to change the terms used on the website such as &#8220;weight&#8221; &#8211; &#8220;product name&#8221; &#8211; &#8220;price&#8221; and etc. If you wanted them to display differently you could simply change the name within the single quotes and it will display that way on your website.</p>
<p>Below this list of defined objects you will see where there are two titles available to change. Both are located on your website homepage.</p>
<h4>index.php</h4>
<pre class="brush: php;">
} elseif ($category_depth == 'top') {
  // This section deals with the &quot;home&quot; page at the top level with no options/products selected
  /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart&amp;trade; E-Commerce Solution.');
} elseif ($category_depth == 'nested') {
  // This section deals with displaying a subcategory
  /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
  define('HEADING_TITLE', 'Congratulations! You have successfully installed your Zen Cart&amp;trade; E-Commerce Solution.');
</pre>
<p>Changing the values for these will change more information on your homepage. Setting these to give custom welcome messages are a good start to customizing your ZenCart install. This is all a good starting point to setting up your online store.</p>
<h2>Moving On</h2>
<p>Next we will take a look at the header.php file we downloaded.</p>
<h4>header.php</h4>
<pre class="brush: php;">
&lt;?php
/**
 * @package languageDefines
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: header.php 2940 2006-02-02 04:29:05Z drbyte $
 */

// header text in includes/header.php
  define('HEADER_TITLE_CREATE_ACCOUNT', 'Create Account');
  define('HEADER_TITLE_MY_ACCOUNT', 'My Account');
  define('HEADER_TITLE_CART_CONTENTS', 'Shopping Cart');
  define('HEADER_TITLE_CHECKOUT', 'Checkout');
  define('HEADER_TITLE_TOP', 'Top');
  define('HEADER_TITLE_CATALOG', 'Home');
  define('HEADER_TITLE_LOGOFF', 'Log Out');
  define('HEADER_TITLE_LOGIN', 'Log In');

// added defines for header alt and text
  define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
  define('HEADER_SALES_TEXT', 'TagLine Here');
  define('HEADER_LOGO_WIDTH', '192px');
  define('HEADER_LOGO_HEIGHT', '64px');
  define('HEADER_LOGO_IMAGE', 'logo.gif');

// header Search Button/Box Search Button
  define('HEADER_SEARCH_BUTTON','Search');
  define('HEADER_SEARCH_DEFAULT_TEXT', 'Enter search keywords here');

?&gt;
</pre>
<p>Using this file we can change our header text, our search field text as well as the search button itself, and the logo for our website. Titles are defined in this file for use across the store. We will get more into changing the logo and customizing the header later on. Let&#8217;s look at the other files we have downloaded:</p>
<h4>Meta_Tags.php</h4>
<pre class="brush: php;">
&lt;?php
/**
 * @package languageDefines
 * @copyright Copyright 2003-2008 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: meta_tags.php 10330 2008-10-10 20:14:32Z drbyte $
 */

// page title
define('TITLE', 'Zen Cart!');

// Site Tagline
define('SITE_TAGLINE', 'The Art of E-commerce');

// Custom Keywords
define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');

// Home Page Only:
  define('HOME_PAGE_META_DESCRIPTION', '');
  define('HOME_PAGE_META_KEYWORDS', '');

  // NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
  define('HOME_PAGE_TITLE', ''); // usually best left blank

// EZ-Pages meta-tags.  Follow this pattern for all ez-pages for which you desire custom metatags. Replace the # with ezpage id.
// If you wish to use defaults for any of the 3 items for a given page, simply do not define it.
// (ie: the Title tag is best not set, so that site-wide defaults can be used.)
// repeat pattern as necessary
  define('META_TAG_DESCRIPTION_EZPAGE_#','');
  define('META_TAG_KEYWORDS_EZPAGE_#','');
  define('META_TAG_TITLE_EZPAGE_#', '');

// Per-Page meta-tags. Follow this pattern for individual pages you wish to override. This is useful mainly for additional pages.
// replace &quot;page_name&quot; with the UPPERCASE name of your main_page= value, such as ABOUT_US or SHIPPINGINFO etc.
// repeat pattern as necessary
  define('META_TAG_DESCRIPTION_page_name','');
  define('META_TAG_KEYWORDS_page_name','');
  define('META_TAG_TITLE_page_name', '');

// Review Page can have a lead in:
  define('META_TAGS_REVIEW', 'Reviews: ');

// separators for meta tag definitions
// Define Primary Section Output
  define('PRIMARY_SECTION', ' : ');

// Define Secondary Section Output
  define('SECONDARY_SECTION', ' - ');

// Define Tertiary Section Output
  define('TERTIARY_SECTION', ', ');

// Define divider ... usually just a space or a comma plus a space
  define('METATAGS_DIVIDER', ' ');

// Define which pages to tell robots/spiders not to index
// This is generally used for account-management pages or typical SSL pages, and usually doesn't need to be touched.
  define('ROBOTS_PAGES_TO_SKIP','login,logoff,create_account,account,account_edit,account_history,account_history_info,account_newsletters,account_notifications,account_password,address_book,advanced_search,advanced_search_result,checkout_success,checkout_process,checkout_shipping,checkout_payment,checkout_confirmation,cookie_usage,create_account_success,contact_us,download,download_timeout,customers_authorization,down_for_maintenance,password_forgotten,time_out,unsubscribe,info_shopping_cart,popup_image,popup_image_additional,product_reviews_write,ssl_check');

// favicon setting
// There is usually NO need to enable this unless you need to specify a path and/or a different filename
//  define('FAVICON','favicon.ico');

?&gt;
</pre>
<p>There are a few main things we will change in the meta_tags.php file.</p>
<pre class="brush: php;">
// page title
define('TITLE', 'Zen Cart!');

// Site Tagline
define('SITE_TAGLINE', 'The Art of E-commerce');

// Custom Keywords
define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');
</pre>
<p>The above code is what will help with SEO for your ZenCart powered site. Changing the page title, tagline, and adding keywords is very important. This will help your site be seen later by search engines and also to display to visitors what your website is and has to offer.</p>
<p>The other thing I want to point out within the meta_tags.php file is the favicon. The favicon image is the tiny icon that appears on your toolbar next to where you type your http://www -</p>
<p>This area at the bottom of the meta_tags.php defines that for us, so we can easily add a favicon.ico image to be displayed on our site:</p>
<h4>Meta_Tags.php</h4>
<pre class="brush: php;">
// favicon setting
// There is usually NO need to enable this unless you need to specify a path and/or a different filename
//  define('FAVICON','favicon.ico');
</pre>
<h3>So What is Next?</h3>
<p><strong>Next in part two I will cover the following items:</strong></p>
<p>1. Adding a custom logo to your ZenCart powered website.</p>
<p>2. The catalog menu for adding products to your website.</p>
<p>3. Extra addon modules available and how to edit them.</p>
<p>4. Define Pages Editor for custom pages</p>
<p>5. Custom Templates and File Structure of templates</p>
<p>Stay tuned for the second part of this tutorial. If there is something else you would like to see or if you have any questions then feel free to comment below. I will respond and help out as much as I can. I hope everyone enjoys!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=6Y_jJsbbwvo:Nqq-ju9FzDs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=6Y_jJsbbwvo:Nqq-ju9FzDs:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=6Y_jJsbbwvo:Nqq-ju9FzDs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=6Y_jJsbbwvo:Nqq-ju9FzDs:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/6Y_jJsbbwvo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/tutorials/beginner-guide-zen-cart-1/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/tutorials/beginner-guide-zen-cart-1/</feedburner:origLink></item>
		<item>
		<title>Going Green with 75 Amazing Nature Friendly Logos</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/MwJnOkc_kb8/</link>
		<comments>http://www.1stwebdesigner.com/inspiration/green-nature-friendly-logos/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 10:00:48 +0000</pubDate>
		<dc:creator>Hilde Torbjornsen</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[green]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[showcase]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=23051</guid>
		<description><![CDATA[Logo design showcases are quite popular these days, and it&#8217;s understandable as they come in all shapes and colors. Looking at how designers can take a complex message and turning it into a simple logo can be very inspiring to any designer. This time I&#8217;ve made a collection of green logos. Many have an eco-theme [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/inspiration/green-nature-friendly-logos/"><img class="alignleft size-full wp-image-23682" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/title-great-green-logos.jpg" alt="" width="150" height="150" /></a>Logo design showcases are quite popular these days, and it&#8217;s understandable as they come in all shapes and colors. Looking at how designers can take a complex message and turning it into a simple logo can be very inspiring to any designer. This time I&#8217;ve made a collection of green logos. Many have an eco-theme while others are just green because it&#8217;s a cool and fresh color.</p>
<p><span id="more-23051"></span></p>
<p>Now let&#8217;s have a look at some of the great work we&#8217;ve found for you this time.</p>
<p>Enjoy!</p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/52210" target="_blank"><img class="aligncenter size-full wp-image-23606" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/01-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/25632" target="_blank"><img class="aligncenter size-full wp-image-23607" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/02-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/64310" target="_blank"><img class="aligncenter size-full wp-image-23608" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/03-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/58357" target="_blank"><img class="aligncenter size-full wp-image-23609" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/04-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/73456" target="_blank"><img class="aligncenter size-full wp-image-23610" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/05-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/11381" target="_blank"><img class="aligncenter size-full wp-image-23611" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/06-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/85948" target="_blank"><img class="aligncenter size-full wp-image-23612" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/07-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/104130" target="_blank"><img class="aligncenter size-full wp-image-23613" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/08-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/87883" target="_blank"><img class="aligncenter size-full wp-image-23614" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/09-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/107244" target="_blank"><img class="aligncenter size-full wp-image-23615" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/11-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/113256" target="_blank"><img class="aligncenter size-full wp-image-23616" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/12-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/85744" target="_blank"><img class="aligncenter size-full wp-image-23617" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/13-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/107244" target="_blank"><img class="aligncenter size-full wp-image-23618" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/10-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/105196" target="_blank"><img class="aligncenter size-full wp-image-23619" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/14-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/64187" target="_blank"><img class="aligncenter size-full wp-image-23620" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/15-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/69223" target="_blank"><img class="aligncenter size-full wp-image-23621" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/16-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/58147" target="_blank"><img class="aligncenter size-full wp-image-23622" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/17-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/40812" target="_blank"><img class="aligncenter size-full wp-image-23623" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/18-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/66034" target="_blank"><img class="aligncenter size-full wp-image-23624" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/19-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/87330" target="_blank"><img class="aligncenter size-full wp-image-23625" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/20-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/93067" target="_blank"><img class="aligncenter size-full wp-image-23626" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/21-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/83790" target="_blank"><img class="aligncenter size-full wp-image-23627" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/22-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/82308" target="_blank"><img class="aligncenter size-full wp-image-23628" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/23-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/72107" target="_blank"><img class="aligncenter size-full wp-image-23629" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/24-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/76208" target="_blank"><img class="aligncenter size-full wp-image-23630" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/25-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/87604" target="_blank"><img class="aligncenter size-full wp-image-23631" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/26-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/72842" target="_blank"><img class="aligncenter size-full wp-image-23632" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/27-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/80979" target="_blank"><img class="aligncenter size-full wp-image-23633" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/28-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/83025" target="_blank"><img class="aligncenter size-full wp-image-23634" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/29-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/22751" target="_blank"><img class="aligncenter size-full wp-image-23635" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/30-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/71711" target="_blank"><img class="aligncenter size-full wp-image-23636" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/31-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/25471" target="_blank"><img class="aligncenter size-full wp-image-23637" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/32-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/39564" target="_blank"><img class="aligncenter size-full wp-image-23638" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/33-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/70176" target="_blank"><img class="aligncenter size-full wp-image-23639" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/34-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/68094" target="_blank"><img class="aligncenter size-full wp-image-23640" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/35-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/60808" target="_blank"><img class="aligncenter size-full wp-image-23641" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/36-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/83375" target="_blank"><img class="aligncenter size-full wp-image-23642" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/37-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/23170" target="_blank"><img class="aligncenter size-full wp-image-23643" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/38-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/79395" target="_blank"><img class="aligncenter size-full wp-image-23644" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/39-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/91142" target="_blank"><img class="aligncenter size-full wp-image-23645" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/40-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/11960" target="_blank"><img class="aligncenter size-full wp-image-23646" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/41-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/9003" target="_blank"><img class="aligncenter size-full wp-image-23647" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/42-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/23177" target="_blank"><img class="aligncenter size-full wp-image-23648" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/43-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/79383" target="_blank"><img class="aligncenter size-full wp-image-23649" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/44-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/29374" target="_blank"><img class="aligncenter size-full wp-image-23650" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/45-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/38573" target="_blank"><img class="aligncenter size-full wp-image-23651" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/46-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/45226" target="_blank"><img class="aligncenter size-full wp-image-23652" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/47-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/33257" target="_blank"><img class="aligncenter size-full wp-image-23653" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/48-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/44319" target="_blank"><img class="aligncenter size-full wp-image-23654" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/49-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/11295" target="_blank"><img class="aligncenter size-full wp-image-23655" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/50-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/16818" target="_blank"><img class="aligncenter size-full wp-image-23656" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/51-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/12286" target="_blank"><img class="aligncenter size-full wp-image-23657" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/52-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/70697" target="_blank"><img class="aligncenter size-full wp-image-23658" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/53-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/109697" target="_blank"><img class="aligncenter size-full wp-image-23659" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/54-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/44603" target="_blank"><img class="aligncenter size-full wp-image-23660" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/55-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/33904" target="_blank"><img class="aligncenter size-full wp-image-23661" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/56-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/42039" target="_blank"><img class="aligncenter size-full wp-image-23662" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/57-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/27572" target="_blank"><img class="aligncenter size-full wp-image-23663" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/58-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/30597" target="_blank"><img class="aligncenter size-full wp-image-23664" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/59-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/39771" target="_blank"><img class="aligncenter size-full wp-image-23665" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/60-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/5065" target="_blank"><img class="aligncenter size-full wp-image-23666" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/61-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/42308" target="_blank"><img class="aligncenter size-full wp-image-23667" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/62-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/87284" target="_blank"><img class="aligncenter size-full wp-image-23668" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/63-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/17534" target="_blank"><img class="aligncenter size-full wp-image-23669" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/64-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/52158" target="_blank"><img class="aligncenter size-full wp-image-23670" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/65-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/98871" target="_blank"><img class="aligncenter size-full wp-image-23671" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/66-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/51208" target="_blank"><img class="aligncenter size-full wp-image-23672" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/67-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/29608" target="_blank"><img class="aligncenter size-full wp-image-23673" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/68-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/56336" target="_blank"><img class="aligncenter size-full wp-image-23674" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/69-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/22737" target="_blank"><img class="aligncenter size-full wp-image-23675" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/70-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/30923" target="_blank"><img class="aligncenter size-full wp-image-23676" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/71-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/92514" target="_blank"><img class="aligncenter size-full wp-image-23677" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/72-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/102327" target="_blank"><img class="aligncenter size-full wp-image-23678" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/73-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/23334" target="_blank"><img class="aligncenter size-full wp-image-23679" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/74-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p><a target="_blank" href="http://logopond.com/gallery/detail/55081" target="_blank"><img class="aligncenter size-full wp-image-23680" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/75-great-green-logos.jpg" alt="" width="325" height="260" /></a></p>
<p>We hope you&#8217;ve enjoyed this collection of 75 green logos. As usual we would love to hear your opinion in the comments, and remember to share the article if you liked it.</p>
<p>Thanks!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=MwJnOkc_kb8:DmMoRHaWASc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=MwJnOkc_kb8:DmMoRHaWASc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=MwJnOkc_kb8:DmMoRHaWASc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=MwJnOkc_kb8:DmMoRHaWASc:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/MwJnOkc_kb8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/inspiration/green-nature-friendly-logos/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/inspiration/green-nature-friendly-logos/</feedburner:origLink></item>
		<item>
		<title>Get Inspired: Beautiful Examples of Textures in Web Design</title>
		<link>http://feedproxy.google.com/~r/1stwebdesigner/~3/y1IhvylhRho/</link>
		<comments>http://www.1stwebdesigner.com/inspiration/textures-web-designs-inspiration/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 10:00:18 +0000</pubDate>
		<dc:creator>Ari Suardiyanti</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[doodle]]></category>
		<category><![CDATA[elegant]]></category>
		<category><![CDATA[grunge]]></category>
		<category><![CDATA[textures]]></category>
		<category><![CDATA[vintage]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.1stwebdesigner.com/?p=22591</guid>
		<description><![CDATA[Whenever you visit website these days, every single one of them is trying to compete one and another. Despite the difference of products or services they offer, their mission remain the same: to engage their visitor or customer. If you find adding big text, icons, or illustrations on web design isn&#8217;t so entertaining anymore, let&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/inspiration/textures-web-designs-inspiration/"><img class="alignleft size-full wp-image-23032" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/post-thumbnail.png" alt="" width="150" height="150" /></a>Whenever you visit website these days, every single one of them is trying to compete one and another. Despite the difference of products or services they offer, their mission remain the same: to engage their visitor or customer. If you find adding big text, icons, or illustrations on web design isn&#8217;t so entertaining anymore, let&#8217;s add textures.</p>
<p>Some web designs use solid or gradient colors as their background, others use illustration to make it look attractive. As for textures, you can add it as the background of a web design, create a certain effect on the text, or even add it to the buttons or other web graphic elements. In this post, we will show you 5 types of texture in web design for your inspiration.<span id="more-22591"></span></p>
<h2>Vintage</h2>
<p>Retro/Vintage look is timeless. It may look old, but somehow this texture always get our attention and appreciation. Most web designers will use this type of texture to create the warm feel, others use it for travel and tour sites with Polaroid as the images frames.</p>
<h3><a target="_blank" href="http://www.ernesthemingwaycollection.com/">Ernest Hemingway Collection</a></h3>
<p><a target="_blank" href="http://www.ernesthemingwaycollection.com/"><img class="aligncenter size-full wp-image-22690" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/v1.jpg" alt="" width="570" height="693" /></a></p>
<h3><a target="_blank" href="http://www.dhcards.com/">Dog House Cards</a></h3>
<p><a target="_blank" href="http://www.dhcards.com/"><img class="aligncenter size-full wp-image-22691" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/v2.jpg" alt="" width="570" height="434" /></a></p>
<h3><a target="_blank" href="http://Fedrick.deviantart.com/art/Vintage-Web-44320007">Vintage Web</a></h3>
<p><a target="_blank" href="http://fedrick.deviantart.com/art/Vintage-Web-44320007"><img class="aligncenter size-full wp-image-22693" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Vintage_Web_by_Fedrick.jpeg" alt="" width="570" height="427" /></a></p>
<h3><a target="_blank" href="http://Fedrick.deviantart.com/art/The-Big-Chandelier-web-67967519">The Big Chandelier Web</a></h3>
<p><a target="_blank" href="http://fedrick.deviantart.com/art/The-Big-Chandelier-web-67967519"><img class="aligncenter size-full wp-image-22694" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/c0a97ac7a563237981d7a2a957244ae1.jpeg" alt="" width="570" height="427" /></a></p>
<h3><a target="_blank" href="http://corvusart.com/">Corvus Art</a></h3>
<p><a target="_blank" href="http://corvusart.com/"><img class="aligncenter size-full wp-image-22699" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Award-Winning-Web-Design-San-Luis-Obispo-California-Web-Designer-20100819.jpg" alt="" width="570" height="1007" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/The-Foggy-Goggle-Website/170934">The Foggy Google</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/The-Foggy-Goggle-Website/170934"><img class="aligncenter size-full wp-image-22955" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/891841235813110.jpeg" alt="" width="570" height="456" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/The-Cowboy-Star-Website-Design/524437">The Cowboy Star</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/The-Cowboy-Star-Website-Design/524437"><img class="aligncenter size-full wp-image-22961" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/1338721274914490.jpeg" alt="" width="570" height="433" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/North-Point-Springfield-MO/91356">North Point Springfield</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/North-Point-Springfield-MO/91356"><img class="aligncenter size-full wp-image-22969" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/728951210532959.jpeg" alt="" width="570" height="414" /></a></p>
<h3><a target="_blank" href="http://www.teamfannypack.com/" target="_blank">Team Fannypack</a></h3>
<p><a target="_blank" href="http://www.teamfannypack.com/"><img class="aligncenter size-full wp-image-22980" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Team-Fannypack-Making-Dreams-Come-True-One-Fannypack-at-a-Time-20100822.jpg" alt="" width="570" height="495" /></a></p>
<h3><a target="_blank" href="http://www.fivecentstand.com/" target="_blank">fivecentstand.com</a></h3>
<p><a target="_blank" href="http://www.fivecentstand.com/"><img class="aligncenter size-full wp-image-22981" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/retrosites16.jpeg" alt="" width="570" height="291" /></a></p>
<h2>Grunge</h2>
<p>To avoid the &#8220;Web 2.0&#8243; style, web designers use grunge texture to gives their design a less uniform, less structured, more organic look and feel. It doesn&#8217;t necessarily stand for dirty, though it&#8217;s easily recognized by the gritty texture, uneven/torn edges, worn, faded and aged graphic elements. This texture is best to use on any extreme sport, rock band, or any web design whose target is young people.</p>
<h3><a target="_blank" href="http://www.behance.net/gallery/The-Third-Floor-Rebrand/180859">The Third Floor</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/The-Third-Floor-Rebrand/180859"><img class="aligncenter size-full wp-image-22960" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-22_23.18.25.jpg" alt="" width="570" height="360" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/_-jazzsequence-_/269639">Jazz Sequence</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/_-jazzsequence-_/269639"><img class="aligncenter size-full wp-image-22965" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/1156521248149161.jpeg" alt="" width="570" height="375" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Renovatus/112374">Renovatus</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Renovatus/112374"><img class="aligncenter size-full wp-image-22974" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/728951217386322.jpeg" alt="" width="570" height="570" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Web-Design/580157">Target Productions</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Web-Design/580157"><img class="aligncenter size-full wp-image-22984" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/5f6fa0239262273174b95e30dea92697.jpeg" alt="" width="570" height="304" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Snickers--Online-Campaign/159618">Snickers Online Campaign</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Snickers--Online-Campaign/159618"><img class="aligncenter size-full wp-image-22985" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/896571229554434.jpeg" alt="" width="570" height="367" /></a></p>
<h3><a target="_blank" href="http://www.cogitatur.pl/">Cogitatur</a></h3>
<p><a target="_blank" href="http://www.cogitatur.pl/"><img class="aligncenter size-full wp-image-22992" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Cogitatur-screen-shot.jpeg" alt="" width="570" height="434" /></a></p>
<h3><a target="_blank" href="http://generationchurch.org/">Generation Church</a></h3>
<p><a target="_blank" href="http://generationchurch.org/"><img class="aligncenter size-full wp-image-22993" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.22.57.jpg" alt="" width="570" height="374" /></a></p>
<h3><a target="_blank" href="http://www.somacommunities.org/">Soma Communities</a></h3>
<p><a target="_blank" href="http://www.somacommunities.org/"><img class="aligncenter size-full wp-image-22994" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Soma-Communities-20100823.jpg" alt="" width="570" height="678" /></a></p>
<h3><a target="_blank" href="http://www.sourcebits.com/tangleddecals/">Sourcebit</a></h3>
<p><a target="_blank" href="http://www.sourcebits.com/tangleddecals/"><img class="aligncenter size-full wp-image-22995" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.27.49.jpg" alt="" width="570" height="313" /></a></p>
<h3><a target="_blank" href="http://sycfuk.com/">Syc Fuk Fashion</a></h3>
<p><a target="_blank" href="http://sycfuk.com/"><img class="aligncenter size-full wp-image-22997" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/syc-fuk-fashion-201008231.jpg" alt="" width="570" height="998" /></a></p>
<h3>Elegant</h3>
<p>If you&#8217;re planning to create an elegant look for a web design, using a texture can be an alternative to make it more appealing. Though, you have to be selective in choosing the texture. Subtle textures work best for this type of look, although sometimes you can also use leather, wood, or even fabric texture.</p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Marcus-James-hotsite/496806">Marcus James Wine</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Marcus-James-hotsite/496806"><img class="aligncenter size-full wp-image-22954" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/14602312724864661.jpeg" alt="" width="570" height="350" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Abundant-Life-Christian-Center/200411">Abundant Life Christian Center</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Abundant-Life-Christian-Center/200411"><img class="aligncenter size-full wp-image-22972" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/728951237860879.jpeg" alt="" width="570" height="570" /></a></p>
<h3><a target="_blank" href="http://www.outline2design.com/">Outline to Design</a></h3>
<p><a target="_blank" href="http://www.outline2design.com/"><img class="aligncenter size-full wp-image-23005" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/OUTLINE-to-DESIGN-service.-What-You-Need-Is-What-You-Get.-Web-Identity-Print-Design-Which-Meets-Expectations.-20100823.jpg" alt="" width="570" height="523" /></a></p>
<h3><a target="_blank" href="http://www.mhq.nl/">Merten Snijders, Mhq Interactive 2007</a></h3>
<p><a target="_blank" href="http://www.mhq.nl/"><img class="aligncenter size-full wp-image-23006" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.53.11.jpg" alt="" width="570" height="432" /></a></p>
<h3><a target="_blank" href="http://www.sarahlongnecker.com/">Sarahlongnecker.com</a></h3>
<p><a target="_blank" href="http://www.saddlebackleather.com/"><img class="aligncenter size-full wp-image-23007" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.57.44.jpg" alt="" width="570" height="342" /></a></p>
<h3><a target="_blank" title="Go to Pizza Venetia" href="http://www.pizza-venetia.ro/">Pizza Venetia</a></h3>
<p><a target="_blank" href="http://www.pizza-venetia.ro/"><img class="aligncenter size-full wp-image-23008" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Pizza-Venetia-Restaurant-cu-livrare-in-Bucuresti-20100823.jpg" alt="" width="570" height="483" /></a></p>
<h3><a target="_blank" title="Go to Moore Family Heritage Project" href="http://www.mooreheritage.com/">Moore Family Heritage Project</a></h3>
<p><a target="_blank" href="http://www.mooreheritage.com/"><img class="aligncenter size-full wp-image-23012" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_01.07.41.jpg" alt="" width="570" height="358" /></a></p>
<h3><a target="_blank" href="http://www.caferouge.co.uk/">Café Rouge</a></h3>
<p><a target="_blank" href="http://www.caferouge.co.uk/"><img class="aligncenter size-full wp-image-23013" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Café-Rouge-Restaurant-Bar-Café-20100823.jpg" alt="" width="570" height="494" /></a></p>
<h3><a target="_blank" href="http://www.eastpoint.org/">East Point</a></h3>
<p><a target="_blank" href="http://www.eastpoint.org/"><img class="aligncenter size-full wp-image-23016" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Eastpoint-Community-Church-20100823.jpg" alt="" width="570" height="431" /></a></p>
<h3><a target="_blank" href="http://www.playintraffik.com/">Traffik</a></h3>
<p><a target="_blank" href="http://www.playintraffik.com/"><img class="aligncenter size-full wp-image-23015" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Content-Management-System-for-Designers-and-Businesses-Traffik-20100823.jpg" alt="" width="570" height="765" /></a></p>
<h2>Doodle</h2>
<p>Doodle look is another alternative for your web design. Most graphic designer and illustrator will prefer to use this look in order to blend their portfolio into the web design. Although sometimes it creates the childish look, but for the creatives like illustrator it&#8217;s smart and unique.</p>
<h3><a target="_blank" href="http://www.sointeractive.pl/">So Interactive</a></h3>
<p><a target="_blank" href="http://www.sointeractive.pl/"><img class="aligncenter size-full wp-image-22752" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-20_12.20.05.jpg" alt="" width="570" height="294" /></a></p>
<h3><a target="_blank" href="http://instantadlegend.com/">Instand Ad Legend</a></h3>
<p><a target="_blank" href="http://instantadlegend.com/"><img class="aligncenter size-full wp-image-22753" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-20_12.39.13.jpg" alt="" width="570" height="318" /></a></p>
<h3><a target="_blank" href="http://www.allendesigngroup.com/">Allen Design Group</a></h3>
<p><a target="_blank" href="http://www.allendesigngroup.com/"><img class="aligncenter size-full wp-image-22756" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-20_12.45.061.jpg" alt="" width="570" height="325" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Yok-boyle-bir-yer/386662">Yok Boyle Bir Yer</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Yok-boyle-bir-yer/386662"><img class="aligncenter size-full wp-image-22983" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/706921263078247.jpeg" alt="" width="570" height="636" /></a></p>
<h3><a target="_blank" href="http://www.ceynur.com/">Ceynur</a></h3>
<p><a target="_blank" href="http://www.ceynur.com/"><img class="aligncenter size-full wp-image-22990" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.12.03.jpg" alt="" width="570" height="302" /></a></p>
<h3><a target="_blank" href="http://sketch.odopod.com/">Odosketch</a></h3>
<p><a target="_blank" href="http://sketch.odopod.com/"><img class="aligncenter size-full wp-image-22999" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/odosketch-20100823.jpg" alt="" width="570" height="522" /></a></p>
<h3><a target="_blank" href="http://www.dawghousedesignstudio.com/">Dawghouse Design Studio</a></h3>
<p><a target="_blank" href="http://www.dawghousedesignstudio.com/"><img class="aligncenter size-full wp-image-23000" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.38.29.jpg" alt="" width="570" height="323" /></a></p>
<h3><a target="_blank" href="http://www.legworkstudio.com/">Legwork Studio</a></h3>
<p><a target="_blank" href="http://www.legworkstudio.com/"><img class="aligncenter size-full wp-image-23001" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.41.48.jpg" alt="" width="570" height="319" /></a></p>
<h3><a target="_blank" href="http://10words.richpurple.com/">10 Words</a></h3>
<p><a target="_blank" href="http://10words.richpurple.com/"><img class="aligncenter size-full wp-image-23002" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/10Words-RichPurple-20100823.jpg" alt="" width="570" height="478" /></a></p>
<h3><a target="_blank" href="http://www.suiepaparude.ro/">Suiepaparude</a></h3>
<p><a target="_blank" href="http://www.suiepaparude.ro/"><img class="aligncenter size-full wp-image-23003" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/2010-08-23_00.46.18.jpg" alt="" width="570" height="317" /></a></p>
<h2>Miscellaneous</h2>
<p>In some case, one type of look may not be enough. There are no limit in web design. So be creative, mix several types of look by using textures for the design.</p>
<h3><a target="_blank" href="http://naseemhaider.deviantart.com/art/Grunge-retro-175174717">Grunge Retro</a></h3>
<p><a target="_blank" href="http://naseemhaider.deviantart.com/art/Grunge-retro-175174717"><img class="aligncenter size-full wp-image-22695" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Grunge_retro_by_naseemhaider.jpg" alt="" width="570" height="813" /></a></p>
<h3><a target="_blank" href="http://www.tvrdek.cz/en">Tvrdek</a></h3>
<p><a target="_blank" href="http://www.tvrdek.cz/en"><img class="aligncenter size-full wp-image-22697" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Jiri-Tvrdek-Web-Graphic-Designer-Online-portfolio-20100819.jpg" alt="" width="570" height="1229" /></a></p>
<h3><a target="_blank" href="http://www.narfstuff.co.uk/">NarStuff</a></h3>
<p><a target="_blank" href="http://www.narfstuff.co.uk/"><img class="aligncenter size-full wp-image-22698" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Narfstuff-Wordpress-Development-Web-and-Graphic-Design-20100819.jpg" alt="" width="570" height="599" /></a></p>
<h3><a target="_blank" href="http://www.jayhafling.com/">Jay Hafling</a></h3>
<p><a target="_blank" href="http://www.jayhafling.com/"><img class="aligncenter size-full wp-image-22701" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/Jay-Hafling-Freelance-web-designer-Wordpress-themes-developer-Wordpress-designer-20100819.jpg" alt="" width="570" height="827" /></a></p>
<h3><a target="_blank" href="http://elmovimiento.cl/">El Original Movimiento</a></h3>
<p><a target="_blank" href="http://elmovimiento.cl/"><img class="aligncenter size-full wp-image-22959" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/El-Original-Movimiento-Audiográfico-Por-que-la-vida-es-humor.-20100822.jpg" alt="" width="570" height="588" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Allen-Solly-AW09/318702">Allen Solly</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Allen-Solly-AW09/318702"><img class="aligncenter size-full wp-image-22987" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/906631254568093.jpeg" alt="" width="570" height="339" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Andrew-Brown/184226">Andrew Brown</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Andrew-Brown/184226"><img class="aligncenter size-full wp-image-22957" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/948591234797746.jpeg" alt="" width="570" height="435" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Bar-Alternativo-site/493958">Bar Alternativo</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Bar-Alternativo-site/493958"><img class="aligncenter size-full wp-image-22956" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/1460231272289711.jpeg" alt="" width="570" height="332" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/Love-of-Jesus-Family-Church/97082">Love of Jesus Family Church</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/Love-of-Jesus-Family-Church/97082"><img class="aligncenter size-full wp-image-22979" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/728951212614285.jpeg" alt="" width="570" height="570" /></a></p>
<h3><a target="_blank" href="http://www.behance.net/gallery/The-Current-Reskinned-Blog/216500">Reskinned Blog</a></h3>
<p><a target="_blank" href="http://www.behance.net/gallery/The-Current-Reskinned-Blog/216500"><img class="aligncenter size-full wp-image-23018" src="http://www.1stwebdesigner.com/wp-content/uploads/2010/08/843961240747097.jpeg" alt="" width="570" height="751" /></a></p>
<h2>Conclusion</h2>
<p>Whatever the type of texture you choose to use on your web design project, make sure it delivers the right look and feel based on your design concept. Let us know what type of texture do you use the most for your web design project or any thoughts about the topic in our comment section.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=y1IhvylhRho:7oVfNgsuYbo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=y1IhvylhRho:7oVfNgsuYbo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/1stwebdesigner?a=y1IhvylhRho:7oVfNgsuYbo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/1stwebdesigner?i=y1IhvylhRho:7oVfNgsuYbo:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/1stwebdesigner/~4/y1IhvylhRho" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.1stwebdesigner.com/inspiration/textures-web-designs-inspiration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.1stwebdesigner.com/inspiration/textures-web-designs-inspiration/</feedburner:origLink></item>
	</channel>
</rss>
