<?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; rounded corners</title>
	<atom:link href="http://wpgarage.com/tag/rounded-corners/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpgarage.com</link>
	<description>wordpress tricks, hacks, and tips</description>
	<lastBuildDate>Mon, 30 Aug 2010 10:34:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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(&#8216;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(&#8216;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>Free XHTML/CSS Templates For Web Design</title>
		<link>http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/</link>
		<comments>http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/#comments</comments>
		<pubDate>Wed, 18 Apr 2007 19:42:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[CSS Templates]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[rounded corners]]></category>

		<guid isPermaLink="false">http://www.wordpressgarage.com/templates/free-xhtmlcss-templates-for-web-design/</guid>
		<description><![CDATA[Template World has some really nice Web 2.0ish templates available for free. It&#8217;s worth checking out. Free XHTML/CSS Templates For Web Design&#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 [...]]]></description>
			<content:encoded><![CDATA[<p>Template World has some really nice Web 2.0ish templates available for free. It&#8217;s worth checking out.</p>
<p><a href="http://www.templateworld.com/free_templates.html" title="Free XHTML/CSS Templates For Web Design">Free XHTML/CSS Templates For Web Design&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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design" 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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design" 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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;desc=Template%20World%20has%20some%20really%20nice%20Web%202.0ish%20templates%20available%20for%20free.%20It%27s%20worth%20checking%20out.%0A%0AFree%20XHTML%2FCSS%20Templates%20For%20Web%20Design%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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;t=Free+XHTML%2FCSS+Templates+For+Web+Design" 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=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;link=http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/" 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=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;body=Link: http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Template%20World%20has%20some%20really%20nice%20Web%202.0ish%20templates%20available%20for%20free.%20It%27s%20worth%20checking%20out.%0A%0AFree%20XHTML%2FCSS%20Templates%20For%20Web%20Design%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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design" 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/css-templates/free-xhtmlcss-templates-for-web-design/&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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;srcUrl=http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/&amp;srcTitle=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;snippet=Template%20World%20has%20some%20really%20nice%20Web%202.0ish%20templates%20available%20for%20free.%20It%27s%20worth%20checking%20out.%0A%0AFree%20XHTML%2FCSS%20Templates%20For%20Web%20Design%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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;summary=Template%20World%20has%20some%20really%20nice%20Web%202.0ish%20templates%20available%20for%20free.%20It%27s%20worth%20checking%20out.%0A%0AFree%20XHTML%2FCSS%20Templates%20For%20Web%20Design%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=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;url=http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/" 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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design&amp;selection=Template%20World%20has%20some%20really%20nice%20Web%202.0ish%20templates%20available%20for%20free.%20It%27s%20worth%20checking%20out.%0A%0AFree%20XHTML%2FCSS%20Templates%20For%20Web%20Design%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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design" 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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design" 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/css-templates/free-xhtmlcss-templates-for-web-design/" 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/css-templates/free-xhtmlcss-templates-for-web-design/&amp;title=Free+XHTML%2FCSS+Templates+For+Web+Design" 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/css-templates/free-xhtmlcss-templates-for-web-design/+&quot;Free+XHTML%2FCSS+Templates+For+Web+Design&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%2Fcss-templates%2Ffree-xhtmlcss-templates-for-web-design%2F&amp;t=Free+XHTML%2FCSS+Templates+For+Web+Design" 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=Free+XHTML%2FCSS+Templates+For+Web+Design+-++%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=%22Free%20XHTML%2FCSS%20Templates%20For%20Web%20Design%22&amp;body=Link: http://wpgarage.com/css-templates/free-xhtmlcss-templates-for-web-design/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Template%20World%20has%20some%20really%20nice%20Web%202.0ish%20templates%20available%20for%20free.%20It%27s%20worth%20checking%20out.%0A%0AFree%20XHTML%2FCSS%20Templates%20For%20Web%20Design%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/css-templates/free-xhtmlcss-templates-for-web-design/" 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/css-templates/free-xhtmlcss-templates-for-web-design/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 [...]]]></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>
