<?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>cssOrigins.com &#187; Design</title>
	<atom:link href="http://www.cssOrigins.com/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cssOrigins.com</link>
	<description>Css Origins, Design Blog and Wordpress Publishing Platform</description>
	<lastBuildDate>Mon, 12 Jul 2010 06:35:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>A Detailed Look at the 960 CSS Framework &#8211; Nettuts</title>
		<link>http://www.cssOrigins.com/2009/960-css-framework-nettuts/</link>
		<comments>http://www.cssOrigins.com/2009/960-css-framework-nettuts/#comments</comments>
		<pubDate>Tue, 12 May 2009 01:00:46 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[News Press]]></category>
		<category><![CDATA[960]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Fluid Grids]]></category>
		<category><![CDATA[Techniques]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=275</guid>
		<description><![CDATA[CSS frameworks are bloated. CSS frameworks are for people who don&#8217;t know how to code. CSS is too simple to implement a framework. If you&#8217;ve ever read a tutorial on a CSS framework, I can guarantee that many comments mimic the previous statements. My guess is that the majority of these comments are stemmed from [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>CSS frameworks are bloated. CSS frameworks are for people who don&#8217;t know how to code. CSS is too simple to implement a framework.<span id="more-275"></span></p>
<p>If you&#8217;ve ever read a tutorial on a CSS framework, I can guarantee that many comments mimic the previous statements. My guess is that the majority of these comments are stemmed from slight ignorance. Once you take the opportunity to spend some time with 960, you&#8217;ll be amazed at how much time can potentially be saved when developing your web applications. At the very least, take ten minutes to review the framework. You can always press the delete key&#8230;though I doubt you will!</p>
<h3>Pros</h3>
<ul>
<li>Rapidly speeds up development time.</li>
<li>Clean grid structure.</li>
<li>Not many browser inconsistencies. The ones you find can be fixed easily.</li>
<li>It&#8217;s not &quot;bloated&quot; as many people suggest. We&#8217;re talking 3-4kb here, folks! You would use many of these stylings anyways.</li>
<li>Build complex layouts quickly.</li>
</ul>
<h3>Cons</h3>
<ul>
<li>It&#8217;s named &quot;960&quot; for a reason. If you&#8217;re hoping to use a different width for you website, you might be better off choosing a different framework.</li>
<li>As with any &quot;framework&quot;, you lose a bit of flexibility.</li>
<li>You didn&#8217;t create it. There&#8217;s something to be said for code being 100% our own.</li>
</ul>
<h3>Usage</h3>
<p>Let&#8217;s imagine that we want to work with the &quot;12 column&quot; structure to create the extremely simple layout seen below. First, we must create a wrapper div that has a class of &quot;container_12&quot;. <em>Notice the 12. </em></p>
<div class="tutorial_image"><img src="http://nettuts.s3.amazonaws.com/178_960Framework/20090114-164111.png" alt="layout" /></div>
<div class="dp-highlighter">
<div class="bar">
<div class="tools"><a onclick="dp.sh.Toolbar.Command('ViewSource',this);return false;" href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/#"></a> <a onclick="dp.sh.Toolbar.Command('About',this);return false;" href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/#"><br />
</a></div>
</div>
<ol class="dp-xml">
<li class="alt"><span><span class="tag">&lt;</span> <span class="tag-name">div</span> <span> </span> <span class="attribute">id</span> <span>=</span> <span class="attribute-value">&quot;container&quot;</span> <span> </span> <span class="attribute">class</span> <span>=</span> <span class="attribute-value">&quot;container_12&quot;</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li><span>&#8230;content goes here </span></li>
<li class="alt"><span><span class="tag">&lt;/</span> <span class="tag-name">div</span> <span class="tag">&gt;</span> <span> </span> </span></li>
</ol>
</div>
<pre class="html" style="display: none;">&lt;div id=&quot;container&quot; class=&quot;container_12&quot;&gt;
...content goes here
&lt;/div&gt;</pre>
<p>Specifying an id here isn&#8217;t required by any means. However, I find that it helps me to remember exactly what the div is. One of the gripes against 960 is that the classes do nothing to define what the element is. Simply including an id fixes that issue.</p>
<h4>Grids</h4>
<p>Now we want to create a simple header and two column structure. When first getting started, it&#8217;s helpful to examine the demo to choose how wide a grid you should use.</p>
<div class="tutorial_image"><img src="http://nettuts.s3.amazonaws.com/178_960Framework/20090114-154700.png" alt="960 Framework" /></div>
<p>I&#8217;m going to choose a header width of &quot;940px&quot; (+ 20px margins = 960), a sidebar width of &quot;220px&quot;, and a main content width of &quot;700px&quot;.</p>
<p>You must assign a class to each div. Naming conventions require that that the class name begins with &quot;grid_&quot; and ends with the number of columns needed. In our case, we&#8217;ll use &quot;grid_12&#8242;, &quot;grid_3&quot; and &quot;grid_9&quot;, respectively.</p>
<div class="dp-highlighter">
<div class="bar">
<div class="tools"><a onclick="dp.sh.Toolbar.Command('ViewSource',this);return false;" href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/#"></a> <a onclick="dp.sh.Toolbar.Command('About',this);return false;" href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/#"><br />
</a></div>
</div>
<ol class="dp-xml">
<li class="alt"><span><span class="tag">&lt;</span> <span class="tag-name">div</span> <span> </span> <span class="attribute">id</span> <span>=</span> <span class="attribute-value">&quot;container&quot;</span> <span> </span> <span class="attribute">class</span> <span>=</span> <span class="attribute-value">&quot;container_12&quot;</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li><span> <span class="tag">&lt;</span> <span class="tag-name">div</span> <span> </span> <span class="attribute">id</span> <span>=</span> <span class="attribute-value">&quot;header&quot;</span> <span> </span> <span class="attribute">class</span> <span>=</span> <span class="attribute-value">&quot;grid_12&quot;</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li class="alt"><span> content goes here </span></li>
<li><span> <span class="tag">&lt;/</span> <span class="tag-name">div</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li class="alt"><span> </span></li>
<li><span> <span class="tag">&lt;</span> <span class="tag-name">div</span> <span> </span> <span class="attribute">id</span> <span>=</span> <span class="attribute-value">&quot;sidebar&quot;</span> <span> </span> <span class="attribute">class</span> <span>=</span> <span class="attribute-value">&quot;grid_3&quot;</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li class="alt"><span> content goes here </span></li>
<li><span> <span class="tag">&lt;/</span> <span class="tag-name">div</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li class="alt"><span> </span></li>
<li><span> <span class="tag">&lt;</span> <span class="tag-name">div</span> <span> </span> <span class="attribute">id</span> <span>=</span> <span class="attribute-value">&quot;mainContent&quot;</span> <span> </span> <span class="attribute">class</span> <span>=</span> <span class="attribute-value">&quot;grid_9&quot;</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li class="alt"><span> content goes here </span></li>
<li><span> <span class="tag">&lt;/</span> <span class="tag-name">div</span> <span class="tag">&gt;</span> <span> </span> </span></li>
<li class="alt"><span><span class="tag">&lt;/</span> <span class="tag-name">div</span> <span class="tag">&gt;</span> <span> </span> </span></li>
</ol>
</div>
<pre class="html" style="display: none;">&lt;div id=&quot;container&quot; class=&quot;container_12&quot;&gt;
  &lt;div id=&quot;header&quot; class=&quot;grid_12&quot;&gt;
    content goes here
  &lt;/div&gt;

  &lt;div id=&quot;sidebar&quot; class=&quot;grid_3&quot;&gt;
    content goes here
  &lt;/div&gt;

  &lt;div id=&quot;mainContent&quot; class=&quot;grid_9&quot;&gt;
    content goes here
  &lt;/div&gt;
&lt;/div&gt;</pre>
<p>The only additional styling that I&#8217;ve added is background colors and a minimum width for each div to simulate an actual website full of text. I won&#8217;t go over that here; mostly because they should be removed. They&#8217;re only used here to demonstrate the structure.</p>
<p>Without worrying about margins, floats, or IE hacks, we&#8217;re able to create a layout extremely fast. <strong>The true power of 960 is demonstrated when building complex newspaper-like layouts. </strong></p>
<p><a href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/">via A Detailed Look at the 960 CSS Framework &#8211; Nettuts+</a> .</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/960-css-framework-nettuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>107 Twitter plugins for WordPress displays yours latest tweets in your WordPress blog</title>
		<link>http://www.cssOrigins.com/2009/twitter-plugins-for-wordpress/</link>
		<comments>http://www.cssOrigins.com/2009/twitter-plugins-for-wordpress/#comments</comments>
		<pubDate>Wed, 06 May 2009 21:07:20 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[News Press]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=271</guid>
		<description><![CDATA[Skyje has posted up a large and particularly useful list of wordpress plugins that deal specifically with twitter, if your looking for any type of twitter support on your blog then I suggest you click on over and read up. Here&#8217;s a small part of his list. 1-Twitter Tools Twitter Tools is a plugin that [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><span dir="ltr"><a href="http://skyje.com/2009/05/107-wordpress-twitter-plugins/" target="_blank">Skyje </a> has posted up a large and particularly useful list of wordpress plugins that deal specifically with twitter, if your looking for any type of twitter support on your blog then I suggest you click on over and read up.  Here&#8217;s a small part of his list.<br />
</span><span id="more-271"></span></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-tools/">1-Twitter Tools</a></p>
<p class="plugin-block">Twitter Tools is a plugin that creates a complete integration between your WordPress blog and your Twitter account.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-sharts-plug-in-for-wordpress/">2-Twitter Sharts</a></p>
<p class="plugin-block">‘Shart’ your <strong>twitter</strong> status anywhere within your wordpress blog posts or pages! <br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-for-wordpress/">3-Twitter for WordPress</a></p>
<p class="plugin-block">Twitter for WordPress displays yours latest tweets in your WordPress blog.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-widget/">4-Twitter Widget</a></p>
<p class="plugin-block">Adds a sidebar widget to display <strong>Twitter</strong> updates<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/elegant-twitter-widget/">5-Elegant Twitter Widget</a></p>
<p class="plugin-block">A WordPress widget that displays twitter updates in yummy valid semantic XHTML code. The code is heavily commented and the output is in template functions so everything is fully customizable.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-this/">6-Twitter This</a></p>
<p class="plugin-block">Allow to your readers sharing your blog post at <strong>twitter</strong> .<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-widget-pro/">7-Twitter Widget Pro</a></p>
<p class="plugin-block">A widget that properly handles <strong>twitter</strong> feeds, including @username and link .<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-swell/">8-Twitter Swell</a></p>
<p class="plugin-block">You coult post message to your Twitter and show it.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/wp-twitterpitch/">9-WP Twitter Pitch</a></p>
<p class="plugin-block">WP-TwitterPitch is all about getting the pitch delivered to you in the form you want to get it delivered &#8211; in other words in Twitter format. If you’re like me, then your Twitter direct message box is a lot like your email inbox.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-blaster/">10-Twitter Blaster</a></p>
<p class="plugin-block">allow your visitors to post to your <strong>Twitter</strong> account. Once installed your users can update .<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-style-links/">11-Twitter style links</a></p>
<p class="plugin-block">This plugin allows you to add <strong>Twitter</strong> style links to comments.<br class="clear" /></p>
<p><a href="http://wordpress.org/extend/plugins/twitter-feed/">12-Twitter Feed</a></p>
<p>The control functions such as connecting to a Twitter account and storing information on the tweets/blogs, can be accessed through the “Twitter Control” GUI in the WordPress admin panel.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-updater-using-tinyurl/">13-Twitter updater w/ TinyURL</a></p>
<p class="plugin-block">com status with the latest post that you’ve made. It also has the option of including a link back to your post so can people can easily click on it to view the post.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-to-ttf/">14-Twitter To TTF</a></p>
<p class="plugin-block">displays it in a TTF Simple. Asks you for your <strong>Twitter</strong> ID. Grabs your latest tweet.<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/kish-twitter/">15-Kish Twitter</a></p>
<p class="plugin-block">This plugin is using the Twitter API to get and post the updates. You need to have a twitter account to post updates.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/post-to-twitter/">16-Post to Twitter</a></p>
<p class="plugin-block">Create a tweet on <strong>Twitter</strong> whenever you post<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/wp-to-twitter/">17-WP to Twitter</a></p>
<p class="plugin-block">The WP-to-Twitter plugin posts a Twitter status update from your blog using the Cli.gs URL shortening service to provide a link back to your post from Twitter.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-links/">18-Twitter Links</a></p>
<p class="plugin-block">This plugin will convert valid <a title="Twitter" href="http://twitter.com/" title="Twitter">Twitter</a> usernames mentioned in comments into a link to their Twitter profile page.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-status/">19-Twitter Status</a></p>
<p class="plugin-block">Twitter Status is a very simple no-fuzz plugin that gets the current Twitter message from the Twitter ID specified</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/latest-twitter-sidebar-widget/">20-Latest Twitter Sidebar Widget</a></p>
<p class="plugin-block">Creates a sidebar widget that displays the latest <strong>Twitter</strong> update for any given user.<br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twittertowire/">21-Twitter To Wire</a></p>
<p class="plugin-block">This plugin allows your twitter posts to show up in your buddypress wire.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/top-twitter-links-by-twitturls/">22-Top Twitter Links by Twitturls</a></p>
<p class="plugin-block">Widget that displays currently popular links from <strong>Twitter</strong> . <br class="clear" /></p>
<p><a href="http://wordpress.org/extend/plugins/thread-twitter/">23-Thread Twitter</a></p>
<p>fetch your tweets and display them in thread style.</p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter/">24-Twitter</a></p>
<p class="plugin-block">Customizable <strong>twitter</strong> widget for your sidebar. <strong>Twitter</strong> Widget displays your tweets on your sidebar. <br class="clear" /></p>
<p class="plugin-block"><a href="http://wordpress.org/extend/plugins/twitter-link/">25-Twitter Link</a></p>
<p>Converts @username mentions in posts and pages into links to <strong>Twitter</strong> .</p>
<p class="plugin-block">
<p>Find out more, and read the rest of skyje&#8217;s top twitter plugins for wordpress on his blog below</p>
<p>Via  <span style="color: #000000;"><span dir="ltr"><a href="http://skyje.com/2009/05/107-wordpress-twitter-plugins/" target="_blank"><em>107 Twitter plugins</em> for <em>WordPress</em> displays yours latest tweets in your <em>WordPress</em> blog<img style="border: 0px none; margin: 0px; padding: 0px; display: inline; float: none; color: black; background-image: none; background-color: transparent; min-height: 0pt; min-width: 0pt; line-height: 0.8; position: relative; left: 0px; top: 0px; width: 16px; height: 16px;" src="chrome://easygestures/skin/xLink.png" alt="" /> </a> </span> </span></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/twitter-plugins-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Impressive and Beautiful Uses of WordPress &#124; Web Design Ledger</title>
		<link>http://www.cssOrigins.com/2009/15-impressive-and-beautiful-uses-of-wordpress-web-design-ledger/</link>
		<comments>http://www.cssOrigins.com/2009/15-impressive-and-beautiful-uses-of-wordpress-web-design-ledger/#comments</comments>
		<pubDate>Sat, 02 May 2009 23:36:14 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[News Press]]></category>
		<category><![CDATA[Creative]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=258</guid>
		<description><![CDATA[15 Impressive and Beautiful Uses of WordPress WordPress is no longer just used to power blogs . It has become the CMS of choice for many web designers. It’s always interesting to see how it’s flexibility provides web designers with the freedom to design sites with no limitations. Here are 15 beautiful web sites all [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>15 Impressive and Beautiful Uses of WordPress</p>
<p>WordPress is no longer just used to power <a href="http://webdesignledger.com/resources/20-excellent-blogs-for-those-who-love-design">blogs</a> . It has become the CMS of choice for many web designers. It’s always interesting to see how it’s flexibility provides web designers with the freedom to design sites with no limitations. Here are 15 beautiful web sites all powered by WordPress.<span id="more-258"></span></p>
<h3><a href="http://www.creativedepart.com/" target="_blank">Creative Depart</a></h3>
<p><a href="http://www.creativedepart.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_1.jpg" alt="Creative Depart" /> </a></p>
<h3><a href="http://www.bigspaceship.com/" target="_blank">Big Spaceship</a></h3>
<p><a href="http://www.bigspaceship.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_2.jpg" alt="Big Spaceship" /> </a></p>
<h3><a href="http://ecoki.com/" target="_blank">Ecoki</a></h3>
<p><a href="http://ecoki.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_3.jpg" alt="Ecoki" /> </a></p>
<h3><a href="http://www.20jours.be/" target="_blank">20 jours pour la retrouver par Kevin Polof</a></h3>
<p><a href="http://www.20jours.be/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_4.jpg" alt="20 jours pour la retrouver par Kevin Polof" /> </a></p>
<h3><a href="http://searchinsidevideo.com/#home" target="_blank">Search Inside Video</a></h3>
<p><a href="http://searchinsidevideo.com/#home" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_5.jpg" alt="Search Inside Video" /> </a></p>
<h3><a href="http://ugsmag.com/" target="_blank">UGSMAG</a></h3>
<p><a href="http://ugsmag.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_6.jpg" alt="UGSMAG" /> </a></p>
<h3><a href="http://mac.appstorm.net/" target="_blank">App Storm</a></h3>
<p><a href="http://mac.appstorm.net/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_7.jpg" alt="App Storm" /> </a></p>
<h3><a href="http://icondock.com/" target="_blank">IconDock</a></h3>
<p><a href="http://icondock.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_8.jpg" alt="IconDock" /> </a></p>
<h3><a href="http://anidea.com/" target="_blank">ANidea</a></h3>
<p><a href="http://anidea.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_9.jpg" alt="ANidea" /> </a></p>
<h3><a href="http://www.45royale.com/" target="_blank">45royale</a></h3>
<p><a href="http://www.45royale.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_10.jpg" alt="45royale" /> </a></p>
<h3><a href="http://www.alpha-multimedia.com/" target="_blank">Alpha Multimedia Solutions</a></h3>
<p><a href="http://www.alpha-multimedia.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_11.jpg" alt="Alpha Multimedia Solutions" /> </a></p>
<h3><a href="http://bridinel.com/" target="_blank">the Art of Catalin Bridinel</a></h3>
<p><a href="http://bridinel.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_12.jpg" alt="the Art of Catalin Bridinel" /> </a></p>
<h3><a href="http://eighthourday.com/" target="_blank">EightHourDay</a></h3>
<p><a href="http://eighthourday.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_13.jpg" alt="EightHourDay" /> </a></p>
<h3><a href="http://www.espiratecnologias.com/" target="_blank">ESPIRA</a></h3>
<p><a href="http://www.espiratecnologias.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_14.jpg" alt="ESPIRA" /> </a></p>
<h3><a href="http://stopdesign.com/" target="_blank">StopDesign</a></h3>
<p><a href="http://stopdesign.com/" target="_blank"><img src="http://webdesignledger.com/wp-content/uploads/2009/04/wordpress_uses_15.jpg" alt="StopDesign" /> </a></p>
<p>via <a href="http://webdesignledger.com/inspiration/15-impressive-and-beautiful-uses-of-wordpress">15 Impressive and Beautiful Uses of WordPress | Web Design Ledger</a> .</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/15-impressive-and-beautiful-uses-of-wordpress-web-design-ledger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for Designers</title>
		<link>http://www.cssOrigins.com/2009/wordpress-for-designers/</link>
		<comments>http://www.cssOrigins.com/2009/wordpress-for-designers/#comments</comments>
		<pubDate>Fri, 01 May 2009 20:30:27 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=257</guid>
		<description><![CDATA[Hey guys after reviewing many of the &#8220;WordPress for Designers&#8221; videos at blog.themeforest.net Ive decided to go ahead and repost them , and write out commentaries describing the main features that this video blog series hits. The series will be separated into days, starting with day two&#8230; ok lets get started. Day 2 : WordPress [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Hey guys after reviewing many of the &#8220;WordPress for Designers&#8221; videos at <a title="Theme Forest" href="http://blog.themeforest.net" target="_blank">blog.themeforest.net</a> Ive decided to go ahead and repost them<span id="more-257"></span> , and write out commentaries describing the main features that this video blog series hits.</p>
<p>The series will be separated into days, starting with day two&#8230; ok lets get started.</p>
<p>Day 2 : WordPress Admin panel.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="590" height="443" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://blip.tv/play/grg36aVKAA" /><param name="src" value="http://blip.tv/play/grg36aVKAA" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="590" height="443" src="http://blip.tv/play/grg36aVKAA" allowfullscreen="true" data="http://blip.tv/play/grg36aVKAA"></embed></object></p>
<h3>Introduction</h3>
<p>In our video here we quickly reviewed all the necessaries that we would be using in order to use and edit our new WordPress install. He quickly went over the WordPress file structure. The necessary changes that needed to be made to the wp-config.php file when we upload, and the location of our all important theme files.</p>
<blockquote><p>www.example.com/wp-content/themes/theme1</p></blockquote>
<h3>Body</h3>
<p>Moving on through the video the main bulk of this video was getting the understanding of the different template files in your wordpress theme, what they do and how they work, so lets move through a few of them.</p>
<p>As described in our video if we go to APPEARANCE | EDITOR we will be able to see all the template files included in the wordpress theme currently activated.</p>
<p>If we start by importance usualy index.php would come to mind in a wordpress site. We can see there&#8217;s no doctypes or much html data in our file at all, but rather many simple php requests to header and footer and sidebar etc.. These are essentially statements that calls in those files from you directory. So header.</p>
<p>In our header.php we find our doctypes and titles tags and start of our html elements. This is loaded at the top of every page or post that calls get_header(). Pretty easy to understand.</p>
<p>Similarly our files typically end with out get_footer() call and our footer.php contains all the closing tags for information contained within our document.</p>
<p>Single.php &#8211; used for individual post pages.</p>
<p>404.php &#8211; used when a page within your wordpress blog cannot be found.</p>
<p>Sidebar -  calls widgets and other custom information into the 1 or more sidebars in your wordpress theme.</p>
<h3>Conclusion</h3>
<p>After looking through and familiarizing yourself with the themes directory withing your wordpress install you should be able to identify the different files and what they more or less accomplish. With this basic knowledge we will be able to simply identify where and what files we need to be editing in the future while we move on to developing our own theme, in the new few videos.</p>
<p>If you&#8217;re having problems understand the videos or information please comment and we will see if we can help you out.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/wordpress-for-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Firefox Design Plugins</title>
		<link>http://www.cssOrigins.com/2009/my-firefox-design-plugins/</link>
		<comments>http://www.cssOrigins.com/2009/my-firefox-design-plugins/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 22:44:31 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=221</guid>
		<description><![CDATA[Hey guys its finally time for me to share with you all the wonderful Firefox plug-ins I use almost daily to help me with development and design no matter what website Im working on. Be it an old table driven website from the ice age, or a modern CMS driven wordpress site, these tools can [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Hey guys its finally time for me to share with you all the wonderful Firefox plug-ins<span id="more-221"></span> I use almost daily to help me with development and design no matter what website Im working on. Be it an old table driven website from the ice age, or a modern CMS driven wordpress site, these tools can help reduce the complexity of updates, speed up development,  and quickly provide you with the information you require.</p>
<h3><img style="padding: 2px; float: right; border: 1px solid #999999; clear: both;" src="http://www.cssOrigins.com/wp-content/uploads/2009/04/seoquake.jpg" alt="" /> First SEO Quake found at <a title="SEO quake" href="http://www.seoquake.com/" target="_blank">seoquake.com</a></h3>
<p>Seo quake is both for Firefox and IE, and its primary function in is to help quantitatively define the information presented on a website or page being viewed. The main feature I would point you guys too is the keyword density ability, basically it can read through your pages and find out how many times a word or group of words appears on your site. VERY HANDY if your going for SEO optimizations this is a must, try and get your good key words between 5-20 density for maximum effect on your home page.</p>
<h3><img style="padding: 2px; float: right; clear: both; border: 1px solid #999999;" src="http://www.cssOrigins.com/wp-content/uploads/2009/04/devtoolbar.jpg" alt="" /> Next we have the all powerful Developers toolbar from <a title="Developers toolbar" href="http://chrispederick.com/" target="_blank">Chris Derick</a></h3>
<p>The toolbar can be downloaded from <a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">addons.mozilla.org</a></p>
<p>Developers tool bar is a multifunction toolbar allowing users to view style information, edit css, outline styles, edit their browsers width and height and so much more. Just with those key features makes the developers toolbar the #1 Firefox extension any kind of web personnel should have. Being able to specifically target a browsers width and height is something I think we all have had to do at a specific time, and with 2 clicks boom you can view the site in that exact resolution.</p>
<p>Being able to edit css on the fly even on another website and save it off also a helpful or potentially a time saving feature. and of course most praised feature in my opinion is the ability to highlight hovered objects, and see their css roots. See what div, what class and what id they came from, makes editing your styles that must faster.</p>
<h3><img style="padding: 2px; float: right; clear: both; border: 1px solid #999999;" src="http://www.cssOrigins.com/wp-content/uploads/2009/04/colorzilla.jpg" alt="" /> Umm lets see, Colorzilla downloadable over there <a title="colorzilla" href="http://www.colorzilla.com/firefox/" target="_blank">colorzilla.com</a> !!</h3>
<p>Colorzilla is simple, it places an icon down in the lower left hand corner status bar and  you just select it to get an eye dropper in Firefox, thus allowing you to retrieve any color on the firefox screen. Oh its sOo handy.</p>
<h3>Finally we have Firebug available <a title="firebug" href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">addons.mozilla.org</a></h3>
<h3><img style="padding: 2px; float: right; clear: both; border: 1px solid #999999;" src="http://www.cssOrigins.com/wp-content/uploads/2009/04/firebug.jpg" alt="" /></h3>
<p>Firebug has some similarities with the developers toolbar but its a lot more complex. In other words it can be used to help diagnose css related issues and help you dig deep to find what id or class your having trouble with, but where this thing has shined for me in the past is with the development of dynamic sites, the ability to track what files are specifically slowing down the loading or display of my site.</p>
<p>My list of Firefox plug-in&#8217;s again are</p>
<ul>
<li><a title="SEO quake" href="http://www.seoquake.com/" target="_blank">SEO quake</a></li>
<li><a title="Developers toolbar" href="https:https://addons.mozilla.org/en-US/firefox/addon/60//addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Developers toolbar</a></li>
<li><a title="colorzilla" href="https://addons.mozilla.org/en-US/firefox/addon/271" target="_blank">Colorzilla</a></li>
<li><a title="Firebug" href="http://getfirebug.com/" target="_blank">Firebug</a></li>
<li>and of course <a title="Firefox 3" href="http://www.mozilla.com/en-US/firefox/personal.html" target="_blank">Firefox </a> is the browser.</li>
</ul>
<p>Do you  have your own plug-in you think should be included in this, feel free to comment and let everyone know about it.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/my-firefox-design-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>84 Amazingly Useful CSS Tips &amp; Resources &#124; Grace Smith</title>
		<link>http://www.cssOrigins.com/2009/84-amazingly-useful-css-tips-resources-grace-smith/</link>
		<comments>http://www.cssOrigins.com/2009/84-amazingly-useful-css-tips-resources-grace-smith/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 18:52:03 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[News Press]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Techniques]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=214</guid>
		<description><![CDATA[Simply Amazing css resources from Grace Smith, his site can be found here Feast your eyes over this collection of super useful CSS resources 20 Useful CSS Tips For Beginners Using CSS to Do Anything: 50+ Creative Examples &#38; Tutorials 101 CSS Tips, Tutorials and Examples CSS Code Snippets : 15 Wicked Tricks 15 CSS [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Simply Amazing css resources from Grace Smith, his site can be found <a href="http://www.gracesmith.co.uk/" target="_blank" title="Gracesmith">here</a></p>
<p>Feast your eyes over this collection of super useful CSS resources<span id="more-214"></span></p>
<ul>
<li><a href="http://www.hongkiat.com/blog/20-useful-css-tips-for-beginners/" target="_blank">20 Useful CSS Tips For Beginners</a></li>
<li><a href="http://www.noupe.com/css/using-css-to-do-anything-50-creative-examples-and-tutorials.html" target="_blank">Using CSS to Do Anything: 50+ Creative Examples &amp; Tutorials</a></li>
<li><a href="http://devsnippets.com/reviews/css-code-snippets-15-wicked-tricks.html" target="_blank">101 CSS Tips, Tutorials and Examples</a></li>
<li><a href="http://blog.themeforest.net/general/15-css-tricks-that-must-be-learned/" target="_blank">CSS Code Snippets : 15 Wicked Tricks</a></li>
<li><a href="http://blog.themeforest.net/general/15-css-tricks-that-must-be-learned/" target="_blank">15 CSS Tricks That Must be Learned</a></li>
<li><a href="http://www.designer-daily.com/8-css-tips-for-better-linking-1424" target="_blank">8 CSS tips for better linking</a></li>
<li><a href="http://cssglobe.com/post/1392/8-premium-one-line-css-tips" target="_blank">8 Premium One Line CSS Tips</a></li>
<li><a href="http://www.smashingmagazine.com/2007/05/10/70-expert-ideas-for-better-css-coding/" target="_blank">70 Expert Ideas For Better CSS Coding</a></li>
<li><a href="http://www.allwebdesignresources.com/webdesignblogs/graphics/30-css-cheat-sheets-quick-reference-guides/" target="_blank">30+ CSS Cheat Sheets &amp; Quick Reference Guides</a></li>
<li><a href="http://nettuts.com/html-css-techniques/10-principles-of-the-css-masters/">10 Principles of the CSS Masters</a></li>
<li><a href="http://designreviver.com/tutorials/10-excellent-css-tips-and-tutorials/" target="_blank">10 Excellent CSS Tips and Tutorials</a></li>
<li><a href="http://www.hongkiat.com/blog/50-nice-clean-css-tab-based-navigation-scripts/" target="_blank">50+ Nice Clean CSS Tab-Based Navigation Scripts</a></li>
<li><a href="http://www.noupe.com/css/css-layouts-40-tutorials-tips-demos-and-best-practices.html" target="_blank">CSS Layouts: 40+ Tutorials, Tips, Demos &amp; Best Practices</a></li>
<li><a href="http://www.csstea.com/css-gallery-news-and-resources/264-120-excellent-examples-of-css-horizantal-menu.html" target="_blank">120 Excellent Examples of CSS Horizontal Menus</a></li>
<li><a href="http://itdiscover.com/links/top_28_css_resources_tutorials_layouts_optimizers_editors_and_lots_more" target="_blank">60+ Wacky CSS Tutorials, Layouts, Optimizers &amp; More</a></li>
<li><a href="http://www.smashingmagazine.com/2008/11/12/12-principles-for-keeping-your-code-clean/" target="_blank">12 Principles For Keeping Your Code Clean</a></li>
<li><a href="http://www.tutorial9.net/web-tutorials/quick-easy-css-development-with-firebug/" target="_blank">Quick &amp; Easy CSS Development with Firebug</a></li>
<li><a href="http://dreamcss.blogspot.com/2009/02/25-css-tools-to-reduce-your-work-load.html" target="_blank">25+ CSS Tools to reduce your work load</a></li>
<li><a href="http://sixrevisions.com/css/20-useful-resources-for-learning-about-css3/" target="_blank">20 Useful Resources for Learning about CSS3</a></li>
<li><a href="http://speckyboy.com/2009/02/04/16-usable-css-graph-and-bar-chart-tutorials-and-techniques/" target="_blank">16 Usable CSS Graph and Bar Chart Tutorials &amp; Techniques</a></li>
<li><a href="http://www.kedoa.com/blog/tips-tricks/top-10-swish-and-stylish-css-tricks/" target="_blank">Top 10 Swish And Stylish CSS Tricks</a></li>
<li><a href="http://stylizedweb.com/2008/03/12/most-used-css-tricks/" target="_blank">12 Most used CSS tricks</a></li>
<li><a href="http://woork.blogspot.com/2008/02/five-web-20-css-menu-tutorials.html" target="_blank">Five web 2.0 CSS menu tutorials</a></li>
<li><a href="http://webdesignledger.com/resources/12-css-tools-and-tutorials-for-beautiful-web-typography" target="_blank">12 CSS Tools and Tutorials for Beautiful Web Typography</a></li>
<li><a href="http://www.noupe.com/css/5-popular-css-frameworks-tutorials-tools-for-getting-started.html" target="_blank">5 Popular CSS Frameworks + Tools for Getting Started</a></li>
<li><a href="http://www.instantshift.com/2009/01/11/30-excellent-css-based-navigation-and-buttons-tutorial/" target="_blank">30 Excellent CSS Based Navigation and Buttons Tutorial</a></li>
<li><a href="http://www.acomment.net/creating-css-layouts-the-best-tutorials-on-converting-psd-to-xhtml/76" target="_blank">Creating CSS Layouts: Best Tutorials on Converting PSD to XHTML</a></li>
<li><a href="http://dwsmg.com/20-ultimate-css-tutorials.html" target="_blank">20 Ultimate CSS Tutorials That Will Help You Master CSS</a></li>
<li><a href="http://www.designvitality.com/blog/2008/08/19-css-menu-tutorials-to-spice-up-your-web-designs/" target="_blank">19 CSS Menu Tutorials to Spice Up Your Web Designs</a></li>
<li><a href="http://www.catswhocode.com/blog/top-10-css-buttons-tutorial-list" target="_blank">Top 10 CSS Buttons Tutorial List</a></li>
<li><a href="http://socialcmsbuzz.com/40-css-web-form-style-tutorials-for-web-developers-14082008/" target="_blank">40 CSS Web Form Style Tutorials For Web Developers</a></li>
<li><a href="http://www.tripwiremagazine.com/tools/css-techniques/35-very-useful-and-powerful-css-techniques.html" target="_blank">35+ very Useful And Powerful CSS techniques</a></li>
<li><a href="http://www.1stwebdesigner.com/tutorials/43-psd-to-xhtml-css-tutorials-creating-web-layouts-and-navigation/" target="_blank">43 PSD to XHTML, CSS Tutorials Creating Web Layouts &amp; Menus</a></li>
<li><a href="http://thinkvitamin.com/features/design/creating-sexy-stylesheets/" target="_blank">Creating Sexy Stylesheets</a></li>
<li><a href="http://sixrevisions.com/css/css-tips/css-tip-1-resetting-your-styles-with-css-reset/" target="_blank">CSS Tip #1: Resetting Your Styles with CSS Reset</a></li>
<li><a href="http://www.webcredible.co.uk/user-friendly-resources/css/css-tricks.shtml" target="_blank">Ten CSS tricks you may not know</a></li>
<li><a href="http://erraticwisdom.com/2006/01/18/5-tips-for-organizing-your-css" target="_blank">5 Tips For Organizing Your CSS</a></li>
<li><a href="http://csswizardry.com/web-design+/" target="_blank">Web Design+ Tips &amp; Advice on Web Standards Development</a></li>
<li><a href="http://www.thefloatingfrog.co.uk/2008/09/10-css-shorthand-techniques-youll-use-everyday/" target="_blank">10 CSS shorthand techniques you’ll use everyday</a></li>
<li><a href="http://lesliefranke.com/files/reference/csscheatsheet.html" target="_blank">The Ultimate CSS Cheat Sheet</a></li>
<li><a href="http://designreviver.com/tips/13-training-principles-of-css-everyone-should-know/" target="_blank">13 Training Principles of CSS Everyone Should Know</a></li>
<li><a href="http://www.noupe.com/design/101-css-techniques-of-all-time-part-1.html">101 CSS Techniques Of All Time- Part 1</a></li>
<li><a href="http://www.webair.it/blog/2009/03/23/16-easy-css-techniques-that-simplify-the-webdesigners-life/" target="_blank">16+ Easy CSS Techniques that Simplify the Webdesigner’s Life</a></li>
<li><a href="http://www.seomoz.org/blog/css-properties-you-probably-never-use" target="_blank">15 CSS Properties You Probably Never Use (but perhaps should)</a></li>
<li><a href="http://www.456bereastreet.com/lab/" target="_blank">The CSS, HTML, and JavaScript Lab</a></li>
<li><a href="http://pingmag.jp/2006/05/18/5-steps-to-css-heaven/" target="_blank">5 Steps to CSS Heaven</a></li>
<li><a href="http://www.frankmanno.com/ideas/css-imagemap/" target="_blank">Cool CSS Image Maps</a></li>
<li><a href="http://www.sitepoint.com/article/twenty-sites-that-elevated-css/" target="_blank">20 Sites That Brought CSS into the Mainstream</a></li>
<li><a href="http://css-tricks.com/css-font-size/" target="_blank">CSS Font sizing with different techniques</a></li>
<li><a href="http://thinkvitamin.com/features/make-your-site-mobile-friendly/" target="_blank">Make your Site Mobile Friendly with CSS</a></li>
<li><a href="http://blog.themeforest.net/tutorials/examples-and-tips-for-great-htmlcss-formatting/" target="_blank">Examples &amp; Tips for Great HTML/CSS Formatting</a></li>
<li><a href="http://www.smashingmagazine.com/2008/08/13/top-10-css-table-designs" target="_blank">Top 10 CSS Table Designs</a></li>
<li><a href="http://www.alistapart.com/articles/fluidgrids" target="_blank">Fluid Grids with CSS</a></li>
<li><a href="http://tutshelf.com/the-art-of-css-positioning/" target="_blank">The Art of CSS Positioning</a></li>
<li><a href="http://www.cult-f.net/2009/03/17/css-magic-of-border-property/">CSS: Magic of ‘border’ property</a></li>
<li><a href="http://www.subcide.com/tutorials/debuggingcss/" target="_blank">How to Debug CSS</a></li>
<li><a href="http://www.ultimatesmashing.com/blogging/26-css-galleries-to-follow-on-twitter/" target="_blank">26+ CSS Galleries to Follow on Twitter</a></li>
<li><a href="http://www.filamentgroup.com/lab/image_free_css_tooltip_pointers_a_use_for_polygonal_css/" target="_blank">Image-free CSS Tooltip Pointers</a></li>
<li><a href="http://veerle.duoh.com/blog/comments/simple_scalable_css_based_breadcrumbs/" target="_blank">Simple scalable CSS based breadcrumbs</a></li>
<li><a href="http://www.acomment.net/9-top-css-essential-skills-that-every-web-designer-should-learn/299">9 CSS Essential Skills For Every Web Designer</a></li>
<li><a href="http://www.sitepoint.com/article/top-ten-css-tricks/" target="_blank">My Top Ten CSS Tricks</a></li>
<li><a href="http://vandelaydesign.com/blog/design/css-layout-tools/" target="_blank">22 Resources to Easily Create CSS Layouts</a></li>
<li><a href="http://crazeegeekchick.com/blog/10-invaluable-css-resources/" target="_blank">10 Invaluable CSS Resources</a></li>
<li><a href="http://www.toxel.com/design/2008/12/07/40-beautiful-dark-css-website-designs/" target="_blank">40 Beautiful Dark CSS Website Designs</a></li>
<li><a href="http://www.allwebdesignresources.com/webdesignblogs/graphics/40-css-generators-creators-and-makers/" target="_blank">40+ CSS Generators, Creators, and Makers</a></li>
<li><a href="http://www.webdesignerwall.com/tutorials/how-to-css-large-background/" target="_blank">How to: CSS Large Background</a></li>
<li><a href="http://www.westciv.com/style_master/academy/css_tutorial/" target="_blank">The complete CSS guide</a></li>
<li><a href="http://www.barelyfitz.com/screencast/html-training/css/positioning/" target="_blank">Learn CSS Positioning in Ten Steps</a></li>
<li><a href="http://www.hongkiat.com/blog/50-nice-clean-css-tab-based-navigation-scripts/" target="_blank">50+ Nice Clean CSS Tab-Based Navigation Scripts</a></li>
<li><a href="http://www.alvit.de/css-showcase/css-navigation-techniques-showcase.php" target="_blank">37 CSS Navigation Techniques</a></li>
<li><a href="http://nettuts.com/tutorials/html-css-techniques/10-challenging-but-awesome-css-techniques/" target="_blank">10 Challenging But Awesome CSS Techniques</a></li>
<li><a href="http://www.noupe.com/css/css-typography-contrast-techniques-tutorials-and-best-practices.html" target="_blank">CSS Typography: Contrast Techniques, Tutorials &amp; More</a></li>
<li><a href="http://cssglobe.com/post/1614/4-uber-cool-css-techniques-for-links" target="_blank">4 Uber Cool Css Techniques For Links</a></li>
<li><a href="http://www.hongkiat.com/blog/38-free-elegant-xhtmlcss-website-templates/" target="_blank">38 Free Elegant XHTML/CSS Website Templates</a></li>
<li><a href="http://www.smashingmagazine.com/2007/05/01/css-float-theory-things-you-should-know/" target="_blank">CSS Float Theory: Things You Should Know</a></li>
<li><a href="http://sixrevisions.com/css/css-tips/css-tip-2-structural-naming-convention-in-css/" target="_blank">CSS Tip #2: Structural Naming Convention in CSS</a></li>
<li><a href="http://nettuts.com/tutorials/html-css-techniques/5-techniques-to-acquaint-you-with-css-3/" target="_blank">5 Techniques to Acquaint You With CSS 3</a></li>
<li><a href="http://cameronmoll.com/articles/extensible-css/" target="_blank">The Highly Extensible CSS Interface</a></li>
<li><a href="http://www.smashingmagazine.com/2008/05/02/improving-code-readability-with-css-styleguides/" target="_blank">Improving Code Readability With CSS Styleguides</a></li>
<li><a href="http://www.webdesignerwall.com/trends/best-of-css-design-2008/">Best of CSS Design 2008</a></li>
<li><a href="http://reference.sitepoint.com/css" target="_blank">SitePoint CSS Reference</a></li>
<li><a href="http://www.smashingmagazine.com/2008/06/19/css-editors-reviewed/" target="_blank">CSS Editors Reviewed</a></li>
</ul>
<p>via <a href="http://www.gracesmith.co.uk/84-amazingly-useful-css-tips-resources/">84 Amazingly Useful CSS Tips &amp; Resources | Hi, I&#8217;m Grace Smith</a> .</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/84-amazingly-useful-css-tips-resources-grace-smith/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>50 Beautiful Websites with Illustrated Landscapes &#124; Webdesigner Depot</title>
		<link>http://www.cssOrigins.com/2009/50-beautiful-websites-with-illustrated-landscapes-webdesigner-depot/</link>
		<comments>http://www.cssOrigins.com/2009/50-beautiful-websites-with-illustrated-landscapes-webdesigner-depot/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 20:22:36 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[News Press]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=175</guid>
		<description><![CDATA[the day after I did an article about this the Webdesigner Depot came out with this and blew me away, so here&#8217;s their list enjoy Here are 50 beautiful websites with landscape illustrations in a variety of styles. Find Out How Serious&#8230; Green Globe Ideas DivVoted StrawPoll ten24 Media Banjax Visit Cascadia DrupalCon DC Studio7Designs [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>the day after I did an article about this the Webdesigner Depot came out with this and blew me away, so here&#8217;s their list enjoy</p>
<p>Here are 50 beautiful websites with landscape illustrations in a variety of styles.</p>
<p>Find Out How Serious&#8230;<span id="more-175"></span></p>
<p><a title="Green Globe Ideas" href="http://greenglobeideas.com/" target="_blank" title="Green Globe Ideas">Green Globe Ideas<br />
<img src="http://www.cssorigins.com/images/greenglobe.jpg" alt="Green Globe Ideas" /> </a></p>
<p><a title="Divvoted" href="http://www.divvoted.com/" target="_blank" title="Divvoted"><!--more--> DivVoted<br />
<img src="http://www.cssorigins.com/images/divvoted.jpg" alt="DivVoted" /> </a></p>
<p><a href="http://strawpollnow.com/" target="_blank">StrawPoll<br />
<img src="http://www.cssorigins.com/images/strawpoll.jpg" alt="StrawPoll" /> </a></p>
<p><a title="ten24media" href="http://www.1024media.com/" target="_blank" title="ten24media">ten24 Media<br />
<img src="http://www.cssorigins.com/images/ten24.jpg" alt="ten24" /> </a></p>
<p><a title="Banjax" href="http://banjax.com/" target="_blank" title="Banjax">Banjax<br />
<img src="http://www.cssorigins.com/images/banjax.jpg" alt="Banjax" /> </a></p>
<p><a title="Visit Cascadia" href="http://www.visitcascadia.com/" target="_blank" title="Visit Cascadia">Visit Cascadia<br />
<img src="http://www.cssorigins.com/images/cascadia.jpg" alt="Vist Cascadia" /> </a></p>
<p><a title="Drupalcon.org" href="http://dc2009.drupalcon.org/" target="_blank" title="Drupalcon.org">DrupalCon DC<br />
<img src="http://www.cssorigins.com/images/drupalcon.jpg" alt="DrupalCon DC" /> </a></p>
<p><a title="Studio7Designs" href="http://www.studio7designs.com/" target="_blank" title="Studio7Designs">Studio7Designs<br />
<img src="http://www.cssorigins.com/images/studio7.jpg" alt="Studio7" /> </a></p>
<p><a title="Aditshukla" href="http://aditshukla.com/" target="_blank" title="Aditshukla">Adit Shukla<br />
<img src="http://www.cssorigins.com/images/adit.jpg" alt="Adit Shukla" /> </a></p>
<p><a title="Iceberg" href="http://www.geticeberg.com/" target="_blank" title="Iceberg">Iceberg<br />
<img src="http://www.cssorigins.com/images/iceberg1.jpg" alt="Iceburg" /> </a></p>
<p><a title="vimeo" href="http://www.vimeo.com/" target="_blank" title="vimeo">Vimeo<br />
<img src="http://www.cssorigins.com/images/vimeo1.jpg" alt="Vimeo" /> </a></p>
<p><a title="go glamping" href="http://goglamping.net/" target="_blank" title="go glamping">Go Glamping<br />
<img src="http://www.cssorigins.com/images/glamping.jpg" alt="Go Glamping" /> </a></p>
<p><a title="twither" href="http://twhither.com/" target="_blank" title="twither">Twither<br />
<img src="http://www.cssorigins.com/images/twither.jpg" alt="Twither" /> </a></p>
<p><a title="Sensisoft" href="http://www.sensisoft.com/" target="_blank" title="Sensisoft">Sensi Soft<br />
<img src="http://www.cssorigins.com/images/sensisoft.jpg" alt="Sensi Soft" /> </a></p>
<p><a title="Volll" href="http://www.volll.com/" target="_blank" title="Volll">volll<br />
<img src="http://www.cssorigins.com/images/volll.jpg" alt="Volll" /> </a></p>
<p><a title="Tomas Projeta" href="http://www.pojeta.cz/" target="_blank" title="Tomas Projeta">Tomas Pojeta<br />
<img src="http://www.cssorigins.com/images/tomas.jpg" alt="Tomas Pojeta" /> </a></p>
<p><a title="Jiri Tvrdek" href="http://www.tvrdek.cz/en" target="_blank" title="Jiri Tvrdek">Jiri Tvrdek<br />
<img src="http://www.cssorigins.com/images/jiri.jpg" alt="Jiri Tvrdek" /> </a></p>
<p><a title="Boagworld" href="http://www.boagworld.com/" target="_blank" title="Boagworld">Boagworld<br />
<img src="http://www.cssorigins.com/images/boagworld.jpg" alt="Boagworld" /> </a></p>
<p><a title="Rawkes" href="http://rawkes.com/" target="_blank" title="Rawkes">Rawkes<br />
<img src="http://www.cssorigins.com/images/rawkes.jpg" alt="Rawkes" /> </a></p>
<p><a title="10voltmedia" href="http://www.10voltmedia.com/" target="_blank" title="10voltmedia">10 Volt Media<br />
<img src="http://www.cssorigins.com/images/10volt.jpg" alt="10 Volt" /> </a></p>
<p><a title="web design beach" href="http://www.webdesignbeach.com/" target="_blank" title="web design beach">Web Design Beach<br />
<img src="http://www.cssorigins.com/images/webdesignbeach.jpg" alt="Web Designer Beach" /> </a></p>
<p><a title="Schneeballschl8" href="http://www.schneeballschl8.de/" target="_blank" title="Schneeballschl8">Schneeballschl8<br />
<img src="http://www.cssorigins.com/images/schneeballschl8.jpg" alt="Schneeballschl8" /> </a></p>
<p><a href="http://stylizedweb.com/" target="_blank">Stylized Web<br />
<img src="http://www.cssorigins.com/images/stylizedweb.jpg" alt="Styleized Web" /> </a> S</p>
<p><a title="Project vinno" href="http://www.projectvino.com.au/" target="_blank" title="Project vinno">Project Vino<br />
<img src="http://www.cssorigins.com/images/projectvino.jpg" alt="Project Vino" /> </a></p>
<p><a title="Arbutus Photography" href="http://www.arbutusphotography.com/" target="_blank" title="Arbutus Photography">Arbutus Photography<br />
<img src="http://www.cssorigins.com/images/arbutus.jpg" alt="Arbutus Photography" /> </a></p>
<p><a title="Moshi Mnosters" href="http://www.moshimonsters.com/" target="_blank" title="Moshi Mnosters">Moshi Monsters<br />
<img src="http://www.cssorigins.com/images/moshi.jpg" alt="Moshi Monsters" /> </a></p>
<p><a href="http://www.campingilfrutteto.it/" target="_blank">IL FRUTTETO<br />
<img src="http://www.cssorigins.com/images/ilfrutteto.jpg" alt="IL FRUTTETO" /> </a></p>
<p><a title="eAnka" href="http://eanka.com/" target="_blank" title="eAnka">eAnka<br />
<img src="http://www.cssorigins.com/images/eanka.jpg" alt="eAnka" /> </a></p>
<p><a title="Colchesterschool" href="http://www.colchesterschool.ca/" target="_blank" title="Colchesterschool">Colchester School<br />
<img src="http://www.cssorigins.com/images/colchester.jpg" alt="Colchester School" /> </a></p>
<p><a title="Cloudred" href="http://www.cloudred.com/" target="_blank" title="Cloudred">Cloudred Multimedia<br />
<img src="http://www.cssorigins.com/images/cloudred.jpg" alt="Cloudred Multimedia" /> </a></p>
<p><a title="John Cow" href="http://www.johncow.com/" target="_blank" title="John Cow">John Cow<br />
<img src="http://www.cssorigins.com/images/johncow.jpg" alt="John Cow" /> </a></p>
<p><a title="Dean Oakley" href="http://deanoakley.com/" target="_blank" title="Dean Oakley">Dean Oakely<br />
<img src="http://www.cssorigins.com/images/deanoakley.jpg" alt="Dean Oakely" /> </a></p>
<p><a title="Brad Colbow" href="http://bradcolbow.com/" target="_blank" title="Brad Colbow">Brad Colbow<br />
<img src="http://www.cssorigins.com/images/brad.jpg" alt="Brad Colbow" /> </a></p>
<p><a title="Nine Lion" href="http://www.nineliondesign.com/" target="_blank" title="Nine Lion">Nine Lion<br />
<img src="http://www.cssorigins.com/images/ninelion.jpg" alt="Nine Lion" /> </a></p>
<p><a title="redBrick Health" href="https://www.redbrickhealth.com/" target="_blank" title="redBrick Health">RedBrick Health<br />
<img src="http://www.cssorigins.com/images/redbrick.jpg" alt="RedBrick Health" /> </a></p>
<p><a title="Polar Gold" href="http://www.polargold.de/" target="_blank" title="Polar Gold">polargold<br />
<img src="http://www.cssorigins.com/images/polargold.jpg" alt="polargold" /> </a></p>
<p><a title="Carbonica" href="http://www.carbonica.org/" target="_blank" title="Carbonica">Carbonica<br />
<img src="http://www.cssorigins.com/images/carbonica.jpg" alt="Carbonica" /> </a></p>
<p><a title="The Octonauts" href="http://www.octonauts.com/" target="_blank" title="The Octonauts">The Octonauts<br />
<img src="http://www.cssorigins.com/images/octonauts.jpg" alt="The Octonauts" /> </a></p>
<p><a title="Yes Insurance" href="http://www.yesinsurance.co.uk/" target="_blank" title="Yes Insurance">Yes Insurance<br />
<img src="http://www.cssorigins.com/images/yes.jpg" alt="Yes Insurance" /> </a></p>
<p><a title="Viget" href="http://www.viget.com/inspire" target="_blank" title="Viget">Viget Inspire<br />
<img src="http://www.cssorigins.com/images/viget.jpg" alt="Viget Inspire" /> </a></p>
<p><a title="Reservoir34" href="http://reservoir34.com/goodies.php#" target="_blank" title="Reservoir34">Reservoir34<br />
<img src="http://www.cssorigins.com/images/resevoir34.jpg" alt="Reservoir34" /> </a></p>
<p><a title="Biowind" href="http://www.biowind.ro/" target="_blank" title="Biowind">Biowind<br />
<img src="http://www.cssorigins.com/images/biowind.jpg" alt="Biowind" /> </a></p>
<p><a title="Happy in Greenville" href="http://www.happyingreenville.com/" target="_self" title="Happy in Greenville">Happy in Greenville<br />
<img src="http://www.cssorigins.com/images/greenville.jpg" alt="Happy in Greenville" /> </a></p>
<p><a title="Miki Mottes" href="http://www.mikimottes.com/" target="_blank" title="Miki Mottes">Miki Mottes<br />
<img src="http://www.cssorigins.com/images/miki.jpg" alt="Miki Mottes" /> </a></p>
<p><a title="Pinjata" href="http://www.pinjata.com/en/" target="_blank" title="Pinjata">Pinjata<br />
<img src="http://www.cssorigins.com/images/pinjata.jpg" alt="Pinjata" /> </a></p>
<p>via <a href="http://www.webdesignerdepot.com/2009/04/50-beautiful-websites-with-illustrated-landscapes/">50 Beautiful Websites with Illustrated Landscapes | Webdesigner Depot</a> .</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/50-beautiful-websites-with-illustrated-landscapes-webdesigner-depot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Illustrated Design Sites</title>
		<link>http://www.cssOrigins.com/2009/15-illustrated-design-sites/</link>
		<comments>http://www.cssOrigins.com/2009/15-illustrated-design-sites/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 06:18:18 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Illustration]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=129</guid>
		<description><![CDATA[Illustrations and web design defiantly go hand in hand. From gigantic fluid background graphic illustrations to more subtle character or icon illustration, Ive hand picked some simply wonderful sites that include, or contain illustrated material. These first two are unlike the rest because they are logo and illustration galleries. Logo Pond Vecteezy Mail Chimp Silverback [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Illustrations and web design defiantly go hand in hand. <span id="more-129"></span> From gigantic fluid background graphic illustrations to more subtle character or icon illustration, Ive hand picked some simply wonderful sites that include, or contain illustrated material.</p>
<p>These first two are unlike the rest because they are logo and illustration galleries.</p>
<h2><a title="Logo Pond" href="http://logopond.com/">Logo Pond</a></h2>
<p><a title="Logo Pond" href="http://logopond.com/"><img src="http://www.cssorigins.com/images/logoPond.jpg" alt="LogoPond" /></a></p>
<h2><a title="Vecteezy" href="http://www.Vecteezy.com" target="_blank">Vecteezy</a></h2>
<p><a title="Vecteezy" href="http://www.Vecteezy.com" target="_blank"><img src="http://www.cssorigins.com/images/vecteezy.jpg" alt="Vecteezy" /></a></p>
<h2><a title="Mail Chimp" href="http://www.mailchimp.com/">Mail Chimp</a></h2>
<p><a title="Mail Chimp" href="http://www.mailchimp.com/"><img src="http://www.cssorigins.com/images/mailChimp.jpg" alt="mailChimp" /></a></p>
<h2><a title="Silverback" href="http://silverbackapp.com/">Silverback</a></h2>
<p><a title="Silverback" href="http://silverbackapp.com/"><img src="http://www.cssorigins.com/images/silverback.jpg" alt="mailChimp" /></a></p>
<h2><a title="Cult Foo" href="http://www.cult-f.net/" target="_blank">Cult-Foo</a></h2>
<p><a title="Cult Foo" href="http://www.cult-f.net/" target="_blank"><img src="http://www.cssorigins.com/images/cultFaa.jpg" alt="cult-fo" /></a></p>
<h2><a title="Open Doors" href="http://student.opendoorsuk.org/" target="_blank">Open Doors</a></h2>
<p><a title="Open Doors" href="http://student.opendoorsuk.org/" target="_blank"><img src="http://www.cssorigins.com/images/studentSite.jpg" alt="studentSite" /></a></p>
<h2><a title="Biola" href="http://www.biola.edu/undergrad/" target="_blank">Biola</a></h2>
<p><a title="Biola" href="http://www.biola.edu/undergrad/" target="_blank"><img src="http://www.cssorigins.com/images/biola.jpg" alt="biola" /></a></p>
<h2><a title="Web Designer Depot" href="http://www.webdesignerdepot.com/" target="_blank">Web Designer Depot</a></h2>
<p><a title="Web Designer Depot" href="http://www.webdesignerdepot.com/" target="_blank"><img src="http://www.cssorigins.com/images/webDesignerDepot.jpg" alt="webDesignerDepot" /></a></p>
<h2><a title="Agami Creative" href="http://agamicreative.com/" target="_blank">Agami Creative</a></h2>
<p><a title="Agami Creative" href="http://agamicreative.com/" target="_blank"><img src="http://www.cssorigins.com/images/agamiCreative.jpg" alt="agamiCreative.jpg" /></a></p>
<h2><a title="Mochiads" href="http://www.mochiads.com/" target="_blank">Mochiads</a></h2>
<p><a title="Mochiads" href="http://www.mochiads.com/" target="_blank"><img src="http://www.cssorigins.com/images/mochiads.jpg" alt="mochiads" /></a></p>
<h2><a title="Stoodeo" href="http://stoodeo.com/" target="_blank">Stoodeo</a></h2>
<p><a title="Stoodeo" href="http://stoodeo.com/" target="_blank"><img src="http://www.cssorigins.com/images/stoodeo.jpg" alt="stoodeo" /></a></p>
<h2><a title="DallasISP" href="http://www.dallasisp.com" target="_blank">DallasISP</a></h2>
<p><a title="DallasISP" href="http://www.dallasisp.com" target="_blank"><img src="http://www.cssorigins.com/images/dallasISP.jpg" alt="dallasISP" /></a></p>
<h2><a title="Sheye Rosemeyer" href="http://sheyerosemeyerphotography.com/blog/" target="_blank">Sheye Rosemeyer</a></h2>
<p><a title="Sheye Rosemeyer" href="http://sheyerosemeyerphotography.com/blog/" target="_blank"><img src="http://www.cssorigins.com/images/sheyeRosemeyer.jpg" alt="sheye Rosemeyer" /></a></p>
<h2><a title="Gourmet Web Design">Gourmet Web Design</a></h2>
<p><img src="http://www.cssorigins.com/images/courmetWebDesign.jpg" alt="courmetWebDesign.jpg" /></p>
<h2><a title="Indy List" href="http://indylist.org/" target="_blank">Indy List</a></h2>
<p><a title="Indy List" href="http://indylist.org/" target="_blank"><img src="http://www.cssorigins.com/images/indyList.jpg" alt="indyList" /></a></p>
<h2><a title="Lucuma" href="http://lucuma.com.ar/" target="_blank">Lucuma</a></h2>
<p><a title="Lucuma" href="http://lucuma.com.ar/" target="_blank"><img src="http://www.cssorigins.com/images/inicino.jpg" alt="inicino" /></a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/15-illustrated-design-sites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eco Design Blog a: 101 Design resource sites</title>
		<link>http://www.cssOrigins.com/2009/eco-design-blog-a-101-design-resource-sites/</link>
		<comments>http://www.cssOrigins.com/2009/eco-design-blog-a-101-design-resource-sites/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 18:40:49 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[News Press]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=113</guid>
		<description><![CDATA[Website Templates A Few High Quality WordPress Themes: Evan Eckard Over 2000 Free Web Templates: OSWD A Small Selection of Nice Templates: Open Source Templates A Large List of Free Templates: Free CSS Templates Nice WordPress Templates for Download: Free CSS Templates A Combination of Free and Pay Templates: Free Templates Online Affordable, Quality Templates: [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>Website Templates</strong></p>
<p>A Few High Quality WordPress Themes: <a href="http://www.evaneckard.com/pages/themes.php" target="_blank">Evan Eckard<br />
</a> Over 2000 Free Web Templates: <a href="http://www.oswd.org/" target="_blank">OSWD<br />
</a> A Small Selection of Nice Templates: <a href="http://www.opensourcetemplates.org/" target="_blank">Open Source Templates<br />
</a> A Large List of Free Templates: <a href="http://www.free-css-templates.com/" target="_blank">Free CSS Templates<br />
</a><span id="more-113"></span> Nice WordPress Templates for Download:<a href="http://www.freecsstemplates.org/" target="_blank"> Free CSS Templates<br />
</a> A Combination of Free and Pay Templates: <a href="http://www.freetemplatesonline.com/" target="_blank">Free Templates Online<br />
</a> Affordable, Quality Templates: <a href="http://www.templamatic.com/" target="_blank">Templamatic<br />
</a> Free Blog Templates: <a href="http://www.bloggingthemes.com/" target="_blank">Blogging Themes</a></p>
<p><strong>CSS Galleries</strong></p>
<p>The Best Sites on the Web: <a href="http://cssremix.com/" target="_blank">CSS Remix<br />
</a> A Frequently Updated Gallery of Sites: <a href="http://cssmania.com/" target="_blank">CSS Mania<br />
</a> An Organized List of Nice Sites: <a href="http://www.mostinspired.com/" target="_blank">Most Inspired<br />
</a> CSS Gallery of Quality Sites: <a href="http://www.css-design-yorkshire.com/" target="_blank">CSS Design Yorkshire<br />
</a> A Selection of Only Nature Based Sites: <a href="http://www.cssnature.org/" target="_blank">CSS Nature<br />
</a> A Selective List of Well Designed Sites: <a href="http://www.webcreme.com/" target="_blank">Web Creme<br />
</a> High Quality CSS Showcase: <a href="http://www.csstux.com/" target="_blank">CSS Tux<br />
</a> Nice CSS Websites:<a href="http://www.thedesignedtree.com/" target="_blank"> The Designed Tree<br />
</a> A CSS Collection Organized by Category: <a href="http://www.csselite.com/" target="_blank">CSS Elite</a></p>
<p><strong> <!--more--> Inspiration</strong></p>
<p>A Great Site About Everything Type: <a href="http://ilovetypography.com/" target="_blank">I Love Typography<br />
</a> An Incredible Illustrator: <a href="http://www.burstofbeaden.com/" target="_blank">Burst of Beaden<br />
</a> A Great Designer and Illustrator: <a href="http://www.fullyillustrated.com/" target="_blank">Fully Illustrated<br />
</a> Customizable List of Design Resources: <a href="http://www.corkdump.com/" target="_blank">Cork Dump<br />
</a> The Society of Graphic Designers of Canada: <a href="http://www.gdc.net/" target="_blank">GDC<br />
</a> Freelance Advice Blog and Resources: <a href="http://www2.freelanceswitch.com/" target="_blank">Freelance Switch<br />
</a> Amazing Collection of Logos: <a href="http://logopond.com/" target="_blank">Logopond<br />
</a> Stunning Desktop Wallpapers: <a href="http://www.desktopography.net/" target="_blank">Desktopography<br />
</a> A Graphic Design Magazine: <a href="http://www.computerarts.co.uk/" target="_blank">Computer Arts</a></p>
<p><strong>Tutorials</strong></p>
<p>The Best Photoshop Tutorials: <a href="http://psd.tutsplus.com/" target="_blank">PSD Tuts<br />
</a> A Talented Photoshop Designer: <a href="http://abduzeedo.com/" target="_blank">Abduzeedo<br />
</a> Photoshop Tutorials and Web Design Resources: <a href="http://www.webdesign.org/web/photoshop/tutorials" target="_blank">Web Design Library<br />
</a> Tutorials for Photoshop, Illustrator and More: <a href="http://www.tutorialvault.net/" target="_blank">Tutorial Vault<br />
</a> A Few Neat Illustrator and Photoshop Tutorials: <a href="http://www.designspice.com/main/tutorials/tut_ind.php" target="_blank">Design Spice<br />
</a> Great Photoshop Tutorials and Downloads: <a href="http://pswish.com/" target="_blank">PS Wish<br />
</a> Tutorials for Every Computer Program: <a href="http://www.tutorialing.com/index.php?idcategoria=16" target="_blank">Tutorialing</a></p>
<p><strong><!--more--> Design Blogs</strong></p>
<p>A Frequently Updated Design Blog: <a href="http://veerle.duoh.com/" target="_blank">Veerleas Blog<br />
</a> A Design Magazine and Blog:<a href="http://www.smashingmagazine.com/" target="_blank"> Smashing Magazine<br />
</a> A European Design Blog:<a href="http://www.designineurope.eu/" target="_blank"> Design In Europe<br />
</a> A Unique Nerdy Blog: <a href="http://designyoutrust.com/" target="_blank">Design You Trust<br />
</a> The Personal Blog of a Graphic Designer: <a href="http://www.larissameek.com/" target="_blank">Larissa Meek<br />
</a> A German Design Blog: <a href="http://www.davidhellmann.com/" target="_blank">David Hellmann<br />
</a> The Blog of a Canadian Geek/Model: <a href="http://mostlylisa.com/" target="_blank">Mostly Lisa<br />
</a> A Graphic Design Blog: <a href="http://www.bittbox.com/" target="_blank">Bittbox<br />
</a> A Blog About Freelance Graphic Design Advice: <a href="http://www2.freelanceswitch.com/" target="_blank">Freelance Switch<br />
</a> A Design Blog Full of Resources: <a href="http://www.youthedesigner.com/" target="_blank">You The Designer<br />
</a> A Popular Design Blog: <a href="http://blog.fazai38.com/" target="_blank">Fazai 38</a></p>
<p>via <a href="http://www.studio7designs.com/blog/101-design-resource-links/">Eco Design Blog a: 101 Design resource sites</a> .</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/eco-design-blog-a-101-design-resource-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Css Design, and Resource site Mashup</title>
		<link>http://www.cssOrigins.com/2009/css-design-and-resource-site-mashup/</link>
		<comments>http://www.cssOrigins.com/2009/css-design-and-resource-site-mashup/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 18:35:32 +0000</pubDate>
		<dc:creator>Hunter Brelsford</dc:creator>
				<category><![CDATA[Archive]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Css]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Print]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.cssOrigins.com/?p=101</guid>
		<description><![CDATA[Here I have compiled a list of some of the greatest css websites, galleries, tutorial sites, free stuff, and personal blogs. The personal design blog, web.print.andbeyond  at Jilnteractive Gonno Design&#8217;s Dark theme focuses your attention to his work &#124; Gonzo Design Web design company employing the funner side of illustration &#124; GetMeFast Creepy animation, solid [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Here I have compiled a list of some of the greatest css websites, galleries, tutorial sites, free stuff, and personal blogs.<span id="more-101"></span></p>
<ul>
<li>The personal design blog, web.print.andbeyond  at <a title="Jilinteractive" href="http://www.jilinteractive.net" target="_blank">Jilnteractive</a></li>
<li>Gonno Design&#8217;s Dark theme focuses your attention to his work | <a href="http://www.gonzo-design.com/" target="_blank">Gonzo Design</a></li>
<li>Web design company employing the funner side of illustration | <a href="http://www.getmefast.com/" target="_blank">GetMeFast</a></li>
<li>Creepy animation, solid design skills | <a href="http://www.stpo.fr/v2/" target="_blank">STPo</a></li>
<li>A personal favorite, Abduzeedo links all of us to great inspiration over and over again | <a href="http://abduzeedo.com/" target="_blank">Abduzeedo</a></li>
<li>Popular css gallery website | <a href="http://cssfreshblend.com" target="_blank">css Fresh Blend</a></li>
<li>a UK biased company, and not so known in my circles but a very beautiful css Gallery | <a href="http://www.cssshowcase.co.uk/" target="_blank">CSS Showcase</a></li>
<li>Theme forest home page is what makes this site wonderful, pictures, content, nice big power button | <a href="http://themeforest.net/" target="_blank">Theme Forest</a></li>
<li>The ever popular <a href="http://www.smashingmagazine.com/" target="_blank">Smash Magazine</a></li>
</ul>
<p>If you have comments about this list please feel free to leave them. This list is comprised almost in its entirety by my own personal feelings about these websites look and feels.</p>
<p>Additionally if your interested in a larger list studio7designs has come up with a list of 101 sites most of whitch are simply stunning. A list that I myself with be reviewing in great depth in the comeing weeks. The Additional list can be found at <a href="http://www.studio7designs.com/blog/101-design-resource-links/" target="_blank">http://www.studio7designs.com/blog/101-design-resource-links/</a> and will be added to my news press section.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.cssOrigins.com/2009/css-design-and-resource-site-mashup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

