<?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>WP Garage &#187; Design</title>
	<atom:link href="http://wpgarage.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Thu, 08 Jul 2010 15:11:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add SWFir to WordPress for nice rounded corners, shadows and other effects</title>
		<link>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/</link>
		<comments>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:42:16 +0000</pubDate>
		<dc:creator>Rebecca Markowitz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[image replacement]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[swfir]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wpgarage.com/?p=623</guid>
		<description><![CDATA[While collaborating with our colleagues at Red Door on a project, we came across SWFir,  an amazing way to add some nice subtle effects to WordPress site images. SWFir automatically adds a flash layer on top of images that can round the corners, add a shadow, rotate, or add a border.  I found the directions [...]]]></description>
			<content:encoded><![CDATA[<p>While collaborating with our colleagues at <a href="http://www.reddoor.biz/">Red Door</a> on a project, we came across <a href="http://www.swfir.com/">SWFir</a>,  an amazing way to add some nice subtle effects to WordPress site images. SWFir automatically adds a flash layer on top of images that can round the corners, add a shadow, rotate, or add a border.  I found the directions on their site a little skimpy for WordPress users so I thought I&#8217;d share how to integrate SWFir for WordPress users.</p>
<p>CSS3 is also great for rounded <a href="http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/">corners and shadows</a>, but unfortunately we still need to keep in mind people using all different versions of Internet Explorer.</p>
<p><img title="swfir" src="http://wpgarage.com/wp-content/uploads/2010/02/swfir.png" alt="" width="400" height="370" /></p>
<ol>
<li>Download <a href="http://www.swfir.com/mint/pepper/tillkruess/downloads/download.php?uri=/files/swfir_v1.zip">SWFir</a></li>
<li>Upload <code>swfir.js</code> and <code>swfir.swf</code> into a folder called swfir into  your theme directory</li>
<li>Include the swfIR JavaScript file in the <code>&lt;head&gt;</code> of your document like this:<code><br />
</code><code>&lt;script type="text/javascript" src="swfir.js"&gt;&lt;/script&gt;</code></li>
<li>Add this to footer.php just before the closing body tag&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
// swfIR<br />
window.onload = function() {<br />
var sir = new swfir();<br />
sir.specify(&#8220;border-radius&#8221;, &#8220;15&#8243;);<br />
sir.specify(&#8220;src&#8221;, &#8220;&lt;?php bloginfo(&#8217;stylesheet_directory&#8217;); ?&gt;/swfir/swfir.swf&#8221;);<br />
sir.swap(&#8220;.latest-posts-center img&#8221;);<br />
sir.swap(&#8220;.latest-posts-center a img&#8221;);<br />
sir.swap(&#8220;img.rounded&#8221;);<br />
&lt;/script&gt;</p>
<p>You may choose from any of these parameters:</p>
<ul>
<li>border-radius</li>
<li>border-width</li>
<li>border-color</li>
<li>shadow-offset</li>
<li>shadow-angle</li>
<li>shadow-alpha</li>
<li>shadow-blur</li>
<li>shadow-blur-x</li>
<li>shadow-blur-y</li>
<li>shadow-strength</li>
<li>shadow-color</li>
<li>shadow-quality</li>
<li>shadow-inner</li>
<li>shadow-knockout</li>
<li>shadow-hide</li>
<li>rotate</li>
<li>overflow</li>
<li>link</li>
<li>elasticity</li>
</ul>
</li>
<li><strong>Add this in the loop somewhere </strong><strong> </strong>Note: this is assuming that your images are not organized by month and day under Settings &gt; Miscellaneous &#8211; the box is unchecked.<br />
Also, you can change the width to whatever you want and it will resize automatically</p>
<p>&lt;?php if ( get_post_meta($post-&gt;ID, &#8217;rounded_img&#8217;, true) ) {<br />
$postimg = get_post_meta($post-&gt;ID, &#8217;rounded_img&#8217;, $single = true);<br />
if((stristr($postimg,&#8217;http&#8217;)===FALSE) &amp;&amp; (stristr($postimg,&#8217;wp-content&#8217;)===FALSE)) {<br />
$postimg = get_bloginfo(&#8217;siteurl&#8217;).&#8221;/wp-content/uploads/&#8221;.$postimg;<br />
} ?&gt;<br />
&lt;div&gt;<br />
&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title(); ?&gt;&#8221;&gt;<br />
&lt;img src=&#8221;&lt;?php echo $postimg; ?&gt;&#8221; alt=&#8221;" width=&#8221;140&#8243;  /&gt;&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;</li>
<li>When you create a post, upload an image and copy the Link URL. Create a custom fields key rounded_img and paste the Link URL in the Value Box.<strong><br />
</strong></li>
</ol>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;desc=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;t=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;link=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;body=Link: http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;srcUrl=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;srcTitle=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;snippet=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;summary=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&amp;selection=While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/&amp;title=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/+&quot;Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fadd-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects%2F&amp;t=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Add+SWFir+to+WordPress+for+nice+rounded+corners%2C+shadows+and+other+effects+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Add%20SWFir%20to%20WordPress%20for%20nice%20rounded%20corners%2C%20shadows%20and%20other%20effects%22&amp;body=Link: http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A While%20collaborating%20with%20our%20colleagues%20at%20Red%20Door%20on%20a%20project%2C%20we%20came%20across%20SWFir%2C%C2%A0%20an%20amazing%20way%20to%20add%20some%20nice%20subtle%20effects%20to%20WordPress%20site%20images.%20SWFir%20automatically%20adds%20a%20flash%20layer%20on%20top%20of%20images%20that%20can%20round%20the%20corners%2C%20add%20a%20shadow%2C%20rotate%2C%20or%20add%20a%20border.%C2%A0%20I%20found%20the%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/add-swfir-to-wordpress-for-nice-rounded-corners-shadows-and-other-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Interface Icons in three different sizes</title>
		<link>http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/</link>
		<comments>http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 13:17:13 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/design/user-interface-icons-in-three-different-sizes/</guid>
		<description><![CDATA[User Interface Icons.com has released 140 very pretty icons in .png format, and in 3 different sizes: 48&#215;48 pixels, 32&#215;32 pixels, and 24&#215;24 pixels. Definitely worth adding to your icon arsenal.





		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Facebook
		
		
			Share this on FriendFeed
		
		
			Email this via Gmail
		
		
			Add this to Google Bookmarks
		
		
			Post on Google Buzz
		
		
			Add this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.userinterfaceicons.com/" title="User Interface Icons.com">User Interface Icons.com</a> has released 140 very pretty icons in .png format, and in 3 different sizes: 48&#215;48 pixels, 32&#215;32 pixels, and 24&#215;24 pixels. Definitely worth adding to your<a href="http://wpgarage.com/tag/icons/" title="Icons on WordPressGarage"> icon arsenal</a>.</p>
<p><a href="http://www.userinterfaceicons.com/" title="User Interface Icons.com"><img src="http://wpgarage.com/wp-content/uploads/2007/11/croppercapture65.Jpg" alt="User Interface Icons.com" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes&amp;desc=User%20Interface%20Icons.com%20has%20released%20140%20very%20pretty%20icons%20in%20.png%20format%2C%20and%20in%203%20different%20sizes%3A%2048x48%20pixels%2C%2032x32%20pixels%2C%20and%2024x24%20pixels.%20Definitely%20worth%20adding%20to%20your%20icon%20arsenal.%0A%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;t=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=User+Interface+Icons+in+three+different+sizes&amp;link=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=User+Interface+Icons+in+three+different+sizes&amp;body=Link: http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A User%20Interface%20Icons.com%20has%20released%20140%20very%20pretty%20icons%20in%20.png%20format%2C%20and%20in%203%20different%20sizes%3A%2048x48%20pixels%2C%2032x32%20pixels%2C%20and%2024x24%20pixels.%20Definitely%20worth%20adding%20to%20your%20icon%20arsenal.%0A%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes&amp;srcUrl=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;srcTitle=User+Interface+Icons+in+three+different+sizes&amp;snippet=User%20Interface%20Icons.com%20has%20released%20140%20very%20pretty%20icons%20in%20.png%20format%2C%20and%20in%203%20different%20sizes%3A%2048x48%20pixels%2C%2032x32%20pixels%2C%20and%2024x24%20pixels.%20Definitely%20worth%20adding%20to%20your%20icon%20arsenal.%0A%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes&amp;summary=User%20Interface%20Icons.com%20has%20released%20140%20very%20pretty%20icons%20in%20.png%20format%2C%20and%20in%203%20different%20sizes%3A%2048x48%20pixels%2C%2032x32%20pixels%2C%20and%2024x24%20pixels.%20Definitely%20worth%20adding%20to%20your%20icon%20arsenal.%0A%0A&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=User+Interface+Icons+in+three+different+sizes&amp;url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes&amp;selection=User%20Interface%20Icons.com%20has%20released%20140%20very%20pretty%20icons%20in%20.png%20format%2C%20and%20in%203%20different%20sizes%3A%2048x48%20pixels%2C%2032x32%20pixels%2C%20and%2024x24%20pixels.%20Definitely%20worth%20adding%20to%20your%20icon%20arsenal.%0A%0A" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/&amp;title=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/+&quot;User+Interface+Icons+in+three+different+sizes&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fuser-interface-icons-in-three-different-sizes%2F&amp;t=User+Interface+Icons+in+three+different+sizes" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=User+Interface+Icons+in+three+different+sizes+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22User%20Interface%20Icons%20in%20three%20different%20sizes%22&amp;body=Link: http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A User%20Interface%20Icons.com%20has%20released%20140%20very%20pretty%20icons%20in%20.png%20format%2C%20and%20in%203%20different%20sizes%3A%2048x48%20pixels%2C%2032x32%20pixels%2C%20and%2024x24%20pixels.%20Definitely%20worth%20adding%20to%20your%20icon%20arsenal.%0A%0A" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/user-interface-icons-in-three-different-sizes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More feed icons</title>
		<link>http://wpgarage.com/design/more-feed-icons/</link>
		<comments>http://wpgarage.com/design/more-feed-icons/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 22:24:07 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/design/more-feed-icons/</guid>
		<description><![CDATA[iLemoned points us to Zeusbox Studio&#8217;s update to their Feedicons icon pack.





		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Facebook
		
		
			Share this on FriendFeed
		
		
			Email this via Gmail
		
		
			Add this to Google Bookmarks
		
		
			Post on Google Buzz
		
		
			Add this to Google Reader
		
		
			Share this on LinkedIn
		
		
			Submit this to Netvibes
		
		
			Post this to Posterous
		
		
			Share this on Reddit
		
		
			Submit this to SlashDot
		
		
			Sphinn this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ilemoned.com/archives/feedicons2" title="Feedicons 2">iLemoned</a> points us to Zeusbox Studio&#8217;s update to their <a href="http://www.zeusboxstudio.com/blog/feedicons-2" title="Feedicons 2">Feedicons icon pack</a>.</p>
<p><a href="http://www.ilemoned.com/archives/feedicons2" title="Feedicons 2"><img src="http://wpgarage.com/wp-content/uploads/2007/10/feedicons2.jpg" alt="feedicons2.jpg" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons&amp;desc=iLemoned%20points%20us%20to%20Zeusbox%20Studio%27s%20update%20to%20their%20Feedicons%20icon%20pack.%0A%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/more-feed-icons/&amp;t=More+feed+icons" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=More+feed+icons&amp;link=http://wpgarage.com/design/more-feed-icons/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=More+feed+icons&amp;body=Link: http://wpgarage.com/design/more-feed-icons/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A iLemoned%20points%20us%20to%20Zeusbox%20Studio%27s%20update%20to%20their%20Feedicons%20icon%20pack.%0A%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/more-feed-icons/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons&amp;srcUrl=http://wpgarage.com/design/more-feed-icons/&amp;srcTitle=More+feed+icons&amp;snippet=iLemoned%20points%20us%20to%20Zeusbox%20Studio%27s%20update%20to%20their%20Feedicons%20icon%20pack.%0A%0A" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons&amp;summary=iLemoned%20points%20us%20to%20Zeusbox%20Studio%27s%20update%20to%20their%20Feedicons%20icon%20pack.%0A%0A&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=More+feed+icons&amp;url=http://wpgarage.com/design/more-feed-icons/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons&amp;selection=iLemoned%20points%20us%20to%20Zeusbox%20Studio%27s%20update%20to%20their%20Feedicons%20icon%20pack.%0A%0A" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/more-feed-icons/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/more-feed-icons/&amp;title=More+feed+icons" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/more-feed-icons/+&quot;More+feed+icons&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fmore-feed-icons%2F&amp;t=More+feed+icons" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=More+feed+icons+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22More%20feed%20icons%22&amp;body=Link: http://wpgarage.com/design/more-feed-icons/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A iLemoned%20points%20us%20to%20Zeusbox%20Studio%27s%20update%20to%20their%20Feedicons%20icon%20pack.%0A%0A" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/more-feed-icons/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/more-feed-icons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Case study: How blog design contributed to Blogsolid&#8217;s success</title>
		<link>http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/</link>
		<comments>http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 09:00:14 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/</guid>
		<description><![CDATA[Blogging seems to be all about content. It&#8217;s about what you write, how you write it, who you link to, etc. So how does design come into play? Most people say that design is important, and that you should have a professional design that is easy on the eyes, and simple to navigate. It is [...]]]></description>
			<content:encoded><![CDATA[<p>Blogging seems to be all about content. It&#8217;s about what you write, how you write it, who you link to, etc. So how does design come into play? Most people say that design is important, and that you should have a professional design that is easy on the eyes, and simple to navigate. It is generally agreed that a bad blog design may have a negative impact on your blog readership.</p>
<p>But I&#8217;ve rarely heard people say that a fantastic blog design will be the key to blogging success. Well, <a href="http://blogsolid.com" title="Blogsolid">Blogsolid</a> is a good case study of how a unique and beautiful design can bring in torrents of readers.</p>
<p>Blogsolid officially launched on July 31st. The content on the site is pretty good, but not anything out of the ordinary. By August 9, the blog was picked up by a bunch of web design galleries. The onslaught of visitors <a href="http://blogsolid.com/ideas/2007/1-day-623-visitors-crash-heres-how/" title="1 Day. 623 Visitors. Crash! Here’s How…">crashed the poor guy&#8217;s servers for 12 hours</a>.</p>
<p>Blogsolid&#8217;s design and architecture are brilliant. The blog has three categories, which appear on the home page as options for entering the blog. You can also enter the general blog by clicking on the header (this should probably be made clearer somehow &#8211; I think there should be four options for entering the blog, i.e. the three categories plus the blog with everything).</p>
<p><a href="http://blogsolid.com" title="Blogsolid"></a></p>
<p style="text-align: center"><a href="http://blogsolid.com" title="Blogsolid"><img src="http://wpgarage.com/wp-content/uploads/2007/09/blogsolid.jpg" alt="Blogsolid homepage" /></a></p>
<p>Of course, the guy/gal behind Blogsolid is a graphic designer, and it shows. As we&#8217;re not all graphic designers, we can theoretically pay someone for a unique design. However, blogging is not always the most profitable of activities, so this is often not viable. But this case study just goes to show how significant design can be in the success of your blog. So try to make sure your blog is presentable and professional, either by creating your own design, or carefully selecting and customizing an existing theme.</p>
<p>(I am working on customizing a new theme for WordPressGarage as we speak &#8211; even I can&#8217;t stand the way this blog looks anymore!)</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;desc=Blogging%20seems%20to%20be%20all%20about%20content.%20It%27s%20about%20what%20you%20write%2C%20how%20you%20write%20it%2C%20who%20you%20link%20to%2C%20etc.%20So%20how%20does%20design%20come%20into%20play%3F%20Most%20people%20say%20that%20design%20is%20important%2C%20and%20that%20you%20should%20have%20a%20professional%20design%20that%20is%20easy%20on%20the%20eyes%2C%20and%20simple%20to%20navigate.%20It%20is%20generally%20agr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;t=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;link=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;body=Link: http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Blogging%20seems%20to%20be%20all%20about%20content.%20It%27s%20about%20what%20you%20write%2C%20how%20you%20write%20it%2C%20who%20you%20link%20to%2C%20etc.%20So%20how%20does%20design%20come%20into%20play%3F%20Most%20people%20say%20that%20design%20is%20important%2C%20and%20that%20you%20should%20have%20a%20professional%20design%20that%20is%20easy%20on%20the%20eyes%2C%20and%20simple%20to%20navigate.%20It%20is%20generally%20agr" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;srcUrl=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;srcTitle=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;snippet=Blogging%20seems%20to%20be%20all%20about%20content.%20It%27s%20about%20what%20you%20write%2C%20how%20you%20write%20it%2C%20who%20you%20link%20to%2C%20etc.%20So%20how%20does%20design%20come%20into%20play%3F%20Most%20people%20say%20that%20design%20is%20important%2C%20and%20that%20you%20should%20have%20a%20professional%20design%20that%20is%20easy%20on%20the%20eyes%2C%20and%20simple%20to%20navigate.%20It%20is%20generally%20agr" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;summary=Blogging%20seems%20to%20be%20all%20about%20content.%20It%27s%20about%20what%20you%20write%2C%20how%20you%20write%20it%2C%20who%20you%20link%20to%2C%20etc.%20So%20how%20does%20design%20come%20into%20play%3F%20Most%20people%20say%20that%20design%20is%20important%2C%20and%20that%20you%20should%20have%20a%20professional%20design%20that%20is%20easy%20on%20the%20eyes%2C%20and%20simple%20to%20navigate.%20It%20is%20generally%20agr&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&amp;selection=Blogging%20seems%20to%20be%20all%20about%20content.%20It%27s%20about%20what%20you%20write%2C%20how%20you%20write%20it%2C%20who%20you%20link%20to%2C%20etc.%20So%20how%20does%20design%20come%20into%20play%3F%20Most%20people%20say%20that%20design%20is%20important%2C%20and%20that%20you%20should%20have%20a%20professional%20design%20that%20is%20easy%20on%20the%20eyes%2C%20and%20simple%20to%20navigate.%20It%20is%20generally%20agr" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/&amp;title=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/+&quot;Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fcase-study-how-blog-design-contributed-to-blogsolids-success%2F&amp;t=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Case+study%3A+How+blog+design+contributed+to+Blogsolid%27s+success+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Case%20study%3A%20How%20blog%20design%20contributed%20to%20Blogsolid%27s%20success%22&amp;body=Link: http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Blogging%20seems%20to%20be%20all%20about%20content.%20It%27s%20about%20what%20you%20write%2C%20how%20you%20write%20it%2C%20who%20you%20link%20to%2C%20etc.%20So%20how%20does%20design%20come%20into%20play%3F%20Most%20people%20say%20that%20design%20is%20important%2C%20and%20that%20you%20should%20have%20a%20professional%20design%20that%20is%20easy%20on%20the%20eyes%2C%20and%20simple%20to%20navigate.%20It%20is%20generally%20agr" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/case-study-how-blog-design-contributed-to-blogsolids-success/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Crystal icon set &#8211; free beautiful icons</title>
		<link>http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/</link>
		<comments>http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 10:42:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/design/crystal-icon-set-free-beautiful-icons/</guid>
		<description><![CDATA[Everaldo has a few icon sets available for download. They are really beautiful:

Download the Crystal Icon Set&#62;&#62;




		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Facebook
		
		
			Share this on FriendFeed
		
		
			Email this via Gmail
		
		
			Add this to Google Bookmarks
		
		
			Post on Google Buzz
		
		
			Add this to Google Reader
		
		
			Share this on LinkedIn
		
		
			Submit this to Netvibes
		
		
			Post this to Posterous
		
		
			Share this on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://everaldo.com/" title="Everaldo">Everaldo</a> has a few icon sets available for download. They are really beautiful:</p>
<p><img src="http://wpgarage.com/wp-content/uploads/2007/07/crystal1.jpg" alt="Crystal icon set - free beautiful icons" /></p>
<p><a href="http://everaldo.com/crystal/?action=downloads" title="Download Crystal Icons">Download the Crystal Icon Set&gt;&gt;</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons&amp;desc=Everaldo%20has%20a%20few%20icon%20sets%20available%20for%20download.%20They%20are%20really%20beautiful%3A%0A%0A%0A%0ADownload%20the%20Crystal%20Icon%20Set%26gt%3B%26gt%3B" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;t=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Crystal+icon+set+-+free+beautiful+icons&amp;link=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Crystal+icon+set+-+free+beautiful+icons&amp;body=Link: http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Everaldo%20has%20a%20few%20icon%20sets%20available%20for%20download.%20They%20are%20really%20beautiful%3A%0A%0A%0A%0ADownload%20the%20Crystal%20Icon%20Set%26gt%3B%26gt%3B" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons&amp;srcUrl=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;srcTitle=Crystal+icon+set+-+free+beautiful+icons&amp;snippet=Everaldo%20has%20a%20few%20icon%20sets%20available%20for%20download.%20They%20are%20really%20beautiful%3A%0A%0A%0A%0ADownload%20the%20Crystal%20Icon%20Set%26gt%3B%26gt%3B" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons&amp;summary=Everaldo%20has%20a%20few%20icon%20sets%20available%20for%20download.%20They%20are%20really%20beautiful%3A%0A%0A%0A%0ADownload%20the%20Crystal%20Icon%20Set%26gt%3B%26gt%3B&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Crystal+icon+set+-+free+beautiful+icons&amp;url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons&amp;selection=Everaldo%20has%20a%20few%20icon%20sets%20available%20for%20download.%20They%20are%20really%20beautiful%3A%0A%0A%0A%0ADownload%20the%20Crystal%20Icon%20Set%26gt%3B%26gt%3B" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/&amp;title=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/+&quot;Crystal+icon+set+-+free+beautiful+icons&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fcrystal-icon-set-free-beautiful-icons%2F&amp;t=Crystal+icon+set+-+free+beautiful+icons" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Crystal+icon+set+-+free+beautiful+icons+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Crystal%20icon%20set%20-%20free%20beautiful%20icons%22&amp;body=Link: http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Everaldo%20has%20a%20few%20icon%20sets%20available%20for%20download.%20They%20are%20really%20beautiful%3A%0A%0A%0A%0ADownload%20the%20Crystal%20Icon%20Set%26gt%3B%26gt%3B" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/crystal-icon-set-free-beautiful-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iconlet &#8211; the icon search engine</title>
		<link>http://wpgarage.com/design/iconlet-the-icon-search-engine/</link>
		<comments>http://wpgarage.com/design/iconlet-the-icon-search-engine/#comments</comments>
		<pubDate>Sun, 10 Jun 2007 11:43:45 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://wordpressgarage.com/design/iconlet-the-icon-search-engine/</guid>
		<description><![CDATA[I love icons. They&#8217;re just so&#8230;cute. I also find that, when used in the right places, they really add a nice touch to blogs.
Iconlet is an icon search engine. It&#8217;s minimalist home page has a search field, and you enter the type of icon you are looking for. I did some test searches for &#8220;save,&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I love icons. They&#8217;re just so&#8230;cute. I also find that, when used in the right places, they really add a nice touch to blogs.</p>
<p><a href="http://www.iconlet.com/home" title="Iconlet - icon search engine">Iconlet</a> is an icon search engine. It&#8217;s minimalist home page has a search field, and you enter the type of icon you are looking for. I did some test searches for &#8220;save,&#8221; &#8220;search,&#8221; &#8220;rss,&#8221; and &#8220;emoticons, with great results.</p>
<p><a href="http://www.iconlet.com/home" title="Iconlet - icon search engine">Iconlet&gt;&gt;</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine&amp;desc=I%20love%20icons.%20They%27re%20just%20so...cute.%20I%20also%20find%20that%2C%20when%20used%20in%20the%20right%20places%2C%20they%20really%20add%20a%20nice%20touch%20to%20blogs.%0A%0AIconlet%20is%20an%20icon%20search%20engine.%20It%27s%20minimalist%20home%20page%20has%20a%20search%20field%2C%20and%20you%20enter%20the%20type%20of%20icon%20you%20are%20looking%20for.%20I%20did%20some%20test%20searches%20for%20%22save%2C%22%20%22sea" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;t=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Iconlet+-+the+icon+search+engine&amp;link=http://wpgarage.com/design/iconlet-the-icon-search-engine/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Iconlet+-+the+icon+search+engine&amp;body=Link: http://wpgarage.com/design/iconlet-the-icon-search-engine/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20love%20icons.%20They%27re%20just%20so...cute.%20I%20also%20find%20that%2C%20when%20used%20in%20the%20right%20places%2C%20they%20really%20add%20a%20nice%20touch%20to%20blogs.%0A%0AIconlet%20is%20an%20icon%20search%20engine.%20It%27s%20minimalist%20home%20page%20has%20a%20search%20field%2C%20and%20you%20enter%20the%20type%20of%20icon%20you%20are%20looking%20for.%20I%20did%20some%20test%20searches%20for%20%22save%2C%22%20%22sea" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine&amp;srcUrl=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;srcTitle=Iconlet+-+the+icon+search+engine&amp;snippet=I%20love%20icons.%20They%27re%20just%20so...cute.%20I%20also%20find%20that%2C%20when%20used%20in%20the%20right%20places%2C%20they%20really%20add%20a%20nice%20touch%20to%20blogs.%0A%0AIconlet%20is%20an%20icon%20search%20engine.%20It%27s%20minimalist%20home%20page%20has%20a%20search%20field%2C%20and%20you%20enter%20the%20type%20of%20icon%20you%20are%20looking%20for.%20I%20did%20some%20test%20searches%20for%20%22save%2C%22%20%22sea" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine&amp;summary=I%20love%20icons.%20They%27re%20just%20so...cute.%20I%20also%20find%20that%2C%20when%20used%20in%20the%20right%20places%2C%20they%20really%20add%20a%20nice%20touch%20to%20blogs.%0A%0AIconlet%20is%20an%20icon%20search%20engine.%20It%27s%20minimalist%20home%20page%20has%20a%20search%20field%2C%20and%20you%20enter%20the%20type%20of%20icon%20you%20are%20looking%20for.%20I%20did%20some%20test%20searches%20for%20%22save%2C%22%20%22sea&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Iconlet+-+the+icon+search+engine&amp;url=http://wpgarage.com/design/iconlet-the-icon-search-engine/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine&amp;selection=I%20love%20icons.%20They%27re%20just%20so...cute.%20I%20also%20find%20that%2C%20when%20used%20in%20the%20right%20places%2C%20they%20really%20add%20a%20nice%20touch%20to%20blogs.%0A%0AIconlet%20is%20an%20icon%20search%20engine.%20It%27s%20minimalist%20home%20page%20has%20a%20search%20field%2C%20and%20you%20enter%20the%20type%20of%20icon%20you%20are%20looking%20for.%20I%20did%20some%20test%20searches%20for%20%22save%2C%22%20%22sea" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/iconlet-the-icon-search-engine/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/&amp;title=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/iconlet-the-icon-search-engine/+&quot;Iconlet+-+the+icon+search+engine&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Ficonlet-the-icon-search-engine%2F&amp;t=Iconlet+-+the+icon+search+engine" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Iconlet+-+the+icon+search+engine+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Iconlet%20-%20the%20icon%20search%20engine%22&amp;body=Link: http://wpgarage.com/design/iconlet-the-icon-search-engine/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20love%20icons.%20They%27re%20just%20so...cute.%20I%20also%20find%20that%2C%20when%20used%20in%20the%20right%20places%2C%20they%20really%20add%20a%20nice%20touch%20to%20blogs.%0A%0AIconlet%20is%20an%20icon%20search%20engine.%20It%27s%20minimalist%20home%20page%20has%20a%20search%20field%2C%20and%20you%20enter%20the%20type%20of%20icon%20you%20are%20looking%20for.%20I%20did%20some%20test%20searches%20for%20%22save%2C%22%20%22sea" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/iconlet-the-icon-search-engine/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/iconlet-the-icon-search-engine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More CSS Layouts</title>
		<link>http://wpgarage.com/design/more-css-layouts/</link>
		<comments>http://wpgarage.com/design/more-css-layouts/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 21:45:58 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[CSS Templates]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/design/more-css-layouts/</guid>
		<description><![CDATA[If you are looking for CSS layouts to use as a foundation for your blog or site, you can find a whole range of layouts here. You&#8217;ve got 750px width, 950px, 100%, and under each width you have 56 different layouts, with 1, 2, 3 and four columns, all with different widths and in different [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for CSS layouts to use as a foundation for your blog or site, you can find a <a href="http://layouts.ironmyers.com/" title="CSS Layouts">whole range of layouts</a> here. You&#8217;ve got 750px width, 950px, 100%, and under each width you have 56 different layouts, with 1, 2, 3 and four columns, all with different widths and in different places.</p>
<p><a href="http://layouts.ironmyers.com/" title="CSS Layouts">CSS Layouts&gt;&gt; </a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts&amp;desc=If%20you%20are%20looking%20for%20CSS%20layouts%20to%20use%20as%20a%20foundation%20for%20your%20blog%20or%20site%2C%20you%20can%20find%20a%20whole%20range%20of%20layouts%20here.%20You%27ve%20got%20750px%20width%2C%20950px%2C%20100%25%2C%20and%20under%20each%20width%20you%20have%2056%20different%20layouts%2C%20with%201%2C%202%2C%203%20and%20four%20columns%2C%20all%20with%20different%20widths%20and%20in%20different%20places.%0A%0ACSS" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/more-css-layouts/&amp;t=More+CSS+Layouts" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=More+CSS+Layouts&amp;link=http://wpgarage.com/design/more-css-layouts/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=More+CSS+Layouts&amp;body=Link: http://wpgarage.com/design/more-css-layouts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A If%20you%20are%20looking%20for%20CSS%20layouts%20to%20use%20as%20a%20foundation%20for%20your%20blog%20or%20site%2C%20you%20can%20find%20a%20whole%20range%20of%20layouts%20here.%20You%27ve%20got%20750px%20width%2C%20950px%2C%20100%25%2C%20and%20under%20each%20width%20you%20have%2056%20different%20layouts%2C%20with%201%2C%202%2C%203%20and%20four%20columns%2C%20all%20with%20different%20widths%20and%20in%20different%20places.%0A%0ACSS" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/more-css-layouts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts&amp;srcUrl=http://wpgarage.com/design/more-css-layouts/&amp;srcTitle=More+CSS+Layouts&amp;snippet=If%20you%20are%20looking%20for%20CSS%20layouts%20to%20use%20as%20a%20foundation%20for%20your%20blog%20or%20site%2C%20you%20can%20find%20a%20whole%20range%20of%20layouts%20here.%20You%27ve%20got%20750px%20width%2C%20950px%2C%20100%25%2C%20and%20under%20each%20width%20you%20have%2056%20different%20layouts%2C%20with%201%2C%202%2C%203%20and%20four%20columns%2C%20all%20with%20different%20widths%20and%20in%20different%20places.%0A%0ACSS" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts&amp;summary=If%20you%20are%20looking%20for%20CSS%20layouts%20to%20use%20as%20a%20foundation%20for%20your%20blog%20or%20site%2C%20you%20can%20find%20a%20whole%20range%20of%20layouts%20here.%20You%27ve%20got%20750px%20width%2C%20950px%2C%20100%25%2C%20and%20under%20each%20width%20you%20have%2056%20different%20layouts%2C%20with%201%2C%202%2C%203%20and%20four%20columns%2C%20all%20with%20different%20widths%20and%20in%20different%20places.%0A%0ACSS&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=More+CSS+Layouts&amp;url=http://wpgarage.com/design/more-css-layouts/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts&amp;selection=If%20you%20are%20looking%20for%20CSS%20layouts%20to%20use%20as%20a%20foundation%20for%20your%20blog%20or%20site%2C%20you%20can%20find%20a%20whole%20range%20of%20layouts%20here.%20You%27ve%20got%20750px%20width%2C%20950px%2C%20100%25%2C%20and%20under%20each%20width%20you%20have%2056%20different%20layouts%2C%20with%201%2C%202%2C%203%20and%20four%20columns%2C%20all%20with%20different%20widths%20and%20in%20different%20places.%0A%0ACSS" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/more-css-layouts/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/more-css-layouts/&amp;title=More+CSS+Layouts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/more-css-layouts/+&quot;More+CSS+Layouts&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fmore-css-layouts%2F&amp;t=More+CSS+Layouts" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=More+CSS+Layouts+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22More%20CSS%20Layouts%22&amp;body=Link: http://wpgarage.com/design/more-css-layouts/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A If%20you%20are%20looking%20for%20CSS%20layouts%20to%20use%20as%20a%20foundation%20for%20your%20blog%20or%20site%2C%20you%20can%20find%20a%20whole%20range%20of%20layouts%20here.%20You%27ve%20got%20750px%20width%2C%20950px%2C%20100%25%2C%20and%20under%20each%20width%20you%20have%2056%20different%20layouts%2C%20with%201%2C%202%2C%203%20and%20four%20columns%2C%20all%20with%20different%20widths%20and%20in%20different%20places.%0A%0ACSS" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/more-css-layouts/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/more-css-layouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you want to be inspired, you have to see this site!</title>
		<link>http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/</link>
		<comments>http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 09:36:26 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[News & Views]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/news-views/if-you-want-to-be-inspired-you-have-to-see-this-site/</guid>
		<description><![CDATA[CSS Import&#8217;s latest entry in its gallery is one of the most amazing sites I&#8217;ve seen. It is the online CV and portfolio of Danny Blackman, a 3rd year BA Communications &#38; New Media student at University of Leeds, UK and a freelance designer &#38; developer. This is a one page site that has amazing [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cssimport.com/" title="CSS Import">CSS Import&#8217;s</a> latest entry in its gallery is one of the most amazing sites I&#8217;ve seen. It is the <a href="http://www.dannyblackman.com/" title="Danny Blackman">online CV and portfolio of Danny Blackman</a>, a 3rd year BA Communications &amp; New Media student at University of Leeds, UK and a freelance designer &amp; developer. This is a one page site that has amazing design elements and scrolls down for you where required. I&#8217;d hire this guy&#8230;if I could afford to&#8230;and I lived in England&#8230;</p>
<p><a href="http://www.dannyblackman.com/" title="Danny Blackman">Danny Blackman&gt;&gt;</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;desc=CSS%20Import%27s%20latest%20entry%20in%20its%20gallery%20is%20one%20of%20the%20most%20amazing%20sites%20I%27ve%20seen.%20It%20is%20the%20online%20CV%20and%20portfolio%20of%20Danny%20Blackman%2C%20a%203rd%20year%20BA%20Communications%20%26amp%3B%20New%20Media%20student%20at%20University%20of%20Leeds%2C%20UK%20and%20a%20freelance%20designer%20%26amp%3B%20developer.%20This%20is%20a%20one%20page%20site%20that%20has%20amazing" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;t=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;link=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;body=Link: http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A CSS%20Import%27s%20latest%20entry%20in%20its%20gallery%20is%20one%20of%20the%20most%20amazing%20sites%20I%27ve%20seen.%20It%20is%20the%20online%20CV%20and%20portfolio%20of%20Danny%20Blackman%2C%20a%203rd%20year%20BA%20Communications%20%26amp%3B%20New%20Media%20student%20at%20University%20of%20Leeds%2C%20UK%20and%20a%20freelance%20designer%20%26amp%3B%20developer.%20This%20is%20a%20one%20page%20site%20that%20has%20amazing" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;srcUrl=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;srcTitle=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;snippet=CSS%20Import%27s%20latest%20entry%20in%20its%20gallery%20is%20one%20of%20the%20most%20amazing%20sites%20I%27ve%20seen.%20It%20is%20the%20online%20CV%20and%20portfolio%20of%20Danny%20Blackman%2C%20a%203rd%20year%20BA%20Communications%20%26amp%3B%20New%20Media%20student%20at%20University%20of%20Leeds%2C%20UK%20and%20a%20freelance%20designer%20%26amp%3B%20developer.%20This%20is%20a%20one%20page%20site%20that%20has%20amazing" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;summary=CSS%20Import%27s%20latest%20entry%20in%20its%20gallery%20is%20one%20of%20the%20most%20amazing%20sites%20I%27ve%20seen.%20It%20is%20the%20online%20CV%20and%20portfolio%20of%20Danny%20Blackman%2C%20a%203rd%20year%20BA%20Communications%20%26amp%3B%20New%20Media%20student%20at%20University%20of%20Leeds%2C%20UK%20and%20a%20freelance%20designer%20%26amp%3B%20developer.%20This%20is%20a%20one%20page%20site%20that%20has%20amazing&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&amp;selection=CSS%20Import%27s%20latest%20entry%20in%20its%20gallery%20is%20one%20of%20the%20most%20amazing%20sites%20I%27ve%20seen.%20It%20is%20the%20online%20CV%20and%20portfolio%20of%20Danny%20Blackman%2C%20a%203rd%20year%20BA%20Communications%20%26amp%3B%20New%20Media%20student%20at%20University%20of%20Leeds%2C%20UK%20and%20a%20freelance%20designer%20%26amp%3B%20developer.%20This%20is%20a%20one%20page%20site%20that%20has%20amazing" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/&amp;title=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/+&quot;If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fif-you-want-to-be-inspired-you-have-to-see-this-site%2F&amp;t=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=If+you+want+to+be+inspired%2C+you+have+to+see+this+site%21+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22If%20you%20want%20to%20be%20inspired%2C%20you%20have%20to%20see%20this%20site%21%22&amp;body=Link: http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A CSS%20Import%27s%20latest%20entry%20in%20its%20gallery%20is%20one%20of%20the%20most%20amazing%20sites%20I%27ve%20seen.%20It%20is%20the%20online%20CV%20and%20portfolio%20of%20Danny%20Blackman%2C%20a%203rd%20year%20BA%20Communications%20%26amp%3B%20New%20Media%20student%20at%20University%20of%20Leeds%2C%20UK%20and%20a%20freelance%20designer%20%26amp%3B%20developer.%20This%20is%20a%20one%20page%20site%20that%20has%20amazing" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/if-you-want-to-be-inspired-you-have-to-see-this-site/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Another CSS gallery &#8211; CSS Impress</title>
		<link>http://wpgarage.com/design/another-css-gallery-css-impress/</link>
		<comments>http://wpgarage.com/design/another-css-gallery-css-impress/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 21:46:17 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/design/another-css-gallery-css-impress/</guid>
		<description><![CDATA[Waynne sent in a comment recommending CSS Impress as another CSS gallery worth checking out. Thanks Waynne!
CSS Impress&#62;&#62; 




		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Facebook
		
		
			Share this on FriendFeed
		
		
			Email this via Gmail
		
		
			Add this to Google Bookmarks
		
		
			Post on Google Buzz
		
		
			Add this to Google Reader
		
		
			Share this on LinkedIn
		
		
			Submit this to Netvibes
		
		
			Post this to Posterous
		
		
			Share this [...]]]></description>
			<content:encoded><![CDATA[<p>Waynne sent in a comment recommending <a href="http://www.cssimpress.com/" title="CSS Impress">CSS Impress</a> as another CSS gallery worth checking out. Thanks Waynne!</p>
<p><a href="http://www.cssimpress.com/" title="CSS Impress">CSS Impress&gt;&gt; </a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress&amp;desc=Waynne%20sent%20in%20a%20comment%20recommending%20CSS%20Impress%20as%20another%20CSS%20gallery%20worth%20checking%20out.%20Thanks%20Waynne%21%0A%0ACSS%20Impress%26gt%3B%26gt%3B%C2%A0" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;t=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Another+CSS+gallery+-+CSS+Impress&amp;link=http://wpgarage.com/design/another-css-gallery-css-impress/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Another+CSS+gallery+-+CSS+Impress&amp;body=Link: http://wpgarage.com/design/another-css-gallery-css-impress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Waynne%20sent%20in%20a%20comment%20recommending%20CSS%20Impress%20as%20another%20CSS%20gallery%20worth%20checking%20out.%20Thanks%20Waynne%21%0A%0ACSS%20Impress%26gt%3B%26gt%3B%C2%A0" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress&amp;srcUrl=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;srcTitle=Another+CSS+gallery+-+CSS+Impress&amp;snippet=Waynne%20sent%20in%20a%20comment%20recommending%20CSS%20Impress%20as%20another%20CSS%20gallery%20worth%20checking%20out.%20Thanks%20Waynne%21%0A%0ACSS%20Impress%26gt%3B%26gt%3B%C2%A0" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress&amp;summary=Waynne%20sent%20in%20a%20comment%20recommending%20CSS%20Impress%20as%20another%20CSS%20gallery%20worth%20checking%20out.%20Thanks%20Waynne%21%0A%0ACSS%20Impress%26gt%3B%26gt%3B%C2%A0&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Another+CSS+gallery+-+CSS+Impress&amp;url=http://wpgarage.com/design/another-css-gallery-css-impress/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress&amp;selection=Waynne%20sent%20in%20a%20comment%20recommending%20CSS%20Impress%20as%20another%20CSS%20gallery%20worth%20checking%20out.%20Thanks%20Waynne%21%0A%0ACSS%20Impress%26gt%3B%26gt%3B%C2%A0" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/another-css-gallery-css-impress/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/another-css-gallery-css-impress/&amp;title=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/another-css-gallery-css-impress/+&quot;Another+CSS+gallery+-+CSS+Impress&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2Fanother-css-gallery-css-impress%2F&amp;t=Another+CSS+gallery+-+CSS+Impress" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Another+CSS+gallery+-+CSS+Impress+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Another%20CSS%20gallery%20-%20CSS%20Impress%22&amp;body=Link: http://wpgarage.com/design/another-css-gallery-css-impress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Waynne%20sent%20in%20a%20comment%20recommending%20CSS%20Impress%20as%20another%20CSS%20gallery%20worth%20checking%20out.%20Thanks%20Waynne%21%0A%0ACSS%20Impress%26gt%3B%26gt%3B%C2%A0" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/another-css-gallery-css-impress/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/another-css-gallery-css-impress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 Code Snippets for Web Designers</title>
		<link>http://wpgarage.com/design/25-code-snippets-for-web-designers/</link>
		<comments>http://wpgarage.com/design/25-code-snippets-for-web-designers/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 21:10:37 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[bar graps]]></category>
		<category><![CDATA[image maps]]></category>
		<category><![CDATA[lightboxes]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[speech bubbles]]></category>
		<category><![CDATA[star rating]]></category>
		<category><![CDATA[tabbed navigation]]></category>
		<category><![CDATA[tool tips]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/tips/25-code-snippets-for-web-designers/</guid>
		<description><![CDATA[This is a really amazing collection of links to code snippets for creating the following:

Bubble tool tips
Box-over tool tips
Star rating systems
Forms
Rounded corners
Speech bubbles (like those used in comments)
Bar graphs
Gallery lightboxes
CSS image maps
Tabbed navigation

25 Code Snippets for Web Designers (Part1)&#62;&#62;




		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Facebook
		
		
			Share this on FriendFeed
		
		
			Email this via Gmail
		
		
			Add [...]]]></description>
			<content:encoded><![CDATA[<p>This is a really amazing collection of links to code snippets for creating the following:</p>
<ul>
<li>Bubble tool tips</li>
<li>Box-over tool tips</li>
<li>Star rating systems</li>
<li>Forms</li>
<li>Rounded corners</li>
<li>Speech bubbles (like those used in comments)</li>
<li>Bar graphs</li>
<li>Gallery lightboxes</li>
<li>CSS image maps</li>
<li>Tabbed navigation</li>
</ul>
<p><a href="http://tutorialblog.org/25-code-snippets-for-web-designers-part1/">25 Code Snippets for Web Designers (Part1)&gt;&gt;</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers&amp;desc=This%20is%20a%20really%20amazing%20collection%20of%20links%20to%20code%20snippets%20for%20creating%20the%20following%3A%0A%0A%09Bubble%20tool%20tips%0A%09Box-over%20tool%20tips%0A%09Star%20rating%20systems%0A%09Forms%0A%09Rounded%20corners%0A%09Speech%20bubbles%20%28like%20those%20used%20in%20comments%29%0A%09Bar%20graphs%0A%09Gallery%20lightboxes%0A%09CSS%20image%20maps%0A%09Tabbed%20navigation%0A%0A25%20Code%20Snip" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;t=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=25+Code+Snippets+for+Web+Designers&amp;link=http://wpgarage.com/design/25-code-snippets-for-web-designers/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=25+Code+Snippets+for+Web+Designers&amp;body=Link: http://wpgarage.com/design/25-code-snippets-for-web-designers/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20is%20a%20really%20amazing%20collection%20of%20links%20to%20code%20snippets%20for%20creating%20the%20following%3A%0A%0A%09Bubble%20tool%20tips%0A%09Box-over%20tool%20tips%0A%09Star%20rating%20systems%0A%09Forms%0A%09Rounded%20corners%0A%09Speech%20bubbles%20%28like%20those%20used%20in%20comments%29%0A%09Bar%20graphs%0A%09Gallery%20lightboxes%0A%09CSS%20image%20maps%0A%09Tabbed%20navigation%0A%0A25%20Code%20Snip" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers&amp;srcUrl=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;srcTitle=25+Code+Snippets+for+Web+Designers&amp;snippet=This%20is%20a%20really%20amazing%20collection%20of%20links%20to%20code%20snippets%20for%20creating%20the%20following%3A%0A%0A%09Bubble%20tool%20tips%0A%09Box-over%20tool%20tips%0A%09Star%20rating%20systems%0A%09Forms%0A%09Rounded%20corners%0A%09Speech%20bubbles%20%28like%20those%20used%20in%20comments%29%0A%09Bar%20graphs%0A%09Gallery%20lightboxes%0A%09CSS%20image%20maps%0A%09Tabbed%20navigation%0A%0A25%20Code%20Snip" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers&amp;summary=This%20is%20a%20really%20amazing%20collection%20of%20links%20to%20code%20snippets%20for%20creating%20the%20following%3A%0A%0A%09Bubble%20tool%20tips%0A%09Box-over%20tool%20tips%0A%09Star%20rating%20systems%0A%09Forms%0A%09Rounded%20corners%0A%09Speech%20bubbles%20%28like%20those%20used%20in%20comments%29%0A%09Bar%20graphs%0A%09Gallery%20lightboxes%0A%09CSS%20image%20maps%0A%09Tabbed%20navigation%0A%0A25%20Code%20Snip&amp;source=WP Garage" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=25+Code+Snippets+for+Web+Designers&amp;url=http://wpgarage.com/design/25-code-snippets-for-web-designers/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers&amp;selection=This%20is%20a%20really%20amazing%20collection%20of%20links%20to%20code%20snippets%20for%20creating%20the%20following%3A%0A%0A%09Bubble%20tool%20tips%0A%09Box-over%20tool%20tips%0A%09Star%20rating%20systems%0A%09Forms%0A%09Rounded%20corners%0A%09Speech%20bubbles%20%28like%20those%20used%20in%20comments%29%0A%09Bar%20graphs%0A%09Gallery%20lightboxes%0A%09CSS%20image%20maps%0A%09Tabbed%20navigation%0A%0A25%20Code%20Snip" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://wpgarage.com/design/25-code-snippets-for-web-designers/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/&amp;title=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://wpgarage.com/design/25-code-snippets-for-web-designers/+&quot;25+Code+Snippets+for+Web+Designers&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwpgarage.com%2Fdesign%2F25-code-snippets-for-web-designers%2F&amp;t=25+Code+Snippets+for+Web+Designers" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=25+Code+Snippets+for+Web+Designers+-++%28via+%40wpgarage%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%2225%20Code%20Snippets%20for%20Web%20Designers%22&amp;body=Link: http://wpgarage.com/design/25-code-snippets-for-web-designers/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20is%20a%20really%20amazing%20collection%20of%20links%20to%20code%20snippets%20for%20creating%20the%20following%3A%0A%0A%09Bubble%20tool%20tips%0A%09Box-over%20tool%20tips%0A%09Star%20rating%20systems%0A%09Forms%0A%09Rounded%20corners%0A%09Speech%20bubbles%20%28like%20those%20used%20in%20comments%29%0A%09Bar%20graphs%0A%09Gallery%20lightboxes%0A%09CSS%20image%20maps%0A%09Tabbed%20navigation%0A%0A25%20Code%20Snip" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://wpgarage.com/design/25-code-snippets-for-web-designers/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://wpgarage.com/design/25-code-snippets-for-web-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
