<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Programming Blog &#187; content section</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/tag/content-section/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Thu, 18 Aug 2011 08:11:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HTML5 And The Document Outlining Algorithm</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/html5-and-the-document-outlining-algorithm/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/html5-and-the-document-outlining-algorithm/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 13:45:18 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[biscuit]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[horse breeder]]></category>
		<category><![CDATA[horses for sale]]></category>
		<category><![CDATA[mares]]></category>
		<category><![CDATA[online tool]]></category>
		<category><![CDATA[rosies]]></category>
		<category><![CDATA[section article]]></category>
		<category><![CDATA[stallions]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/html5-and-the-document-outlining-algorithm/</guid>
		<description><![CDATA[&#160;&#160; By now, we all know that we should be using HTML5 to build websites. The discussion now is moving on to how to use HTML5 correctly. One important part of HTML5 that is still not widely understood is sectioning content: section, article, aside and nav. To understand sectioning content, we need to grasp the [...]]]></description>
			<content:encoded><![CDATA[<table width="650">
<tr>
<td width="650">
<div>
      <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="Advertisement in HTML5 And The Document Outlining Algorithm" border="0" /><br />
      <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" target="_blank"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" border="0" alt=" in HTML5 And The Document Outlining Algorithm" /></a>&nbsp;<a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" target="_blank"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" border="0" alt=" in HTML5 And The Document Outlining Algorithm" /></a>&nbsp;<a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" target="_blank"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" border="0" alt=" in HTML5 And The Document Outlining Algorithm" /></a>
    </div>
</td>
</tr>
</table>
<p>By now, we all know that <a href="http://coding.smashingmagazine.com/2010/12/10/why-we-should-start-using-css3-and-html5-today/">we should be using HTML5</a> to build websites. The discussion now is moving on to how to use HTML5 correctly. One important part of HTML5 that is still not widely understood is sectioning content: <code>section</code>, <code>article</code>, <code>aside</code> and <code>nav</code>. To understand sectioning content, we need to grasp the document outlining algorithm.</p>
<p><img src="http://coding.smashingmagazine.com/wp-content/uploads/2011/08/html5-outline.png" alt="Html5-outline in HTML5 And The Document Outlining Algorithm" width="361" height="250" /></p>
<p>Understanding the document outlining algorithm can be a challenge, but the rewards are well worth it. No longer will you agonize over whether to use a <code>section</code> or <code>div</code> element&#8202;&#8212;&#8202;you will know straight away. Moreover, you will know <em>why</em> these elements are used, and this knowledge of semantics is the biggest benefit of learning how the algorithm works.</p>
<h3>What Is The Document Outlining Algorithm?</h3>
<p>The document outlining algorithm is a mechanism for producing outline summaries of Web pages based on how they are marked up. Every Web page has an outline, and checking it is easy using a really simple free online tool, which we’ll cover shortly.</p>
<p>So, let’s start with a sample outline. Imagine you have built a website for a horse breeder, and he wants a page to advertise horses that he is selling. The structure of the page might look something like this:</p>
<figure>
<ol>
<li>Horses for sale
<ol>
<li>Mares
<ol>
<li>Pink Diva</li>
<li>Ring a Rosies</li>
<li>Chelsea’s Fancy</li>
</ol>
</li>
<li>Stallions
<ol>
<li>Korah’s Fury</li>
<li>Sea Pioneer</li>
<li>Brown Biscuit</li>
</ol>
</li>
</ol>
</li>
</ol>
<figcaption><em>Figure 1: How a page about horses for sale might be structured.</em></figcaption>
</figure>
<p>That’s all it is: a nice, clean, easy-to-follow list of headings, displayed in a hierarchy&#8202;&#8212;&#8202;much like a table of contents.</p>
<p>To make things even simpler, only two things in your mark-up affect the outline of a Web page:</p>
<ul>
<li><a href="http://developers.whatwg.org/content-models.html#heading-content-0">heading content</a> (<code>h1</code> to <code>h6</code> and <code>hgroup</code>),</li>
<li><a href="http://developers.whatwg.org/content-models.html#sectioning-content-0">sectioning content</a> (<code>section</code>, <code>article</code>, <code>aside</code> and <code>nav</code>).</li>
</ul>
<p>Obviously, the sectioning of content is the new HTML5 way to create outlines. But before we get into that, let’s go back to HTML 101 and review how we should all be using headings.</p>
<h3>Creating Outlines With Heading Content</h3>
<p>To create a structure for the horses page outlined in figure 1, we could use mark-up like the following:</p>
<figure>
<pre>
&lt;div&gt;
   &lt;h1&gt;Horses for sale&lt;/h1&gt;

   &lt;h2&gt;Mares&lt;/h2&gt;

   &lt;h3&gt;Pink Diva&lt;/h3&gt;
   &lt;p&gt;Pink Diva has given birth to three Grand National winners.&lt;/p&gt;

   &lt;h3&gt;Ring a Rosies&lt;/h3&gt;
   &lt;p&gt;Ring a Rosies has won the Derby three times.&lt;/p&gt;

   &lt;h3&gt;Chelsea’s Fancy&lt;/h3&gt;
   &lt;p&gt;Chelsea’s Fancy has given birth to three Gold Cup winners.&lt;/p&gt;

   &lt;h2&gt;Stallions&lt;/h2&gt;

   &lt;h3&gt;Korah’s Fury&lt;/h3&gt;
   &lt;p&gt;Korah’s Fury has fathered three champion race horses.&lt;/p&gt;

   &lt;h3&gt;Sea Pioneer&lt;/h3&gt;
   &lt;p&gt;Sea Pioneer has won The Oaks three times.&lt;/p&gt;

   &lt;h3&gt;Brown Biscuit&lt;/h3&gt;
   &lt;p&gt;Brown Biscuit has fathered nothing of any note.&lt;/p&gt;

   &lt;p&gt;All our horses come with full paperwork and a family tree.&lt;/p&gt;
&lt;/div&gt;
</pre>
<figcaption><em>Figure 2: Our “Horses for sale” page, marked up using headings.</em></figcaption>
</figure>
<p>It’s as simple as that. The outline in figure 1 is created by the levels of the headings.</p>
<p>Just so you know that I’m not making this up, you should copy and paste the code above into <a href="http://twitter.com/#!/gsnedders">Geoffrey Sneddon</a>’s <a href="http://gsnedders.html5.org/outliner/">excellent outlining tool</a>. Click the big “Outline this” button, et voila!</p>
<p>An outline created with heading content this way is said to consist of implicit, or implied, sections. Each heading creates its own implicit section, and any subsequent heading of a lower level starts another layer, of implicit sub-section, within it.</p>
<p>An implicit section is ended by a heading of the same level or higher. In our example, the “Mares” section is ended by the beginning of the “Stallions” section, and each section that contains details of an individual horse is ended by the beginning of the next one.</p>
<p>Figure 3 below is an example of an implicit section that ends with a heading of the same level. And figure 4 is an implicit section that ends with a heading of a higher level.</p>
<figure>
<pre>
&lt;h3&gt;Sea Pioneer&lt;/h3&gt;&lt;!-- start of implicit section --&gt;
&lt;p&gt;Sea Pioneer has won The Oaks three times.&lt;/p&gt;

&lt;h3&gt;Brown Biscuit&lt;/h3&gt;&lt;!-- This heading starts a new implicit section,
so the previous Sea Pioneer section is closed --&gt;
</pre>
<figcaption><em>Figure 3: An implicit section being closed by a heading of the same level</em></figcaption>
</figure>
<figure>
<pre>
&lt;h3&gt;Chelsea’s Fancy&lt;/h3&gt;&lt;!-- start of implicit section --&gt;
&lt;p&gt;Chelsea’s Fancy has given birth to 3 Gold Cup winners.&lt;/p&gt;

&lt;h2&gt;Stallions&lt;/h2&gt;&lt;!-- this heading starts a new implicit section
using a higher level heading, so Chelsea’s Fancy is now closed --&gt;
</pre>
<figcaption><em>Figure 4: An implicit section being closed by a heading of a higher level.</em></figcaption>
</figure>
<h3>Creating Outlines With Sectioning Content</h3>
<p>Now that we know how heading content works in creating an outline, let’s mark up our horses page using some new HTML5 structural elements:</p>
<figure>
<pre>
&lt;div&gt;
   &lt;h6&gt;Horses for sale&lt;/h6&gt;

   &lt;section&gt;
      &lt;h1&gt;Mares&lt;/h1&gt;

      &lt;article&gt;
         &lt;h1&gt;Pink Diva&lt;/h1&gt;
         &lt;p&gt;Pink Diva has given birth to three Grand National winners.&lt;/p&gt;
      &lt;/article&gt;

      &lt;article&gt;
         &lt;h5&gt;Ring a Rosies&lt;/h5&gt;
         &lt;p&gt;Ring a Rosies has won the Derby three times.&lt;/p&gt;
      &lt;/article&gt;

      &lt;article&gt;
         &lt;h2&gt;Chelsea’s Fancy&lt;/h2&gt;
         &lt;p&gt;Chelsea’s Fancy has given birth to three Gold Cup winners.&lt;/p&gt;
      &lt;/article&gt;
   &lt;/section&gt;

   &lt;section&gt;
      &lt;h6&gt;Stallions&lt;/h6&gt;

      &lt;article&gt;
         &lt;h3&gt;Korah’s Fury&lt;/h3&gt;
         &lt;p&gt;Korah’s Fury has fathered three champion race horses.&lt;/p&gt;
      &lt;/article&gt;

      &lt;article&gt;
         &lt;h3&gt;Sea Pioneer&lt;/h3&gt;
         &lt;p&gt;Sea Pioneer has won The Oaks three times.&lt;/p&gt;
      &lt;/article&gt;

      &lt;article&gt;
         &lt;h1&gt;Brown Biscuit&lt;/h1&gt;
         &lt;p&gt;Brown Biscuit has fathered nothing of any note.&lt;/p&gt;
      &lt;/article&gt;
   &lt;/section&gt;

   &lt;p&gt;All our horses come with full paperwork and a family tree.&lt;/p&gt;
&lt;/div&gt;
</pre>
<figcaption><em>Figure 5: The horses page, marked up with some new HTML5 structural elements.</em></figcaption>
</figure>
<p>Now, I know what you’re thinking, but I haven’t taken leave of my senses with these crazy headings. I am making a very important point, which is that <strong>the outline is created by the sectioning content, not the headings</strong>.</p>
<p>Go ahead and copy and paste that code into the <a href="http://gsnedders.html5.org/outliner/">outliner</a>, and you will see that the heading levels have absolutely no effect on the outline where sectioning content is used.</p>
<p>The <code>section</code>, <code>article</code>, <code>aside</code> and <code>nav</code> elements are what create the outline, and this time the sections are called explicit sections.</p>
<p>One of the most talked about features of HTML5 is that multiple <code>h1</code> elements are allowed, and this is why. It’s not an open invitation to mark up every heading on the page as <code>h1</code>; rather, it’s an acknowledgement that where sectioning content is used, <em>it</em> creates the outline, and that each explicit section has its own heading structure.</p>
<p>The <a href="http://developers.whatwg.org/sections.html#headings-and-sections">part of the HTML5 spec</a> that deals with headings and sections makes this clear:</p>
<blockquote>
<p>Sections may contain headings of any rank, but authors are strongly encouraged to either use only <code>h1</code> elements, or to use elements of the appropriate rank for the section’s nesting level.</p>
</blockquote>
<p>I would strongly advise that until browsers&#8202;&#8212;&#8202;and, more critically, screen readers&#8202;&#8212;&#8202;understand that sectioning content introduces a sub-section, using multiple <code>h1</code> elements is less safe than using a heading structure that reflects the level of each heading in the document, as shown in figure 6 below.</p>
<p>This means that user agents that haven’t implemented the outlining algorithm can use implicit sectioning, and those that have implemented it can effectively ignore the heading levels and use sectioning content to create the outline.</p>
<p>At the time of this writing, no browsers or screen readers have implemented the outlining algorithm, which is why we need third-party testing tools such as the outliner. The latest versions of Chrome and Firefox style <code>h1</code> elements in nested sections differently, but that is very different from actually implementing the algorithm.</p>
<p>When most user agents finally do support it, using an <code>h1</code> in every explicit section will be the preferred option. It will allow syndication tools to handle articles without needing to reformat any heading levels in the original content.</p>
<figure>
<pre>
   &lt;div&gt;
      &lt;h1&gt;Horses for sale&lt;/h1&gt;

      &lt;section&gt;
         &lt;h2&gt;Mares&lt;/h2&gt;

         &lt;article&gt;
            &lt;h3&gt;Pink Diva&lt;/h3&gt;
            &lt;p&gt;Pink Diva has given birth to three Grand National winners.&lt;/p&gt;
         &lt;/article&gt;

         &lt;article&gt;
            &lt;h3&gt;Ring a Rosies&lt;/h3&gt;
            &lt;p&gt;Ring a Rosies has won the Derby three times.&lt;/p&gt;
         &lt;/article&gt;

         &lt;article&gt;
            &lt;h3&gt;Chelsea’s Fancy&lt;/h3&gt;
            &lt;p&gt;Chelsea’s Fancy has given birth to three Gold Cup winners.&lt;/p&gt;
         &lt;/article&gt;
      &lt;/section&gt;

      &lt;section&gt;
         &lt;h2&gt;Stallions&lt;/h2&gt;

         &lt;article&gt;
            &lt;h3&gt;Korah’s Fury&lt;/h3&gt;
            &lt;p&gt;Korah’s Fury has fathered three champion race horses.&lt;/p&gt;
         &lt;/article&gt;

         &lt;article&gt;
            &lt;h3&gt;Sea Pioneer&lt;/h3&gt;
            &lt;p&gt;Sea Pioneer has won The Oaks three times.&lt;/p&gt;
         &lt;/article&gt;

         &lt;article&gt;
            &lt;h3&gt;Brown Biscuit&lt;/h3&gt;
            &lt;p&gt;Brown Biscuit has fathered nothing of any note.&lt;/p&gt;
         &lt;/article&gt;
      &lt;/section&gt;

      &lt;p&gt;All our horses come with full paperwork and a family tree.&lt;/p&gt;
   &lt;/div&gt;
</pre>
<figcaption><em>Figure 6: Our horses page, marked up sensibly.</em></figcaption>
</figure>
<p>One other point worth noting here is the position of the paragraph “All our horses come with full paperwork and a family tree.” In the example that used headings to create the outline (figure 2), this paragraph is part of the implicit section created by the “Brown Biscuit” heading. Human readers will clearly see that this text applies to the whole document, not just Brown Biscuit.</p>
<p>Sectioning content solves this problem quite easily, moving it back up to the top level, headed by “Horses for sale.”</p>
<h3>Mixing It Up</h3>
<p>So, what happens when implicit sections and explicit sections are combined? As long as you remember that implicit sections can go inside explicit sections, but not the other way round, you will be fine. For example, the following works well and is perfectly valid:</p>
<figure>
<pre>
   &lt;h1&gt;Horses for sale&lt;/h1&gt;

   &lt;section&gt;
      &lt;h2&gt;Mares&lt;/h2&gt;

      &lt;h3&gt;Pink Diva&lt;/h3&gt;
      &lt;p&gt;Pink Diva has given birth to three Grand National winners.&lt;/p&gt;

      &lt;h3&gt;Ring a Rosies&lt;/h3&gt;
      &lt;p&gt;Ring a Rosies has won the Derby three times.&lt;/p&gt;

      &lt;h3&gt;Chelsea’s Fancy&lt;/h3&gt;
      &lt;p&gt;Chelsea’s Fancy has given birth to three Gold Cup winners.&lt;/p&gt;
   &lt;/section&gt;
</pre>
</figure>
<p>And it creates a sensible hierarchical outline:</p>
<figure>
<ol>
<li>Horses for sale
<ol>
<li>Mares
<ol>
<li>Pink Diva</li>
<li>Ring a Rosies</li>
<li>Chelsea’s Fancy</li>
</ol>
</li>
</ol>
</li>
</ol>
<figcaption><em>Figure 7: Implicit sections created by headings inside an explicit section.</em><br />
</figure>
<p>However, if you hope to achieve the same outline by nesting an explicit section inside an implicit section, it won’t work. The sectioning element will simply close the implicit section created by the heading and create a very different outline, as shown below:</p>
<figure>
<pre>
   &lt;h1&gt;Horses for sale&lt;/h1&gt;

   &lt;h2&gt;Mares&lt;/h2&gt;

   &lt;article&gt;
      &lt;h3&gt;Pink Diva&lt;/h3&gt;
      &lt;p&gt;Pink Diva has given birth to three Grand National winners.&lt;/p&gt;
   &lt;/article&gt;

   &lt;article&gt;
      &lt;h3&gt;Ring a Rosies&lt;/h3&gt;
      &lt;p&gt;Ring a Rosies has won the Derby three times.&lt;/p&gt;
   &lt;/article&gt;

   &lt;article&gt;
      &lt;h3&gt;Chelsea’s Fancy&lt;/h3&gt;
      &lt;p&gt;Chelsea’s Fancy has given birth to three Gold Cup winners.&lt;/p&gt;
   &lt;/article&gt;
</pre>
</figure>
<p>This would produce the following outline:</p>
<figure>
<ol>
<li>Horses for sale
<ol>
<li>Mares</li>
<li>Pink Diva</li>
<li>Ring a Rosies</li>
<li>Chelsea’s Fancy</li>
</ol>
</li>
</ol>
<figcaption><em>Figure 8: Explicit sections can’t go inside implicit sections.</em></figcaption>
</figure>
<p>There is no way to make the explicit sections created by the <code>article</code> elements become sub-sections of the Mare’s implicit section.</p>
<p>You can use headings to split up the content of sectioning elements, but not the other way round.</p>
<h3>Things To Watch Out For</h3>
<h4>Untitled Sections</h4>
<p>Until now we haven’t really looked at <code>nav</code> and <code>aside</code>, but they work exactly the same as <code>section</code> and <code>article</code>. If you have secondary content that is generally related to your website&#8202;&#8212;&#8202;say, horse-training tips and industry news&#8202;&#8212;&#8202;you would mark it up as an <code>aside</code>, which creates an explicit section in the document outline. Similarly, major navigation would be marked up as <code>nav</code>, again creating an explicit section.</p>
<p>There is no requirement to use headings for <code>aside</code> and <code>nav</code>, so they can appear in the outline as untitled sections. Go ahead and try the following code in the outliner:</p>
<figure>
<pre>
   &lt;nav&gt;
      &lt;ul&gt;
         &lt;li&gt;&lt;a href="/"&gt;home&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="/about.html"&gt;about us&lt;/a&gt;&lt;/li&gt;
         &lt;li&gt;&lt;a href="/horses.html"&gt;horses for sale&lt;/a&gt;&lt;/li&gt;
       &lt;/ul&gt;
   &lt;/nav&gt;

   &lt;h1&gt;Horses for sale&lt;/h1&gt;

   &lt;section&gt;
      &lt;h2&gt;Mares&lt;/h2&gt;
   &lt;/section&gt;

   &lt;section&gt;
      &lt;h2&gt;Stallions&lt;/h2&gt;
   &lt;/section&gt;
</pre>
<figcaption><em>Figure 9: An untitled &lt;nav&gt;.</em></figcaption>
</figure>
<p>The <code>nav</code> appears as an untitled section. Now, this generally wouldn’t be a problem and is not considered bad HTML5 code, although in his <a href="http://html5doctor.com/outlines/">recent HTML5 Doctor article</a> on outlining, <a href="https://twitter.com/#!/akamike">Mike Robinson</a> recommends using headings for all sectioning content in order to increase accessibility.</p>
<p>Untitled <code>section</code> and <code>article</code> elements, on the other hand, are generally to be avoided. In fact, if you’re unsure whether to use a <code>section</code> or <code>article</code>, a good rule of thumb is to see whether the content has a natural, logical heading. If it doesn’t, then you will more than likely be wiser to use a good old <code>div</code>.</p>
<p>Now, the spec doesn’t actually require <code>section</code> elements to have a title. It says:</p>
<blockquote>
<p>The section element represents a generic section of a document or application. A section, in this context, is a thematic grouping of content, typically with a heading.</p>
</blockquote>
<p>Your interpretation of this probably hinges on your understanding of the word “typically.” I take it to mean that you need a damn good reason not to use headings with <code>section</code> elements. I do not take it to mean that you can ignore it whenever you feel the urge to use a new HTML5 element.</p>
<p><a href="http://developers.whatwg.org/sections.html#the-article-element">Where the <code>article</code> element is specified</a>, the spec goes even further by showing an example of blog comments marked up as untitled <code>article</code>s, so there are exceptions. However, if you see an untitled <code>section</code> or <code>article</code> in the outline, make sure you have a good reason for not giving it a title.</p>
<p>If you are unsure whether your untitled section is a <code>nav</code>, <code>aside</code>, <code>section</code> or <code>article</code>, a <a href="https://addons.opera.com/addons/extensions/details/html5-outliner/1.0/?display=en">very handy Opera extension</a> will let you know which type of sectioning content you have left untitled. The tool will also let you view the outline without leaving the page, which can be hugely beneficial when you’re debugging sections.</p>
<h4>Sectioning Root</h4>
<p>The eagle-eyed among you will have noticed that when I said that sectioning content cannot create a sub-section of an implicit section, there was an <code>h1</code> (“Horses for sale”) not in sectioning content immediately followed by a <code>section</code> (“Mares”), and that the sectioning content did actually create a sub-section of the <code>h1</code>.</p>
<p>The reason for this is sectioning root. <a href="http://dev.w3.org/html5/spec/Overview.html#sectioning-root">As the spec says</a>, sectioning elements create sub-sections of their nearest ancestor sectioning root or sectioning content.</p>
<blockquote>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#sectioning-content">Sectioning content</a> elements are always considered subsections of their nearest ancestor <a href="http://dev.w3.org/html5/spec/Overview.html#sectioning-root">sectioning root</a> or their nearest ancestor element of <a href="http://dev.w3.org/html5/spec/Overview.html#sectioning-content">sectioning content</a>, whichever is nearest, regardless of what implied sections other headings may have created.</p>
</blockquote>
<p>The <code>body</code> element is sectioning root. So, if you paste the code from figure 7 into the outliner, the <code>h1</code> would be the sectioning root heading, and the <code>section</code> element would be a sub-section of the <code>body</code> sectioning root.</p>
<p>The <code>body</code> element is not the only one that acts as sectioning root. There are five others:</p>
<ol>
<li><code>blockquote</code></li>
<li><code>details</code></li>
<li><code>fieldset</code></li>
<li><code>figure</code></li>
<li><code>td</code></li>
</ol>
<p>The status of these elements as sectioning root has two implications. First, each can have its own outline. Secondly, the outline of nested sectioning root does not appear in, nor does it have an effect on, the outline of its parent sectioning root.</p>
<p>In practice, this means that headings inside any of the five sectioning root elements listed above do not affect the outline of the document that they are a part of.</p>
<p>The final thing (you’ll be glad to hear) that I’ll say about sectioning root is that the first heading in the document that is not inside sectioning content is considered to be the document title.</p>
<p>Try the following code in the outliner to see what happens:</p>
<figure>
<pre>
&lt;section&gt;
   &lt;h1&gt;this is an h1&lt;/h1&gt;
&lt;/section&gt;

&lt;h6&gt;this h6 comes first in the source&lt;/h6&gt;

&lt;h1&gt;this h1 comes last in the source&lt;/h1&gt;
</pre>
<figcaption><em>Figure 10: How heading levels at the root level affect the outline.</em></figcaption>
</figure>
<p>I won’t try to explain this to you because it will probably only confuse both of us, so I’ll let you play with it in the outliner. Hint: try using different heading levels for the implicit sections to see how the outline is affected; for example, <code>h3</code> and <code>h4</code>, or two <code>h5</code>s.</p>
<h4>Untitled Documents</h4>
<p>If no heading is at the root level of the document (i.e. not inside sectioning content), then the document itself will be untitled. This is a pretty serious problem, and it can occur either through carelessness or, paradoxically, by thinking carefully about how sectioning content should be used.</p>
<p><a href="http://www.456bereastreet.com/">Roger Johansson</a> addresses this issue in his excellent <a href="http://www.456bereastreet.com/archive/201103/html5_sectioning_elements_headings_and_document_outlines/">article on document outlines and HTML5</a> and the <a href="http://www.456bereastreet.com/archive/201104/html5_document_outline_revisited/">follow-up article</a>.</p>
<p>Johansson asks how a proper document outline is supposed to be created for a blog post or other news-type item using HTML5. If you subscribe to the belief that your logo or website name should not be in an <code>h1</code> element, you could mark up your blog post along the lines of the following:</p>
<pre>
&lt;body&gt;
   &lt;article&gt;
      &lt;h1&gt;Blog post title&lt;/h1&gt;

      &lt;p&gt;Blog post content&lt;/p&gt;
   &lt;/article&gt;
&lt;/body&gt;
</pre>
<p>The document is untitled. Somewhat reluctantly, Johansson settles on marking up the website’s title in <code>h1</code> and using another <code>h1</code> to mark up the article’s title. This is a sensible solution and is backed up by the results of the <a href="http://webaim.org/projects/screenreadersurvey3/#headings">WebAIM screenreader user survey</a>, in which the majority of respondents stated a preference for two top-level headings in exactly this format.</p>
<p>This same approach is also widely used on static pages that are built with HTML5 structural elements, and it could be very useful indeed for screen reader users. Imagine that you are using a screen reader to find a decent recipe for chicken pie, and you have a handful of recipe websites open for comparison. Being able to quickly find out which website you are on using the shortcut key for headings would be much more useful than seeing only “chicken pie” on each one.</p>
<p>Not too far behind two top-level headings in the screen reader user survey was one top-level heading for the document. This is probably my preferred option in most cases; but as we have already seen, it creates an untitled body, which is undesirable.</p>
<p>In my opinion, there is an easy way around this problem: don’t use <code>article</code> as a wrapper for single-blog posts, news items or static page main content. Remember that <code>article</code> is sectioning content: it creates a sub-section of the document. But in these cases, the document is the content, and the content is the document. Setting aside the name of the element, why would we want to create a sub-section of a document before it has even begun?</p>
<p>Remember, <a href="http://html5doctor.com/you-can-still-use-div/">you can still use div</a>!</p>
<h4>hgroup</h4>
<p>This is the final item in the list of things to watch out for, and it’s very easy to understand. The <code>hgroup</code> element can contain only headings (<code>h1</code> to <code>h6</code>), and its purpose is to remove all but the highest-level heading it contains from the outline.</p>
<p>It has been and continues to be the subject of controversy, and its inclusion in the specification is by no means a given. However, for now, it does exactly what it says on the tin: it groups headings into one, as far as the outlining algorithm is concerned.</p>
<h3>In Conclusion</h3>
<p>The logic behind the document outlining algorithm can be hard to grasp, and the spec can sometimes feel like physics: understandable as you’re reading it, but when you try to confirm your understanding, it dissolves and you find yourself re-reading it again and again.</p>
<p>But if you remember the basics&#8202;&#8212;&#8202;that <code>section</code>, <code>article</code>, <code>aside</code> and <code>nav</code> create sub-sections on Web pages&#8202;&#8212;&#8202;then you are 90% of the way there. Get used to marking up content with sectioning elements and to checking your pages in the outliner, because the more you practice creating well-outlined documents, the sooner you will grasp the algorithm.</p>
<p>I promise, you will have it cracked after only a handful of times, and you will never look back. And from that moment on, every Web page you create will be structured, semantic, robust, well-outlined content.</p>
<h4>Other Resources</h4>
<ul>
<li>“<a href="http://dev.w3.org/html5/spec/Overview.html#outlines">Creating an Outline</a>”<br />
The full W3C specification of the outlining algorithm.</li>
<li>“<a href="http://html5doctor.com/outlines/">Document Outlines</a>”<br />
An explanation of the document outlines from the HTML5 Doctor.</li>
<li>“<a href="http://dev.w3.org/html5/spec/Overview.html#sectioning-content">Sectioning content</a>” and “<a href="http://dev.w3.org/html5/spec/Overview.html#sectioning-root">Sectioning root</a>”<br />
The W3C specifications of sectioning content and sectioning root.</li>
<li>“<a href="https://developer.mozilla.org/en/Sections_and_Outlines_of_an_HTML5_document">Sections and Outlines of an HTML5 Document</a>”<br />
HTML5 sections and outlines explained on the Mozilla Developer Network. Note that <code>header</code> and <code>footer</code> are not sectioning content.</li>
<li>“<a href="http://www.456bereastreet.com/archive/201103/html5_sectioning_elements_headings_and_document_outlines/">HTML5 Sectioning Elements, Headings, and Document Outlines</a>” and “<a href="http://www.456bereastreet.com/archive/201104/html5_document_outline_revisited/">HTML5 Document Outline Revisited</a>”<br />
Roger Johansson’s articles on the issue of sectioning content creating untitled documents.</li>
</ul>
<p><em>(al)</em></p>
<hr />
<p>© Derek Johnson for <a href="http://www.smashingmagazine.com">Smashing Magazine</a>, 2011.</p>
<p><a href="http://rss1.smashingmagazine.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/html5-and-the-document-outlining-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intelligently Browse RSS Feeds With NewsBlur</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/intelligently-browse-rss-feeds-with-newsblur/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/intelligently-browse-rss-feeds-with-newsblur/#comments</comments>
		<pubDate>Thu, 16 Dec 2010 15:34:45 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[feed reader]]></category>
		<category><![CDATA[feed readers]]></category>
		<category><![CDATA[Folders]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[new articles]]></category>
		<category><![CDATA[taking the time]]></category>
		<category><![CDATA[webapp]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/intelligently-browse-rss-feeds-with-newsblur/</guid>
		<description><![CDATA[Are you overwhelmed with all the feeds you&#8217;ve subscribed to in your favorite RSS app such as Google Reader? Need a better way to keep up with the news and updates that are most important to you? There&#8217;s not enough time in the day to read all the new articles that are published across the [...]]]></description>
			<content:encoded><![CDATA[<p>Are you overwhelmed with all the feeds you&#8217;ve subscribed to in your favorite RSS app such as Google Reader? Need a better way to keep up with the news and updates that are most important to you? There&#8217;s not enough time in the day to read all the new articles that are published across the net, but it can be hard to sort out the great from the forgettable articles.</p>
<p>Most RSS feed readers work just like an email subscription, and all new posts will automatically show up in your unread list. Today we&#8217;re going to look at <a href="http://www.newsblur.com">NewsBlur</a>, a new feed reader webapp that brings an intelligent approach to RSS feeds. It automatically shows the articles you&#8217;ll be interest in based on articles you&#8217;ve previously liked, and makes it easy to browse the original site or the RSS feed itself.</p>
<p><span></span></p>
<h2>Getting Started</h2>
<p>Similar to Google Reader and other feed apps, <a href="http://www.newsblur.com">NewsBlur</a> lists feeds in folders on the left, and then displays the feed contents in the main content section of the page. Just browse to their site and you can automatically try it out without creating an account, simply by browsing the feeds that are already added to NewsBlur. This is a great way to get a feel for the interface before taking the time to create an account and add your own feeds. You can also <a href="https://chrome.google.com/webstore/detail/gchdledhagjbhhodjjhiclbnaioljomj">install it as a webapp in Chrome</a> directly if you wish.</p>
<div><img class="size-large wp-image-13790" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/fa0f2_sshot-2010-12-14-2-620x371.png" alt="Try NewsBlur out without signing up" width="620" height="371" />
<p>Try NewsBlur out without signing up</p>
</div>
<p>Once you&#8217;re ready to signup, click the top black bar on the left to get back to the main screen. Here you can get more info about the app or signup for your own account. You don&#8217;t need to enter much info; just import your Google Reader account or add a new username and optionally add a password. One click later, you&#8217;ll be ready to start managing your own feeds with NewsBlur.</p>
<div><img class="size-full wp-image-13791" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e2f08_sshot-2010-12-14-7.png" alt="Signup directly with your Google account, or enter a new username" width="521" height="263" />
<p>Signup directly with your Google account, or enter a new username</p>
</div>
<h2>Using NewsBlur</h2>
<p>Your new account will be sparse at first, but not for long. If you signed in with your Google Account, you&#8217;ll be prompted to select the feeds you want to keep; otherwise, you&#8217;ll have no feeds by default. Just click the green plus in the bottom left to start adding feeds.</p>
<div><img class="size-full wp-image-13792" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b94f7_sshot-2010-12-14-4.png" alt="NewsBlur helps you get started with info bubbles" width="422" height="148" />
<p>NewsBlur helps you get started with info bubbles</p>
</div>
<p>Here you can add a feed from a URL or RSS feed directly, import your Google Reader account or add new folders to keep you feeds organized. Alternately, if you&#8217;ve been using a desktop RSS program such as NetNewsWire or FeedDemon, you can import your feeds from an OPML file. Check your current RSS app&#8217;s help if you&#8217;re unsure about how to export the OPML file.</p>
<div><img class="size-large wp-image-13793" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/624f7_sshot-2010-12-14-9-620x495.png" alt="Add feeds directly, or import from Google Reader or an OPML file" width="620" height="495" />
<p>Add feeds directly, or import from Google Reader or an OPML file</p>
</div>
<p>Free NewsBlur accounts let you add up to 64 feeds, so if your Google Reader account or OPML file included more feeds you&#8217;ll need to select some feeds to disable. NewsBlur will automatically select the feeds in your list that are most popular, but you can adjust it as you want. Alternately, for $12 per year you can upgrade to a Premium account which lets you add unlimited feeds and access premium features when they&#8217;re added.</p>
<div><img class="size-large wp-image-13794" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c32ae_sshot-2010-12-14-5-620x452.png" alt="Add up to 64 feeds to a free account, or upgrade for unlimited feeds" width="620" height="452" />
<p>Add up to 64 feeds to a free account, or upgrade for unlimited feeds</p>
</div>
<h3>Training NewsBlur</h3>
<p>Now that you&#8217;ve added your feeds, you could just start using NewsBlur, but that&#8217;d take away the best part. NewsBlur can automatically highlight the posts in your feeds that you&#8217;re most likely to find interesting, but you&#8217;ll have to train it to know what you like first. To do this, click the <em>Launch Intelligent Trainer</em> button on your NewsBlur dashboard after importing your feeds. This will present a page for each of your feeds, listing the top authors and tags on the site.</p>
<div><img class="size-large wp-image-13796" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3fba2_sshot-2010-12-14-21-620x540.png" alt="Teach NewsBlur what you're interested in" width="620" height="540" />
<p>Teach NewsBlur what you&#039;re interested in</p>
</div>
<div><img class="size-full wp-image-13797" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3b25d_sshot-2010-12-14-28.png" alt="See if you'll like articles before you read a feed" width="244" height="231" />
<p>See if you&#039;ll like articles before you read a feed</p>
</div>
<p>You&#8217;ll need to do this for each feed, but once you&#8217;ve done it, you&#8217;ll find your RSS experience much more personalized and less time consuming. Articles NewsBlur thinks you&#8217;ll like based on info you&#8217;ve added will be listed in green, while unrated articles will be yellow and red articles cover topics you&#8217;ve downvoted in the past.</p>
<h3>Read Feeds the Way You Like</h3>
<p>While Google Reader and other RSS apps usually only let you read feeds in RSS view, NewsBlur includes a unique interface that shows the original site with the RSS feed listed underneath. This way you can still take advantage of each site&#8217;s unique design with the convenience of seeing which articles you haven&#8217;t read yet. It&#8217;s also nice for reading sites that include a truncated RSS feed without the full article content.</p>
<div><img class="size-large wp-image-13802" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/9ba37_sshot-2010-12-14-29-620x197.png" alt="RSS combined with the original site in NewsBlur" width="620" height="197" />
<p>RSS combined with the original site in NewsBlur</p>
</div>
<p>Alternately, you can view articles in a traditional feed mode. Here NewsBlur&#8217;s design shines with a clean, elegant interface that makes articles nice to read.</p>
<div><img class="size-large wp-image-13803" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/28da4_sshot-2010-12-14-30-620x359.png" alt="Traditional RSS mode makes articles clean and easy to read" width="620" height="359" />
<p>Traditional RSS mode makes articles clean and easy to read</p>
</div>
<h3>Like or Dislike Articles</h3>
<p>You can keep training NewsBlur as you read articles so it&#8217;ll get better at knowing what feeds you like. If you like or dislike an article, click the thumb symbol on the left of the feed name. Alternately, if you just want to save the article to read later, click the star and you&#8217;ll be able to quickly find it in the <em>Saved Stories</em> entry on the top of the feed list.</p>
<div><img class="size-large wp-image-13800" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/bdf64_sshot-2010-12-14-26-620x268.png" alt="Like or save articles to keep training NewsBlur and make it easier to use" width="620" height="268" />
<p>Like or save articles to keep training NewsBlur and make it easier to use</p>
</div>
<p>If you pressed the thumb icon, you can now mark what you liked or disliked about an article. NewsBlur will use this info to keep your feeds focused on what you want to read. Over time, you should find yourself able to quickly read the news most important to you and let NewsBlur help you ignore the rest.</p>
<div><img class="size-large wp-image-13801" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3873f_sshot-2010-12-14-25-620x561.png" alt="Mark what you like and dislike about an article" width="620" height="561" />
<p>Mark what you like and dislike about an article</p>
</div>
<p>Or, if you&#8217;d like to read something out of your ordinary readings, you can always turn down NewsBlur&#8217;s filtering to let you see articles you otherwise might miss. Your choice!</p>
<h2>Conclusion</h2>
<p>While many people have switched to only reading links shared on networks such as Twitter or Facebook, <a href="http://www.newsblur.com">NewsBlur</a> shows how you can have a curated and personalized news experience from the sites you love. It does a great job surfacing the articles you&#8217;ll find most interesting, and seemed to run faster than Google Reader. At the very least, you should spend less time using it since you&#8217;ll only see the most important items. </p>
<p>You also have much more control over your experience than you do in Google Reader, and can even run it on your own server if you wish as NewsBlur is fully open source and can be<a href="https://github.com/samuelclay/NewsBlur"> downloaded from GitHub</a>.</p>
<p>Do you use Google Reader, NewsBlur, or another RSS reader app? We&#8217;d love to hear what you&#8217;re using, so let us know in the comments. While you&#8217;re at it, don&#8217;t forget to give NewsBlur a try!</p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2c0d8_3tHB-zxlhV8" height="1" width="1" /><br />
<a href="http://feeds.feedburner.com/webappstorm">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/intelligently-browse-rss-feeds-with-newsblur/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Mimic Equal Columns with CSS3 Gradients</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-mimic-equal-columns-with-css3-gradients/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-mimic-equal-columns-with-css3-gradients/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 01:13:20 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[background colors]]></category>
		<category><![CDATA[body element]]></category>
		<category><![CDATA[body tag]]></category>
		<category><![CDATA[content area]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[div id]]></category>
		<category><![CDATA[gradients]]></category>
		<category><![CDATA[html document]]></category>
		<category><![CDATA[parent element]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-mimic-equal-columns-with-css3-gradients/</guid>
		<description><![CDATA[What happens when your main content area needs two specific background colors: one for the primary content, and another for the sidebar? If you&#8217;ve ever tried applying the background to each container itself, you&#8217;ll no doubt have realized that your layout quickly becomes fragmented as soon as, say, the primary content section exceeds the height [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://feedads.g.doubleclick.net/~a/xD08MEANMOIEMMyMRrUGp-R3dOs/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/269b8_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/xD08MEANMOIEMMyMRrUGp-R3dOs/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2fab8_di" border="0"></img></a></p>
<p>
What happens when your main content area needs two specific background colors: one for the primary content, and another for the sidebar? If you&#8217;ve ever tried applying the background to each container itself, you&#8217;ll no doubt have realized that your layout q<a href="http://d2o0t5hpnwv4c1.cloudfront.net/850_cssGradient/cleverGradient/before.html">uickly becomes fragmented</a> as soon as, say, the primary content section exceeds the height of the sidebar.
</p>
<p>Generally, the solution is to set a background image on the parent element, and set it to repeat vertically. However, if we get clever with CSS3 gradients, we can achieve the same effect with zero images. The irony in this is that we&#8217;re using CSS3 gradients to create an effect that doesn&#8217;t contain a gradient! Read on to learn more. </p>
<p><span></span></p>
<hr />
<h2> Prefer a Video Tutorial? </h2>
<div>
<span><a href="http://www.youtube.com/user/nettutsplus">Subscribe to our YouTube page to watch all of the video tutorials!</a></span>
</div>
<hr />
<h2><span>Step 1.</span> Construction</h2>
<p>Let&#8217;s begin by building a ridiculously simple layout. That way, we can demonstrate a common layout issue that we&#8217;ve all experienced at one point or another.</p>
<p>Create a new HTML document, and add the following to your <code>body</code> tag:</p>
<pre>
&lt;body&gt;

   &lt;header&gt;
      &lt;h1&gt; My Header &lt;/h1&gt;
   &lt;/header&gt;

   &lt;div id="main"&gt;
      &lt;div id="primary"&gt;Primary content.&lt;/div&gt;
      &lt;aside&gt;
         Sidebar
      &lt;/aside&gt;
   &lt;/div&gt;

&lt;/body&gt;
</pre>
<blockquote>
<p>Don&#8217;t forget that you can use the <code>body</code> element as a wrapper for your layout. Simply set a <code>width</code> directly to the <code>body</code>.</p>
</blockquote>
<p>What we have here is fairly common. A <code>header</code> element contains a heading tag; and, then we have a <code>main</code> div, which houses the primary content, as well as the <code>sidebar</code>.</p>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2fab8_nonstyled.png" />
</div>
<hr />
<h2><span>Step 2. </span>Create the Columns</h2>
<p>Next, let&#8217;s style this layout a bit. As we&#8217;re using the <code>body</code> element as our wrapper, of sorts, let&#8217;s set a <code>width</code> and background color. </p>
<pre>
body {
  width: 700px;
  margin: auto;
  background: #e3e3e3;
}
</pre>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f0c00_bodyCSS.png" />
</div>
<p>Now, we&#8217;ll float the primary content and the <code>sidebar</code> to the left and right, respectively. Also, as we&#8217;re not working with any real content, we&#8217;ll set a height to each container to present the illusion of content. This itself won&#8217;t be enough; we must also specify precisely how wide each should be. Otherwise, they&#8217;ll take up all of the available space, due to their <code>block</code> nature.</p>
<pre>
#primary {
 float: left;
 width: 75%;
 height: 500px;

 background: red;
}

aside {
 display: block; /* Because is HTML5 element */
 float: right;
 width: 25%;
 height: 500px;

 background: green;

}
</pre>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f0c00_styled.png" />
</div>
<hr />
<h2><span>Step 3.</span> The Rub</h2>
<p>So, all this looks just fine &#8212; for now. However, issues arise as soon as the height of the primary content exceeds the height of the <code>sidebar</code>. Further, this will typically be the case in most situations. </p>
<p>To simulate added content, let&#8217;s increase the height of the <code>#primary</code> <code>div</code> to be <code>700px</code>.</p>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f0c00_theRub.png" />
</div>
<p>Typically, the solution to these types of dilemmas is to apply a background image to the parent (<code>#main</code>) element. This will usually be a small slice of the background, which will then be vertically repeated.</p>
<pre>
#main {
...
background: url(small/slice/of/background.png) repeat-y;

}
</pre>
<p>Problem solved! Well, not exactly. True, this does work, however, as soon as you decide to change a background color, you&#8217;re then forced to return to Photoshop to create a new background image. What a drag!</p>
<blockquote>
<p>Another common solution is to use JavaScript to dynamically detect the width of each container, and then make them the same height. Keep in mind that this then requires your layout to be dependent upon JS being enabled.</p>
</blockquote>
<h2><span>Step 4.</span> The Solution</h2>
<p>If we want to be forward thinkers, we can use CSS3 gradients to achieve this effect. What is that you say? &#8220;But Jeff, these are solid colors; not gradients!&#8221; True, but I&#8217;ll show you a little trick I learned. If you create two stops at the same location in a CSS3 gradient, you&#8217;ll end up with two solid colors. That&#8217;s a bit confusing; let me demonstrate.</p>
<p>Before we continue, if you&#8217;re working along, return to your project, and remove the background colors. They&#8217;re no longer needed. Now, we&#8217;ll add a background gradient to the parent, <code>#main</code>, container instead.</p>
<pre>
#main {
   background: -moz-linear-gradient(left, red, green);
}
</pre>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e50ce_gradientBlur.png" />
</div>
<p>So, that&#8217;s probably what you were expecting. But how will that help us? We need a distinct separation between the primary content and the <code>sidebar</code>. </p>
<p>This time, let&#8217;s specify that both the red and the green <em>color-stops</em> should be placed at the 75% marker.</p>
<pre>
#main {
   background: -moz-linear-gradient(left, red 75%, green 75%);
}
</pre>
<div>
<img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/69e1b_fixed.png" />
</div>
<p>Isn&#8217;t that awesome? Not only are we using a gradient to create solid colors, ironically, but, also, the heights of each child container are now identical. </p>
<p>Keep in mind that this isn&#8217;t entirely accurate. They have the illusion of being the same height. In truth, though, we&#8217;re only applying a background to the parent element. The <code>sidebar</code> is still shorter; you just can&#8217;t tell.</p>
<hr />
<h2><span>Step 5.</span> Webkit</h2>
<p>The final step is to make Webkit browsers (Safari and Chrome) happy. Unfortunately, they don&#8217;t quite agree with Mozilla on the correct syntax for creating gradients. Their method isn&#8217;t quite as succinct as Mozilla&#8217;s. </p>
<pre>
#main {
   background: -moz-linear-gradient(left, red 75%, green 75%);
   background: -webkit-gradient(linear, left top, right top, from(red), color-stop(.75, red), color-stop(.75, green));
}
</pre>
<blockquote>
<p>If you&#8217;re used to the <code>from()</code> and <code>to()</code> functions, keep in mind that they&#8217;re simply helper functions, which direct to <code>color-stop()</code>.
</p>
</blockquote>
<p><code>color-stop</code> accepts two parameters:
</p>
<ul>
<li> The position to stop </li>
<li> The desired color </li>
</ul>
<p>To clarify, <code>color-stop(.75, green)</code> means, &#8220;at 75% of the width of the element, the color should now be green.&#8221; So yes, the syntax is different, but it only takes a few seconds to convert. </p>
<hr />
<h2>Conclusion </h2>
<p>That&#8217;s all there is to it! Please remember that these are CSS3 techniques, meaning, IE is left out in the cold. Keep in mind, though: &#8220;not all websites must look identical in every browser.&#8221; </p>
<p><strong>What do you think? Will you use this method, knowing that you&#8217;ll have to provide a fallback color for IE, or resort to using conditional statements to use a fallback image? </strong></p>
<div>
<a href="http://feeds.feedburner.com/~ff/nettuts?a=pkvFv3VYB4w:lu8k9tJAGew:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/69e1b_nettuts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=pkvFv3VYB4w:lu8k9tJAGew:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/69e1b_nettuts?i=pkvFv3VYB4w:lu8k9tJAGew:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=pkvFv3VYB4w:lu8k9tJAGew:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/69e1b_nettuts?i=pkvFv3VYB4w:lu8k9tJAGew:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=pkvFv3VYB4w:lu8k9tJAGew:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d66f3_nettuts?i=pkvFv3VYB4w:lu8k9tJAGew:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=pkvFv3VYB4w:lu8k9tJAGew:TzevzKxY174"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d66f3_nettuts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d66f3_pkvFv3VYB4w" height="1" width="1" /><br />
<a href="http://feedproxy.google.com/nettuts">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-mimic-equal-columns-with-css3-gradients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google adds &quot;visual context&quot; to Analytics</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/it-news/google-adds-visual-context-to-analytics/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/it-news/google-adds-visual-context-to-analytics/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 15:09:11 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[IT news]]></category>
		<category><![CDATA[bubbles]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[conversion metrics]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[internet users]]></category>
		<category><![CDATA[page layout]]></category>
		<category><![CDATA[segments]]></category>
		<category><![CDATA[visual context]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/it-news/google-adds-visual-context-to-analytics/</guid>
		<description><![CDATA[Google Analytics is used by a significant number of online publishers and businesses to track how internet users are interacting with their websites. But data is data, and visualizing how Google Analytics data relates to specific pages can be a difficult task. So last week, Google launched In-Page Analytics, which it hopes will make Analytics [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Google Analytics is used by a significant number of online publishers<br />
and businesses to track how internet users are interacting with their<br />
websites.</strong></p>
<p>But data is data, and visualizing how Google Analytics data relates to<br />
specific pages can be a difficult task. So last week, Google <a href="http://analytics.blogspot.com/2010/10/introducing-in-page-analytics-visual.html">launched</a><br />
In-Page Analytics, which it hopes will make Analytics more useful by<br />
adding &#8220;<em>visual context</em>&#8221; to data.</p>
<p>Located in the Content section of Analytics, In-Page Analytics is designed to answer questions like &#8220;<em>Is my page layout optimal for what I want users to accomplish on the page?</em>&#8221; and &#8220;<em>Are my users seeing the content I want them to see?</em>&#8220;</p>
<p>In-Page Analytics works by superimposing Analytics data on your website so that it can be viewed while actually browsing. So, for instance, while browsing a particular page on your website, In-Page Analytics will display &#8216;<em>bubbles</em>&#8216; detailing what percentage of clicks each link on the page generated. When clicked, these bubbles can provide additional data, such as goal conversion metrics.</p>
<p>One of the coolest features of In-Page Analytics is integration with advanced segments. With a couple of clicks, it&#8217;s possible to visualize how different types of visitors are interacting with a page. If you&#8217;re particularly interested in how paid traffic is interacting with a particular page, for instance, it&#8217;s easy to visualize this using In-Page Analytics and advanced segments.</p>
<p>Overall, In-Page Analytics is a feature that many Google Analytics users will likely come to use on a regular basis, and it will probably be especially beneficial to Google Analytics users who aren&#8217;t dataheads. After all, one picture is worth a thousand Google Analytics reports.</p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/it-news/google-adds-visual-context-to-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Next Level of Design: Being Unique</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/the-next-level-of-design-being-unique/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/the-next-level-of-design-being-unique/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 11:49:52 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[design recipe]]></category>
		<category><![CDATA[drop shadows]]></category>
		<category><![CDATA[gradient]]></category>
		<category><![CDATA[gradients]]></category>
		<category><![CDATA[hundreds thousands]]></category>
		<category><![CDATA[navigation bar]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[stunning designs]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/the-next-level-of-design-being-unique/</guid>
		<description><![CDATA[In a world filled with CSS galleries and showcase websites, everything starts to look the same. Gradients, rounded corners, drop shadows, it&#8217;s extremely hard to get away from the strongest of trends in our industry. Each year however, some people manage to set themselves totally apart from everyone else and produce stunning designs with inspiration [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerdepot.com/2010/07/the-next-level-of-design-being-unique/"><img class="alignleft size-full wp-image-19220" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c2b06_thumb9.jpg" alt="thumb" width="200" height="160" /></a>In a world filled with CSS galleries and showcase websites, everything starts to look the same.</p>
<p>Gradients, rounded corners, drop shadows, it&#8217;s extremely hard to get away from the strongest of trends in our industry.</p>
<p>Each year however, some people manage to set themselves totally apart from everyone else and produce stunning designs with inspiration seemingly flowing directly out of their fingers and into their work.</p>
<p>In this post, we&#8217;ll take a look at a few of those people and some of the things which they do to be unique from everyone else.</p>
<p><span></span></p>
<h1>What Constitutes Being Unique?</h1>
<p>It&#8217;s all well and good suggesting that you should be unique and different from the competition, but what does that really mean? There are so many websites and great designers out there, what individual elements constitute being unique?</p>
<p>Well, in simple terms being unique just means doing something differently. You don&#8217;t have to create a design with the navigation in the footer and the copyright information up where the logo would normally be just for the sake of standing out. It&#8217;s about not just following what everyone else is doing and coming up with your very own way of displaying the information and the message which you are trying to get across to the user.</p>
<p>How many sites have you seen with a full width header (with a gradient), followed by a full width navigation bar, then a content section and a sidebar, then a full width footer? Hundreds? Thousands? If your focus is going to be being unique, then this is probably a design recipe which you should steer clear of. It&#8217;s too easy to create yet another site like that. Don&#8217;t get me wrong, they are popular because they are effective and easy to create&#8230; but they don&#8217;t stand out.</p>
<p>Being unique is largely about doing small things differently to everyone else rather than trying to reinvent the wheel. Of course you also have to accept that the time period for which it remains unique will be limited. If you do a great job, then unfortunately (or fortunately, depending on how you look at it) it&#8217;s going to be copied by many, many people. That being said, innovation is almost always remembered.</p>
<p><br class="spacer_" /></p>
<h1>Using Details To Stand Out</h1>
<p>Details are a fantastic way to set yourself apart from everyone else and the best part is that the word &#8220;details&#8221; encompasses a fairly wide array of possibilities. Adding detail to something just gives it that little edge, or that little bit of &#8220;pop&#8221; as a client might call it. You&#8217;re adding something small that isn&#8217;t essential to the design but that really impacts it in a positive way.</p>
<h1>Jason Santa Maria</h1>
<p><img class="image-border" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c2b06_130.jpg" alt="1" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19195" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cfff1_230.jpg" alt="2" width="615" height="250" /></p>
<p><img class="image-border" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cfff1_326.jpg" alt="3" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://jasonsantamaria.com/" target="_blank">Jason Santa Maria</a>&#8217;s focus on detail often largely surrounds his attention to typography and textual layout. He goes the extra mile to make the words he&#8217;s written look <em>really</em> good. Regardless of the design surrounding them it&#8217;s instantly apparently how much thought and effort has gone into styling the body text. How much time and effort do you usually put into styling your bog-standard page content?</p>
<p><br class="spacer_" /></p>
<h1><em> </em>Jesse Bennett Chamberlain</h1>
<p><img class="alignnone size-full wp-image-19197" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cfff1_427.jpg" alt="4" width="615" height="250" /></p>
<p><img class="image-border" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/65f42_518.jpg" alt="5" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19199" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/65f42_617.jpg" alt="6" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://www.31three.com/portfolio/" target="_blank">Jesse Bennett</a> is a master of light sources. Looking at his designs you&#8217;ll rarely find a flat surface that hasn&#8217;t had lighting considered in some way. Now we to be clear here, he&#8217;s not just using pretty gradients because they&#8217;re&#8230;. pretty. He&#8217;s applying lighting effects <em>using</em> gradients. All the light-to-dark effects flow in the same direction and he&#8217;ll frequently create abstract background images to offset this even more. This clean and consistent attention to detail really stands out.</p>
<p><br class="spacer_" /></p>
<h1>Having a Signature Style</h1>
<p>A signature style is perhaps what we all long for. In the same way that people are able to identify a Picasso when viewing it for the first time, we all have a little ego inside us that would love to have a style so strong and recognizable that others would immediately be able to pick it out without being prompted.</p>
<h1>Elliot Jay Stocks</h1>
<p><img class="alignnone size-full wp-image-19200" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10e4d_716.jpg" alt="7" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19201" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10e4d_815.jpg" alt="8" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19202" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/10e4d_915.jpg" alt="9" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://elliotjaystocks.com/" target="_blank">Elliot Jay Stocks</a> is usually the first name that comes to mind when thinking about signature styles. His uses of grungy textured backgrounds and typography are unmistakable. Significantly, he doesn&#8217;t over use them. You don&#8217;t get the impression that all of his sites look the same in any way, but more often than not you can tell if you&#8217;ve just arrived at a site which has been designed by him because all the signature elements are right there, subtly woven into the whole design.</p>
<p><br class="spacer_" /></p>
<h1>Mike Kus<br class="spacer_" /></h1>
<p><img class="alignnone size-full wp-image-19203" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8d539_106.jpg" alt="10" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19204" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8d539_1111.jpg" alt="11" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19205" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/838d2_1211.jpg" alt="12" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://mikekus.com/" target="_blank">Mike Kus</a> is another classic case study for having a signature style. With both Elliot and Mike having roots in Carsonified one has to wonder whether this is the type of designer which Ryan Carson looks for, or whether he fosters and encourages it amongst all of his employees? Mike&#8217;s style is bold and very heavily print influenced. Strong, solid colors, a lot over overlapping elements and clever uses of opacity are what make Mike&#8217;s designs instantly identifiable.</p>
<p><br class="spacer_" /></p>
<h1>Illustration To Blow Away The Competition</h1>
<p>Illustration is one of the most stunning but also perhaps one of the most difficult ways of standing out from the crowd. Very few designers are also great illustrators. Illustration is (for the most part) very artistic whereas design is (for the most part) very analytical. To find these two qualities mixed in a single person is somewhat rare though definitely not unheard of.</p>
<p>For many of us though, seeing stunning illustrations in website designs is a point of the utmost jealousy. Not being an illustrator doesn&#8217;t mean that you can&#8217;t use illustrations in your designs though, as well as the many stock websites dealing in illustrations there is also always the option to partner with a great illustrator in a collaborative effort from both parties.</p>
<h1>Nick La</h1>
<p><img class="alignnone size-full wp-image-19206" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/838d2_136.jpg" alt="13" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19208" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/11c8a_155.jpg" alt="15" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19209" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/26c4f_165.jpg" alt="16" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://www.ndesign-studio.com/" target="_blank">Nick La</a> has got to be the epitome of using illustrations to create unique websites. Over the years he has churned out site after site with the most gorgeous illustrations grabbing you by the eyeballs and refusing to let go. The key thing about Nick&#8217;s work is that not only are his illustrations immaculate but they are also woven flawlessly into the very fabric of the design which they sit on top of. Such a seamless approach forces users to consider the beauty of the design as well as its effectiveness.</p>
<p><br class="spacer_" /></p>
<h1>Veerle Pieters<br class="spacer_" /></h1>
<p><img class="alignnone size-full wp-image-19210" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/26c4f_176.jpg" alt="17" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19211" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/26c4f_185.jpg" alt="18" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19212" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0cf58_195.jpg" alt="19" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://www.duoh.com/portfolio/category/web/" target="_blank">Veerle Pieters</a> is another example of a designer who makes fantastic use of illustrations within her designs and has become well known for it as a result. Rightfully so, her illustrations in particular make her designs stand out a mile and half from everything else. Veerle&#8217;s designs by themselves are excellent but browsing through her portfolio of work you can&#8217;t help but noticing how it&#8217;s the illustrated characters in each one that really take it to the next level.</p>
<p><br class="spacer_" /></p>
<h1>Putting Time &amp; Effort Into Extras</h1>
<p>What else is there? Well aside from just details, there are also extras. You know, little things that you just don&#8217;t expect to be meticulously designed because they&#8217;re so small. Surprising users (or even customers, in the physical world) is a fantastic way to set yourself apart from everyone else because you&#8217;re giving them something they weren&#8217;t expecting. Their expectations are based on what everyone else is doing, so if you exceed those expectations&#8230; you win.</p>
<h1>Clearleft</h1>
<p><img class="alignnone size-full wp-image-19213" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0cf58_205.jpg" alt="20" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19214" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0cf58_2111.jpg" alt="21" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19215" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/88fe8_2210.jpg" alt="22" width="615" height="250" /></p>
<p>It&#8217;s hard to pinpoint a single name at <a rel="nofollow" href="http://clearleft.com/" target="_blank">ClearLeft</a> in the UK to single out for this achievement (though former staffer <a rel="nofollow" href="http://paulannett.com/" target="_blank">Paul Annett</a> would be high on the list) but they seem to have a knack for producing websites which do really interesting things when hovered over or re-sized. The Silverback website is of course the main one which everyone thinks of here but they&#8217;ve done similar things on both client sites and the multitude of sites produced for the <a rel="nofollow" href="http://dconstruct.org" target="_blank">dConstruct</a> conference each year.</p>
<p><br class="spacer_" /></p>
<h1>Liam McKay</h1>
<p><img class="alignnone size-full wp-image-19216" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/51629_235.jpg" alt="23" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19217" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/51629_244.jpg" alt="24" width="615" height="250" /></p>
<p><img class="alignnone size-full wp-image-19218" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/51936_254.jpg" alt="25" width="615" height="250" /></p>
<p><a rel="nofollow" href="http://wefunction.com/" target="_blank">Liam McKay</a> is the final name which comes to mind when discussing putting that extra bit of effort into things which most people take for granted. Liam has a knack for seeing something simple and turning it into something beautiful. Whether that be with one of his bespoke icons (which are used throughout the entire Envato network), or by adding an incredibly subtle texture or enhancement that&#8217;s only visible to a few users, he&#8217;s constantly going the extra mile to design things which most people don&#8217;t bother with.</p>
<p><br class="spacer_" /></p>
<h1>In Closing</h1>
<p>Being unique isn&#8217;t about trying to turn the world on its head, it isn&#8217;t about massive typography, it isn&#8217;t about rounded corners.</p>
<p>Truly standing out from everyone else is about adding a personal touch to your designs, one which only you can create. Truly standing out is about going above and beyond the call of duty and not stopping until you hit that eureka moment.</p>
<p><br class="spacer_" /></p>
<p><em>This post was authored exclusively for WDD by <a href="http://john.onolan.org/">John   O&#8217;Nolan</a>,   a core contributor to the WordPress UI Team, writer and entrepreneur   based in   Surrey in the United Kingdom. John loves to talk to people,   so why not follow <a rel="nofollow" href="http://twitter.com/johnonolan" target="_blank">@JohnONolan</a> on twitter too?</em></p>
<p><em><strong>What do you think? Are there any other particular factors that make designs really unique? What techniques have you used in order to stand out from the crowd?</strong></em></p>
<p>If you find an exclusive RSS freebie on this feed or on the live WDD website, please use the following code to download it: H0Oa9C</p>
<p> <a href="http://www.webdesignerdepot.com/2010/09/the-next-level-of-design-being-unique/">Source</a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/ujbmYIAxiVwdmMoXI-KlhyC7xm0/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/51936_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/ujbmYIAxiVwdmMoXI-KlhyC7xm0/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/51936_di" border="0"></img></a></p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/51936_JKBoimG1yUs" height="1" width="1" /><br />
<a href="http://www.webdesignerdepot.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/the-next-level-of-design-being-unique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress vs. ExpressionEngine: Apples and Oranges?</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/wordpress-vs-expressionengine-apples-and-oranges/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/wordpress-vs-expressionengine-apples-and-oranges/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 13:54:13 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[blogosphere]]></category>
		<category><![CDATA[changing channels]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[input data]]></category>
		<category><![CDATA[input screen]]></category>
		<category><![CDATA[new category]]></category>
		<category><![CDATA[strides]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/wordpress-vs-expressionengine-apples-and-oranges/</guid>
		<description><![CDATA[This post has been a long time coming. Whether on Twitter or in the blogosphere, the question often arises, and I have been asked numerous times for my opinion on the ExpressionEngine vs. WordPress debate, and why one would choose one content management system (CMS) over the other. My usual answer is that they cannot [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerdepot.com/2010/03/wordpress-vs-expressionengine-apples-and-oranges/"><img class="alignleft" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/58dc9_thumb2.jpg" alt="" width="200" height="160" /></a>This post has been a long time coming. Whether on Twitter or in the  blogosphere, the question often arises, and I have been asked numerous  times for my opinion on the <a href="http://expressionengine.com/">ExpressionEngine</a> vs. <a href="http://wordpress.org/">WordPress</a> debate, and why one  would choose one content management system (CMS) over the other.</p>
<p>My  usual answer is that they cannot be compared. While WordPress had made  huge strides in usability, for anything other than a blog it is an  apple.</p>
<p>ExpressionEngine, with the release of version 2.0, makes for a  lovely platform that is, as we will see, an orange.<span></span></p>
<h1>Handling Content</h1>
<p>The biggest difference between WordPress and ExpressionEngine is  the way in which content is handled.</p>
<p>In WordPress, we all know that you  can create a new post. This new post usually has a content section but  may have some custom fields that are defined either on the fly or by the  developer who created the template&#8217;s framework.</p>
<p>So, when you create a new post, the content will be displayed in  different ways, depending on the category chosen and whether the  category is a parent or child (i.e. sub-category). For the most part,  though, whether they choose a new category or input data into  pre-defined custom fields, the user will see the same input screen.</p>
<p>The  items chosen by the user determine how the content is displayed. Some  users like this. I think it shows WordPress’ roots as a blogging  platform. This is not a knock because WordPress has certainly pushed the  envelope on what can be done with a CMS just by uploading a few files.  More to come on themes later.</p>
<p><br class="spacer_" /></p>
<h1>Changing Channels</h1>
<p>ExpressionEngine handles content quite differently. In  ExpressionEngine, the user defines channels.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/90bc5_channel.gif" alt="" /></p>
<p>Each channel can be thought of as a separate blog—in fact, this is  what it was called back in version 1.6.x. For each channel, you can  define custom fields, categories and behaviors.</p>
<p>All of this is hidden  from the average user in the administration portion of the website. The  user would typically have access only to the “Publish” and “Edit”  sections of the website and possibly some modules (which is similar to  plug-ins in WordPress).</p>
<p><br class="spacer_" /></p>
<h1>An Example</h1>
<p>Recently we built a website for the <a href="http://baycommunity.com/">Bay Community Church</a> using  ExpressionEngine. The website has a media section, and in that channel  we created the following custom fields: title, description, image, audio  and video files, file sizes, file lengths, and date on which the files  were recorded.</p>
<p>Of course, channels can be as simple or as complex as you  like (this particular website had five to six more custom fields for  the media channel alone).</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e1c62_media.gif" alt="" /></p>
<p>Most ExpressionEngine developers realize the power of the CMS’  add-ons, which also happens to be why most of them have been slow to  move from version 1.6.x to 2.0. They know that most of the add-ons won&#8217;t  be available for 2.0 for another couple of months.</p>
<p>With just a few add-ons, we extended ExpressionEngine, allowing  church staff to add multiple files per entry. In the content structure  of this particular website, a sermon series would be an entry on its  own, and individual sermons for that series would be added to it.</p>
<p>To  make it even more complicated, you could have any number of different  types of fields in a channel (e.g. textbox, textarea, checkbox, <a href="http://www.experienceinternet.co.uk/bucketlist/">S3 Integrated  BucketList</a>, <a href="http://brandon-kelly.com/fieldframe">FieldFrame  Matrix</a>, <a href="http://www.ngenworks.com/software/ee/ngen-file-field/">nGen File  Field</a>).</p>
<p>The website also has a section for small groups of people who  gather for studies or fellowship.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a16ff_baycommunity.gif" alt="" /></p>
<p>If you navigate to a “New entry” page for the small groups, you  would see a completely different set of custom fields (title, leader,  location, meeting time, etc). So, from the user&#8217;s perspective, entering  new content is easy because each channel is tailored to the content they  are recording.</p>
<p><br class="spacer_" /></p>
<h1>Why I Love ExpressionEngine</h1>
<p>As a web designer, I love ExpressionEngine because it gives me  extensive control. Most of my clients don&#8217;t have a single WYSIWYG editor  anywhere on their website! I can control headings, MP3s, PDFs, lists  and whatever else needs styling through CSS.</p>
<p>Unless they decide to learn  HTML in order to apply inline styling, the design won&#8217;t be horrendously  violated with 50-pixel blinking red fonts.</p>
<p><br class="spacer_" /></p>
<h1>Content Construction Kit</h1>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/70dd3_baycommunity2.gif" alt="" /></p>
<p>I believe the Drupal community originally coined the term Content  Construction Kit (CCK). CCK basically allows the user to define various  types of content.</p>
<p>Perhaps the folks at EllisLab would disagree, but I  would define ExpressionEngine as a CCK system. WordPress seems to be  moving in that direction but is not there yet. Plenty of WordPress  template developers are designing and adding to the framework, giving  WordPress new kinds of functionality.</p>
<p><br class="spacer_" /></p>
<h1>Changing the Look and Feel</h1>
<p>For the most part, anyone can set up a WordPress blog or website  with little knowledge of WordPress, PHP, HTML or anything else that  would keep an Internet newcomer from blogging.</p>
<p>I have a non-technical  friend who has set up several WordPress blogs without any of my help.  Just download a template package; unzip it; upload it to <code>wp-content/themes</code>;  log in; activate the new template; and voila! Magic happens, and you  end up with a whole new website. WordPress shines in this area.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2b847_wptheme.gif" alt="" /></p>
<p><br class="spacer_" /></p>
<h1>ExpressionEngine 2.0 Moving in the Right Direction</h1>
<p>ExpressionEngine, on the other hand, has no easy way to add or  change themes… yet.</p>
<p>With version 2.0, we are seeing the team at EllisLab  starting to move in that direction. The team has added functionality  that allows users to upload HTML and CSS files into folders with  specific naming conventions (<em>blog.group</em>, <em>main.group</em>, <em>portfolio.group</em>,  etc.), and you can synchronize the HTML and CSS files with  ExpressionEngine, which will recognize and render them.</p>
<p>The problem is that ExpressionEngine only begins to shine when you  get into its CCK capabilities. So, syncing files is great, but that does  not get you the custom fields, categories and channels that bring  ExpressionEngine to life.</p>
<p>EllisLab has added a file to the CMS named <em>default_content.php</em>,  which is required to install a theme and which specifies default  content, channels, custom fields and the like. But the file is not  exactly intuitive.</p>
<p>ExpressionEngine fields are highly relational, so you  definitely need to grasp SQL if you want to put a <em>default_content.php</em> file together.</p>
<p><br class="spacer_" /></p>
<h1>Changing Themes</h1>
<p>With WordPress, you can upload a new theme to change the look of  the website at any time.</p>
<p>ExpressionEngine, on the other hand, allows a  theme to be added only at the point of installation. So, if a user wants  to change the look of their website, they&#8217;ll have to jump through  hoops.</p>
<p>They would either have to keep their HTML, custom fields and  other elements and then change the CSS and images. Or they would have to  learn the system and then define custom fields, categories and  channels. But this goes back to the way the two systems handle content.</p>
<p>Themes in WordPress typically all handle content the same way. Themes in  ExpressionEngine do not.</p>
<p><br class="spacer_" /></p>
<h1>What Have We Learned?</h1>
<p>WordPress is especially good for PHP developers, tinkerers and  bloggers. It is great for PHP developers because they can bend the CMS  to their will; they can add functionality to the framework, as well as  add custom fields and modify them at will.</p>
<p>It is great for tinkerers,  who can set up a website easily; and if they ever get bored with the  look and feel, they can search online for a new theme and have a  completely new website in 20 minutes.</p>
<p>They can also download widgets and  plug-ins that add functionality quickly. And having started out as a  blogging system, WordPress really shines as a personal blog.</p>
<p><img class="alignright" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/33830_appleorange.jpg" alt="" width="191" height="115" />ExpressionEngine is great for front-end developers and designers  because it does not require that users learn a difficult programming  language in order to manipulate it.</p>
<p>Most HTML and CSS gurus can grasp  the simple expressions and how to use them.</p>
<p>ExpressionEngine is the tool  of choice for some well-known designers: <a href="http://31three.com/">Jesse  Bennett-Chamberlain</a>, <a href="http://veerle.duoh.com/">Veerle  Pieters</a> and <a href="http://stuffandnonsense.co.uk/">Andy Clarke</a>,  to name a few. It is extremely flexible, and few things cannot be  accomplished with it.</p>
<p>As you can see, then, it really is an apples to oranges comparison.</p>
<p><br class="spacer_" /></p>
<p><em>This post was written exclusively for Webdesigner Depot by  Marcus Neto. Marcus is a member of the ExpressionEngine Pro Network and  is the man behind the curtain at <a href="http://eetemplates.com/">EETemplates.com</a> and <a href="http://bluefishdesignstudio.com/">Blue Fish Design Studio</a>.  He also has his say on Twitter <a href="http://twitter.com/marcusneto">@marcusneto</a>.</em></p>
<p>If you find an exclusive RSS freebie on this feed or on the live WDD website, please use the following code to download it: K0nb3p</p>
<p><a href="http://feedads.g.doubleclick.net/~a/gxDrO46HLZkEXzibIH6r8JK0Vw0/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/33830_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/gxDrO46HLZkEXzibIH6r8JK0Vw0/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/33830_di" border="0"></img></a></p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/33830_wdVvO30eo54" height="1" width="1" /><br />
<a href="http://www.webdesignerdepot.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/wordpress-vs-expressionengine-apples-and-oranges/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Most Interesting Design Trends Among Blogs: 2010</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-blogs-2010/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-blogs-2010/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 11:10:31 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[design trend]]></category>
		<category><![CDATA[eye web]]></category>
		<category><![CDATA[h1 h2]]></category>
		<category><![CDATA[pushing the limits]]></category>
		<category><![CDATA[simplistic design]]></category>
		<category><![CDATA[smooth design]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-blogs-2010/</guid>
		<description><![CDATA[The web is an dynamic, organic being. It evolves as people do, responding to trends in blogging and design by constantly raising the bar. With millions of bloggers out there, we see constant evolutions of the next design trend. Here are some of my favorite recent trends in web design. Although the examples listed here [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/resources/design-trends-among-blogs/" target="_self"><img class="size-full wp-image-4763 alignleft" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0a2cb_title-design-trends-among-blogs.jpg" alt="" width="150" height="150" /></a>The web is an dynamic, organic being. It evolves as people do, responding to trends in blogging and design by constantly raising the bar. With millions of bloggers out there, we see constant evolutions of the next design trend.</p>
<p>Here are some of my favorite recent trends in web design. Although the examples listed here may not be the orginator of the trend, they are the first to catch my eye.<span></span></p>
<h2><a href="http://fluidtheme.tumblr.com/" target="_blank">Web 2.0</a></h2>
<p>The design trend associated with Web 2.0 is actually multiple trends rolled into one.</p>
<ul>
<li>Round corners</li>
<li>Glossy/Shiny graphics</li>
<li>Big, prominent graphics</li>
<li>Larger, non-serif typography</li>
</ul>
<p><a title="Web 2.0 Web Design Trends" href="http://fluidtheme.tumblr.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/4d088_web20-web-design-trends.jpg" alt="web20-web-design-trends" width="570" height="266" /></a></p>
<h2><a href="http://2008.dconstruct.org/" target="_blank">Simple</a></h2>
<p>I&#8217;ve often said, a designer who can pull off a simplistic design is just as talented as the one that can create a super-complex one. That is because a simple design is more than just leaving elements out. It is about balancing design, carefully choosing colors and typography, and expertly integration navigation and content to create an effective and smooth design.</p>
<p><a href="http://2008.dconstruct.org/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c7b7a_simple-web-design-trends.jpg" alt="simple-web-design-trends" width="570" height="267" /></a></p>
<h2><a href="http://www.thegreenwashingblog.com" target="_blank">Whole site branding integration</a></h2>
<p>Orginally, web designs included a header, with a logo and a content section, with the content. Recently, designers are pushing the limits by incorporating colors, logos, branding, messaging and graphics throughout the entire site, not just the header.</p>
<p><a title="Greenwashing" href="http://www.thegreenwashingblog.com" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/74610_continuity-web-design-trends.jpg" alt="continuity-web-design-trends" width="570" height="266" /></a></p>
<h2><a href="http://ilovetypography.com/" target="_blank">Advanced typography</a></h2>
<p>Web designers are putting much more thought into typography. There are many resources popping up to pick a typography set. Once upon a time, designs included an h1, h2, and p style. Now some designs include dozens of different font stylings.</p>
<p><a href="http://ilovetypography.com/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/45258_typography-web-design-trends.jpg" alt="typography-web-design-trends" width="570" height="267" /></a></p>
<h2><a href="http://www.twitter.com" target="_blank">Single page design</a></h2>
<p>Along with designing simpler sites, designers are exploring ways to keep content on one page. In portfolios, showcases or simple informational sites, developers are looking for ways to put all content on page one so the readers sees it all without having to click through anywhere. The example below you will recognized as Twitter. As arguably one of the top 5 sites on the web, everything you need to know about Twitter is located on the front page.</p>
<p><a href="http://www.twitter.com" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/7ddc7_twitter-one-page-web-design-trends.jpg" alt="twitter-one-page-web-design-trends" width="570" height="263" /></a></p>
<h2><a href="http://www.wordpress.org" target="_blank">AJAX</a></h2>
<p>You know AJAX (asynchronous JavaScript and XML), it is that cool interaction when you click something on a site and it changes, without reloading. This is a huge advancement in web design technology and allows users to get the content they desire without moving about the site. Most major publishing platforms have integrated AJAX into their codex. The leader is easily seen in all the <a href="http://www.pingable.org/20-great-wordpress-ajax-plugins">WordPress AJAX plugins</a>.</p>
<p><a href="http://www.wordpress.org" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/07823_ajax-web-design-trends.jpg" alt="ajax-web-design-trends" width="570" height="263" /></a></p>
<h2><a href="http://www.tutorial9.net" target="_blank">Large images</a></h2>
<p>Advances in compression technology, increased internet access speeds have allowed designers to grow the size and quality of images they use in new designs. This makes for an appealing and graphically pleasing design.</p>
<p><a href="http://www.tutorial9.net" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e301e_big-images-web-design-trends.jpg" alt="big-images-web-design-trends" width="570" height="267" /></a></p>
<h2><a href="http://carlcartee.com" target="_blank">Perspective and depth</a></h2>
<p>Strategically using dropshadows, angles and overlaps, designers have added a 3rd dimension to web design that was previously limited to 2 dimensions. Using these techniques, designers are able to draw user attention to specific areas consistent with the goals of the site. Perhaps conversion forms, twitter buttons or featured content.</p>
<p><a href="http://carlcartee.com" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ebc8f_dimension-web-design-trends.jpg" alt="dimension-web-design-trends" width="570" height="263" /></a></p>
<h2><a href="http://www.cogitatur.pl/" target="_blank">Themed designs</a></h2>
<p>Designers are adding overarching themes like <em>grunge, retro, whimsical</em>, etc. These themes tie together all elements of a design and give the user a feeling of continuity, adding to the overall experience.</p>
<p><a href="http://www.cogitatur.pl/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/88417_grunge-web-design-trends.jpg" alt="grunge-web-design-trends" width="570" height="266" /></a></p>
<h2><a href="http://www.carbonica.org/" target="_blank">Specific purpose</a></h2>
<p>Designers have realized that themes should be designed for a specific purpose such as <em>magazine, portfolio, <a href="http://www.hippiemagazine.com">green</a>, blogging,</em> etc. Designing for a purpose allows the designer and webmaster to focus on function and not generalize the design so it can be used across multiple different sites.</p>
<p><a href="http://www.carbonica.org/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/29f6c_style-web-design-trends.jpg" alt="style-web-design-trends" width="570" height="259" /></a></p>
<h2>Additional Resources</h2>
<ul>
<li><a href="http://webdesignledger.com/tips/web-design-trends-for-2010">Web Design Trends for 2010</a></li>
<li><a href="http://www.pingable.org/20-of-the-best-free-magazine-wordpress-themes/">WordPress Magazine Themes</a></li>
<li><a href="http://www.pingable.org/100-stunning-professional-portfolio-wordpress-themes/">WordPress Portfolio Themes</a></li>
<li><a href="http://sixrevisions.com/graphics-design/20-useful-typography-tools/">Typography tools</a></li>
</ul>
<p>Related posts:
<ol>
<li><a href="http://www.1stwebdesigner.com/development/popular-promising-web-design-blogs/" rel="bookmark" title="Permanent Link: 63 Popular And Promising Web Design Blogs">63 Popular And Promising Web Design Blogs</a></li>
<li><a href="http://www.1stwebdesigner.com/inspiration/logo-design-trends-2009/" rel="bookmark" title="Permanent Link: Logo Design Trends 2009 – Showcase">Logo Design Trends 2009 &#8211; Showcase</a></li>
<li><a href="http://www.1stwebdesigner.com/wordpress/sites-find-free-wordpress-themes-daily/" rel="bookmark" title="Permanent Link: 21 Sites Where To Find Free WordPress Themes Daily">21 Sites Where To Find Free WordPress Themes Daily</a></li>
<li><a href="http://www.1stwebdesigner.com/resources/30-sources-to-get-your-web-design-inspiration/" rel="bookmark" title="Permanent Link: 30 Sources To Get Your Web Design Inspiration">30 Sources To Get Your Web Design Inspiration</a></li>
<li><a href="http://www.1stwebdesigner.com/inspiration/13-beautiful-wordpress-showcase-sites/" rel="bookmark" title="Permanent Link: 13 Beautiful WordPress Showcase Sites">13 Beautiful WordPress Showcase Sites</a></li>
</ol>
<p><a href="http://www.1stwebdesigner.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-blogs-2010/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Most Interesting Design Trends Among Popular Blogs</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-popular-blogs/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-popular-blogs/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 00:10:38 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[design trend]]></category>
		<category><![CDATA[eye web]]></category>
		<category><![CDATA[h1 h2]]></category>
		<category><![CDATA[pushing the limits]]></category>
		<category><![CDATA[simplistic design]]></category>
		<category><![CDATA[smooth design]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-popular-blogs/</guid>
		<description><![CDATA[The web is an dynamic, organic being. It evolves as people do, responding to trends in blogging and design by constantly raising the bar. With millions of bloggers out there, we see constant evolutions of the next design trend. Here are some of my favorite recent trends in web design. Although the examples listed here [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1stwebdesigner.com/resources/design-trends-among-blogs/" target="_self"><img class="size-full wp-image-4763 alignleft" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/36a2b_title-design-trends-among-blogs.jpg" alt="" width="150" height="150" /></a>The web is an dynamic, organic being. It evolves as people do, responding to trends in blogging and design by constantly raising the bar. With millions of bloggers out there, we see constant evolutions of the next design trend.</p>
<p>Here are some of my favorite recent trends in web design. Although the examples listed here may not be the orginator of the trend, they are the first to catch my eye.<span></span></p>
<h2><a href="http://fluidtheme.tumblr.com/" target="_blank">Web 2.0</a></h2>
<p>The design trend associated with Web 2.0 is actually multiple trends rolled into one.</p>
<ul>
<li>Round corners</li>
<li>Glossy/Shiny graphics</li>
<li>Big, prominent graphics</li>
<li>Larger, non-serif typography</li>
</ul>
<p><a title="Web 2.0 Web Design Trends" href="http://fluidtheme.tumblr.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/0f410_web20-web-design-trends.jpg" alt="web20-web-design-trends" width="570" height="266" /></a></p>
<h2><a href="http://2008.dconstruct.org/" target="_blank">Simple</a></h2>
<p>I&#8217;ve often said, a designer who can pull off a simplistic design is just as talented as the one that can create a super-complex one. That is because a simple design is more than just leaving elements out. It is about balancing design, carefully choosing colors and typography, and expertly integration navigation and content to create an effective and smooth design.</p>
<p><a href="http://2008.dconstruct.org/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/aa6fc_simple-web-design-trends.jpg" alt="simple-web-design-trends" width="570" height="267" /></a></p>
<h2><a href="http://www.thegreenwashingblog.com" target="_blank">Whole site branding integration</a></h2>
<p>Orginally, web designs included a header, with a logo and a content section, with the content. Recently, designers are pushing the limits by incorporating colors, logos, branding, messaging and graphics throughout the entire site, not just the header.</p>
<p><a title="Greenwashing" href="http://www.thegreenwashingblog.com" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ab0c5_continuity-web-design-trends.jpg" alt="continuity-web-design-trends" width="570" height="266" /></a></p>
<h2><a href="http://ilovetypography.com/" target="_blank">Advanced typography</a></h2>
<p>Web designers are putting much more thought into typography. There are many resources popping up to pick a typography set. Once upon a time, designs included an h1, h2, and p style. Now some designs include dozens of different font stylings.</p>
<p><a href="http://ilovetypography.com/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/45743_typography-web-design-trends.jpg" alt="typography-web-design-trends" width="570" height="267" /></a></p>
<h2><a href="http://www.twitter.com" target="_blank">Single page design</a></h2>
<p>Along with designing simpler sites, designers are exploring ways to keep content on one page. In portfolios, showcases or simple informational sites, developers are looking for ways to put all content on page one so the readers sees it all without having to click through anywhere. The example below you will recognized as Twitter. As arguably one of the top 5 sites on the web, everything you need to know about Twitter is located on the front page.</p>
<p><a href="http://www.twitter.com" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c5a3d_twitter-one-page-web-design-trends.jpg" alt="twitter-one-page-web-design-trends" width="570" height="263" /></a></p>
<h2><a href="http://www.wordpress.org" target="_blank">AJAX</a></h2>
<p>You know AJAX (asynchronous JavaScript and XML), it is that cool interaction when you click something on a site and it changes, without reloading. This is a huge advancement in web design technology and allows users to get the content they desire without moving about the site. Most major publishing platforms have integrated AJAX into their codex. The leader is easily seen in all the <a href="http://www.pingable.org/20-great-wordpress-ajax-plugins">WordPress AJAX plugins</a>.</p>
<p><a href="http://www.wordpress.org" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/01cc4_ajax-web-design-trends.jpg" alt="ajax-web-design-trends" width="570" height="263" /></a></p>
<h2><a href="http://www.tutorial9.net" target="_blank">Large images</a></h2>
<p>Advances in compression technology, increased internet access speeds have allowed designers to grow the size and quality of images they use in new designs. This makes for an appealing and graphically pleasing design.</p>
<p><a href="http://www.tutorial9.net" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6b784_big-images-web-design-trends.jpg" alt="big-images-web-design-trends" width="570" height="267" /></a></p>
<h2><a href="http://carlcartee.com" target="_blank">Perspective and depth</a></h2>
<p>Strategically using dropshadows, angles and overlaps, designers have added a 3rd dimension to web design that was previously limited to 2 dimensions. Using these techniques, designers are able to draw user attention to specific areas consistent with the goals of the site. Perhaps conversion forms, twitter buttons or featured content.</p>
<p><a href="http://carlcartee.com" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a3ed8_dimension-web-design-trends.jpg" alt="dimension-web-design-trends" width="570" height="263" /></a></p>
<h2><a href="http://www.cogitatur.pl/" target="_blank">Themed designs</a></h2>
<p>Designers are adding overarching themes like <em>grunge, retro, whimsical</em>, etc. These themes tie together all elements of a design and give the user a feeling of continuity, adding to the overall experience.</p>
<p><a href="http://www.cogitatur.pl/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/56bb6_grunge-web-design-trends.jpg" alt="grunge-web-design-trends" width="570" height="266" /></a></p>
<h2><a href="http://www.carbonica.org/" target="_blank">Specific purpose</a></h2>
<p>Designers have realized that themes should be designed for a specific purpose such as <em>magazine, portfolio, <a href="http://www.hippiemagazine.com">green</a>, blogging,</em> etc. Designing for a purpose allows the designer and webmaster to focus on function and not generalize the design so it can be used across multiple different sites.</p>
<p><a href="http://www.carbonica.org/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/3ecd2_style-web-design-trends.jpg" alt="style-web-design-trends" width="570" height="259" /></a></p>
<h2>Additional Resources</h2>
<ul>
<li><a href="http://webdesignledger.com/tips/web-design-trends-for-2010">Web Design Trends for 2010</a></li>
<li><a href="http://www.pingable.org/20-of-the-best-free-magazine-wordpress-themes/">WordPress Magazine Themes</a></li>
<li><a href="http://www.pingable.org/100-stunning-professional-portfolio-wordpress-themes/">WordPress Portfolio Themes</a></li>
<li><a href="http://sixrevisions.com/graphics-design/20-useful-typography-tools/">Typography tools</a></li>
</ul>
<p>Related posts:
<ol>
<li><a href="http://www.1stwebdesigner.com/development/popular-promising-web-design-blogs/" rel="bookmark" title="Permanent Link: 63 Popular And Promising Web Design Blogs">63 Popular And Promising Web Design Blogs</a></li>
<li><a href="http://www.1stwebdesigner.com/inspiration/logo-design-trends-2009/" rel="bookmark" title="Permanent Link: Logo Design Trends 2009 – Showcase">Logo Design Trends 2009 &#8211; Showcase</a></li>
<li><a href="http://www.1stwebdesigner.com/resources/65-popular-and-professional-free-fonts-for-creative-typography/" rel="bookmark" title="Permanent Link: 65 Popular And Professional Free Fonts For Creative Typography">65 Popular And Professional Free Fonts For Creative Typography</a></li>
<li><a href="http://www.1stwebdesigner.com/wordpress/sites-find-free-wordpress-themes-daily/" rel="bookmark" title="Permanent Link: 21 Sites Where To Find Free WordPress Themes Daily">21 Sites Where To Find Free WordPress Themes Daily</a></li>
<li><a href="http://www.1stwebdesigner.com/resources/30-sources-to-get-your-web-design-inspiration/" rel="bookmark" title="Permanent Link: 30 Sources To Get Your Web Design Inspiration">30 Sources To Get Your Web Design Inspiration</a></li>
</ol>
<div>
</div>
<p><a href="http://www.1stwebdesigner.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/most-interesting-design-trends-among-popular-blogs/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Design trends among blogs</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/design-trends-among-blogs/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/design-trends-among-blogs/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 08:10:17 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[design trend]]></category>
		<category><![CDATA[gt web]]></category>
		<category><![CDATA[h1 h2]]></category>
		<category><![CDATA[pushing the limits]]></category>
		<category><![CDATA[simplistic design]]></category>
		<category><![CDATA[smooth design]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/design-trends-among-blogs/</guid>
		<description><![CDATA[The web is an dynamic, organic being. It evolves as people do, responding to trends in blogging and design by constantly raising the bar. With millions of bloggers out there, we see constant evolutions of the next design trend. Here are some of my favorite recent trends in web design. Although the examples listed here [...]]]></description>
			<content:encoded><![CDATA[<p>The web is an dynamic, organic being. It evolves as people do, responding to trends in blogging and design by constantly raising the bar. With millions of bloggers out there, we see constant evolutions of the next design trend.</p>
<p>Here are some of my favorite recent trends in web design. Although the examples listed here may not be the orginator of the trend, they are the first to catch my eye.</p>
<p>&lt;h2&gt;Web 2.0&lt;/h2&gt;</p>
<p>The design trend associated with Web 2.0 is actually multiple trends rolled into one.</p>
<ul>
<li>Round corners</li>
<li>Glossy/Shiny graphics</li>
<li>Big, prominent graphics</li>
<li>Larger, non-serif typography</li>
</ul>
<p><a title="Web 2.0 Web Design Trends" href="http://fluidtheme.tumblr.com/"><img height="266" alt="web20-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/16e35_web20-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Simple&lt;/h2&gt;</p>
<p>I&#8217;ve often said, a designer who can pull off a simplistic design is just as talented as the one that can create a super-complex one. That is because a simple design is more than just leaving elements out. It is about balancing design, carefully choosing colors and typography, and expertly integration navigation and content to create an effective and smooth design.</p>
<p><a href="http://2008.dconstruct.org/"><img height="267" alt="simple-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b0549_simple-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Whole site branding integration&lt;/h2&gt;</p>
<p>Orginally, web designs included a header, with a logo and a content section, with the content. Recently, designers are pushing the limits by incorporating colors, logos, branding, messaging and graphics throughout the entire site, not just the header.</p>
<p><a title="Greenwashing" href="http://www.thegreenwashingblog.com"><img height="266" alt="continuity-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ba8ec_continuity-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Advanced typography&lt;/h2&gt;</p>
<p>Web designers are putting much more thought into typography. There are many resources popping up to pick a typography set. Once upon a time, designs included an h1, h2, and p style. Now some designs include dozens of different font stylings.</p>
<p><a href="http://ilovetypography.com/"><img height="267" alt="typography-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/37ef1_typography-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Single page design&lt;/h2&gt;</p>
<p>Along with designing simpler sites, designers are exploring ways to keep content on one page. In portfolios, showcases or simple informational sites, developers are looking for ways to put all content on page one so the readers sees it all without having to click through anywhere. The example below you will recognized as Twitter. As arguably one of the top 5 sites on the web, everything you need to know about Twitter is located on the front page.</p>
<p><a href="http://www.twitter.com"><img height="263" alt="twitter-one-page-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/b3c7e_twitter-one-page-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;AJAX&lt;/h2&gt;</p>
<p>You know AJAX (asynchronous JavaScript and XML), it is that cool interaction when you click something on a site and it changes, without reloading. This is a huge advancement in web design technology and allows users to get the content they desire without moving about the site. Most major publishing platforms have integrated AJAX into their codex. The leader is easily seen in all the <a href="http://www.pingable.org/20-great-wordpress-ajax-plugins">WordPress AJAX plugins</a>.</p>
<p><a href="http://www.wordpress.org"><img height="263" alt="ajax-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6063b_ajax-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Large images&lt;/h2&gt;</p>
<p>Advances in compression technology, increased internet access speeds have allowed designers to grow the size and quality of images they use in new designs. This makes for an appealing and graphically pleasing design.</p>
<p><a href="http://www.tutorial9.net"><img height="267" alt="big-images-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6d6e6_big-images-web-design-trends.jpg" width="570" /></a></p>
<p>&nbsp;</p>
<p>&lt;h2&gt;Perspective and depth&lt;/h2&gt;</p>
<p>Strategically using dropshadows, angles and overlaps, designers have added a 3rd dimension to web design that was previously limited to 2 dimensions. Using these techniques, designers are able to draw user attention to specific areas consistent with the goals of the site. Perhaps conversion forms, twitter buttons or featured content.</p>
<p><a href="http://carlcartee.com"><img height="263" alt="dimension-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ea1f7_dimension-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Themed designs&lt;/h2&gt;</p>
<p>Designers are adding overarching themes like <em>grunge, retro, whimsical</em>, etc. These themes tie together all elements of a design and give the user a feeling of continuity, adding to the overall experience.</p>
<p><a href="http://www.cogitatur.pl/"><img height="266" alt="grunge-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/cc819_grunge-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Specific purpose&lt;/h2&gt;</p>
<p>Designers have realized that themes should be designed for a specific purpose such as <em>magazine, portfolio, <a href="http://www.hippiemagazine.com">green</a>, blogging,</em> etc. Designing for a purpose allows the designer and webmaster to focus on function and not generalize the design so it can be used across multiple different sites.</p>
<p><a href="http://www.carbonica.org/"><img height="259" alt="style-web-design-trends" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/41a98_style-web-design-trends.jpg" width="570" /></a></p>
<p>&lt;h2&gt;Additional Resources&lt;/h2&gt;</p>
<ul>
<li><a href="http://webdesignledger.com/tips/web-design-trends-for-2010">Web Design Trends for 2010</a></li>
<li><a href="http://www.pingable.org/20-of-the-best-free-magazine-wordpress-themes/">WordPress Magazine Themes</a></li>
<li><a href="http://www.pingable.org/100-stunning-professional-portfolio-wordpress-themes/">WordPress Portfolio Themes</a></li>
<li><a href="http://sixrevisions.com/graphics-design/20-useful-typography-tools/">Typography tools</a></li>
</ul>
<p>&lt;h2&gt;About the author&lt;/h2&gt;</p>
<p><a href="http://www.cyruspatten.com">Cyrus Patten</a> is a community consultant, university instructor and social worker in Burlington, VT.  He is the editor of Pingable.org, a blog about <a href="http://www.pingable.org">WordPress plugins, themes and tools</a>.  His recent interests include <a href="http://www.pingable.org/wordpress-hosting-guide">WordPress Hosting</a> and <a href="http://www.ecohostreviews.com">Green Hosting</a>.</p>
<p>Related posts:
<ol>
<li><a href="http://www.1stwebdesigner.com/development/popular-promising-web-design-blogs/" rel="bookmark" title="Permanent Link: 63 Popular And Promising Web Design Blogs">63 Popular And Promising Web Design Blogs</a></li>
<li><a href="http://www.1stwebdesigner.com/inspiration/logo-design-trends-2009/" rel="bookmark" title="Permanent Link: Logo Design Trends 2009 – Showcase">Logo Design Trends 2009 &#8211; Showcase</a></li>
<li><a href="http://www.1stwebdesigner.com/resources/30-sources-to-get-your-web-design-inspiration/" rel="bookmark" title="Permanent Link: 30 Sources To Get Your Web Design Inspiration">30 Sources To Get Your Web Design Inspiration</a></li>
<li><a href="http://www.1stwebdesigner.com/wordpress/sites-find-free-wordpress-themes-daily/" rel="bookmark" title="Permanent Link: 21 Sites Where To Find Free WordPress Themes Daily">21 Sites Where To Find Free WordPress Themes Daily</a></li>
</ol>
<div>
</div>
<p><a href="http://www.1stwebdesigner.com/feed/">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/design-trends-among-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MonkeyPR &#8211; Free WordPress Theme</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/design/monkeypr-free-wordpress-theme/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/design/monkeypr-free-wordpress-theme/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 10:25:00 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content section]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[freelance jobs]]></category>
		<category><![CDATA[freelance projects]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress theme demo]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/design/monkeypr-free-wordpress-theme/</guid>
		<description><![CDATA[Details : 2 columns, right sidebar, widget ready, 125&#215;125px ad spots ready, Ajax sliding header content, sticky post feature, footer content section. Demo : MonkeyPR &#8211; Free WordPress Theme demo Download : MonkeyPR &#8211; Free WordPress Theme download Find freelance jobs or post freelance projects on GetAFreelancer Want to advertise here ? Contact us Related [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2380" src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5da53_monkeypr-free-wordpress-theme.jpg" alt="MonkeyPR - Free WordPress Theme" width="580" height="320" /></p>
<p><strong>Details</strong> : 2 columns, right sidebar, widget ready, 125&#215;125px ad spots ready, Ajax sliding header content, sticky post feature, footer content section.</p>
<div>Demo : <a title="MonkeyPR - Free WordPress Theme demo" href="http://monkeypr.ajansretro.com/demo" target="_blank">MonkeyPR &#8211; Free WordPress Theme demo</a></div>
<div>Download : <a title="MonkeyPR - Free WordPress Theme download" href="http://monkeypr.ajansretro.com/" target="_blank">MonkeyPR &#8211; Free WordPress Theme download</a></div>
<p>
<hr />
<p><strong>Find freelance jobs or post freelance projects on <a href="http://www.getafreelancer.com/affiliates/crazyleafdesign/">GetAFreelancer</a></strong></p>
<p><a href="http://www.getafreelancer.com/affiliates/crazyleafdesign/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/04b82_GetAFreelancer_b3.gif" width="468" height="60" alt="Freelance Jobs" border="0"></a></p>
<p> Want to advertise here ? <a href="http://www.crazyleafdesign.com/blog/contact/">Contact us</a></p>
<hr />
<p><b>Related posts</b></p>
<p>You might also like these similar articles:</p>
<ol>
<li><a href="http://www.crazyleafdesign.com/blog/versatility-lite-free-wordpress-theme/" rel="bookmark" title="Permanent Link: Versatility Lite - Free WordPress Theme">Versatility Lite &#8211; Free WordPress Theme</a></li>
<li><a href="http://www.crazyleafdesign.com/blog/zinepress-free-wordpress-theme/" rel="bookmark" title="Permanent Link: ZinePress - Free WordPress Theme">ZinePress &#8211; Free WordPress Theme</a></li>
<li><a href="http://www.crazyleafdesign.com/blog/sohomag-free-wordpress-theme/" rel="bookmark" title="Permanent Link: SohoMag - Free WordPress Theme">SohoMag &#8211; Free WordPress Theme</a></li>
<li><a href="http://www.crazyleafdesign.com/blog/deskspace-free-wordpress-theme/" rel="bookmark" title="Permanent Link: Deskspace - Free WordPress Theme">Deskspace &#8211; Free WordPress Theme</a></li>
<li><a href="http://www.crazyleafdesign.com/blog/dark-forest-free-wordpress-theme/" rel="bookmark" title="Permanent Link: Dark Forest - Free WordPress theme">Dark Forest &#8211; Free WordPress theme</a></li>
</ol>
<div>
<a href="http://feeds.feedburner.com/~ff/crazyleafdesign_blog?a=CV4qn9wHvqg:EzeIJxTSrJI:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/04b82_crazyleafdesign_blog?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/crazyleafdesign_blog?a=CV4qn9wHvqg:EzeIJxTSrJI:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/04b82_crazyleafdesign_blog?i=CV4qn9wHvqg:EzeIJxTSrJI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/crazyleafdesign_blog?a=CV4qn9wHvqg:EzeIJxTSrJI:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/f1ead_crazyleafdesign_blog?i=CV4qn9wHvqg:EzeIJxTSrJI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/crazyleafdesign_blog?a=CV4qn9wHvqg:EzeIJxTSrJI:qj6IDK7rITs"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ed173_crazyleafdesign_blog?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/crazyleafdesign_blog?a=CV4qn9wHvqg:EzeIJxTSrJI:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/ed173_crazyleafdesign_blog?i=CV4qn9wHvqg:EzeIJxTSrJI:F7zBnMyn0Lo" border="0"></img></a>
</div>
<p><a href="http://feeds.feedburner.com/crazyleafdesign_blog">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/design/monkeypr-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

