<?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>Cameron Baney Design Blog &#187; Freebies</title>
	<atom:link href="http://blog.cameronbaney.com/category/freebies/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cameronbaney.com</link>
	<description>Web design information, tutorials, articles and inspiration</description>
	<lastBuildDate>Wed, 14 Jul 2010 22:58:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Create a CSS3 Search Form</title>
		<link>http://blog.cameronbaney.com/tutorials/create-a-css3-search-form/</link>
		<comments>http://blog.cameronbaney.com/tutorials/create-a-css3-search-form/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 22:47:39 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[search form]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=295</guid>
		<description><![CDATA[A site&#8217;s search form is a vital tool for visitors to quickly find exactly what they want. Since it is such a useful tool, it should not only stand out on your site in location, but also by appearance. Thanks to CSS3, creating a slick search form is easier than ever. Download SourceDemo The Markup [...]]]></description>
			<content:encoded><![CDATA[<p>A site&#8217;s search form is a vital tool for visitors to quickly find exactly what they want. Since it is such a useful tool, it should not only stand out on your site in location, but also by appearance. Thanks to CSS3, creating a slick search form is easier than ever.</p>
<p><span id="more-295"></span><br />
<span class="tutbtn r"><a class="tutsource" href="/tutorials/css3-search-form/css3-search-form.zip">Download Source</a></span><span class="tutbtn"><a class="tutdemo" href="/tutorials/css3-search-form/">Demo</a></span></p>
<h2>The Markup</h2>
<p>The markup is simple. All that is needed is a form, a text box and a submit button.</p>
<pre name="code" class="html">
<form id="search-form">
<input type="text" />
<input type="submit" value="Search" />
</form>
</pre>
<h2>CSS3 Magic</h2>
<p>The rest is done with CSS. This includes everything from gradients to rounded corners. CSS3 takes out a lot of the need for images, allowing elements to be more scalable as well as being easier to create. There are regular background colors included in the CSS for browsers that don&#8217;t support CSS3. They may not look as spiffy as the CSS3 version, but it will appear somewhat close.</p>
<pre name="code" class="css">
#search-form {
	background: #e1e1e1; /* Fallback color for non-css3 browsers */
	width: 365px;

	/* Gradients */
	background: -webkit-gradient( linear,left top, left bottom, color-stop(0, rgb(243,243,243)), color-stop(1, rgb(225,225,225)));
	background: -moz-linear-gradient( center top, rgb(243,243,243) 0%, rgb(225,225,225) 100%);

	/* Rounded Corners */
	border-radius: 17px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;

	/* Shadows */
	box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,.3), 0 0 2px rgba(0,0,0,.3);
}

/*** TEXT BOX ***/
input[type="text"]{
	background: #fafafa; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(250,250,250)), color-stop(1, rgb(230,230,230)));
	background: -moz-linear-gradient( center top, rgb(250,250,250) 0%, rgb(230,230,230) 100%);

	border: 0;
	border-bottom: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,.8);
	font-size: 16px;
	margin: 4px;
	padding: 5px;
	width: 250px;

	/* Rounded Corners */
	border-radius: 17px;
	-webkit-border-radius: 17px;
	-moz-border-radius: 17px;

	/* Shadows */
	box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
	-webkit-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
	-moz-box-shadow: -1px -1px 2px rgba(0,0,0,.3), 0 0 1px rgba(0,0,0,.2);
}

/*** USER IS FOCUSED ON TEXT BOX ***/
input[type="text"]:focus{
	outline: none;
	background: #fff; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(255,255,255)), color-stop(1, rgb(235,235,235)));
	background: -moz-linear-gradient( center top, rgb(255,255,255) 0%, rgb(235,235,235) 100%);
}

/*** SEARCH BUTTON ***/
input[type="submit"]{
	background: #44921f;/* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(79,188,32)), color-stop(0.15, rgb(73,157,34)), color-stop(0.88, rgb(62,135,28)), color-stop(1, rgb(49,114,21)));
	background: -moz-linear-gradient( center top, rgb(79,188,32) 0%, rgb(73,157,34) 15%, rgb(62,135,28) 88%, rgb(49,114,21) 100%);

	border: 0;
	color: #eee;
	cursor: pointer;
	float: right;
	font: 16px Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: 30px;
	margin: 4px 4px 0;
	text-shadow: 0 -1px 0 rgba(0,0,0,.3);
	width: 84px;
	outline: none;

	/* Rounded Corners */
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;

	/* Shadows */
	box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
	-moz-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.2);
	-webkit-box-shadow: -1px -1px 1px rgba(255,255,255,.5), 1px 1px 0 rgba(0,0,0,.4);
}
/*** SEARCH BUTTON HOVER ***/
input[type="submit"]:hover {
	background: #4ea923; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left top, left bottom, color-stop(0, rgb(89,222,27)), color-stop(0.15, rgb(83,179,38)), color-stop(0.8, rgb(66,143,27)), color-stop(1, rgb(54,120,22)));
	background: -moz-linear-gradient( center top, rgb(89,222,27) 0%, rgb(83,179,38) 15%, rgb(66,143,27) 80%, rgb(54,120,22) 100%);
}
input[type="submit"]:active {
	background: #4ea923; /* Fallback color for non-css3 browsers */

	/* Gradients */
	background: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(89,222,27)), color-stop(0.15, rgb(83,179,38)), color-stop(0.8, rgb(66,143,27)), color-stop(1, rgb(54,120,22)));
	background: -moz-linear-gradient( center bottom, rgb(89,222,27) 0%, rgb(83,179,38) 15%, rgb(66,143,27) 80%, rgb(54,120,22) 100%);
}
</pre>
<h2>Compatibility</h2>
<p>CSS3 works in most new browsers, with the exception of Internet Explorer (any version). This has been tested cross-browser and cross-platform. If you have any issues, please comment below and I will try to patch them.</p>
<p>In addition, this tutorial is just to style the search form. You can slap these styles on a search form such as the WordPress search form for functionality.</p>
<p><span class="tutbtn r"><a class="tutsource" href="/tutorials/css3-search-form/css3-search-form.zip">Download Source</a></span><span class="tutbtn"><a class="tutdemo" href="/tutorials/css3-search-form/">Demo</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/tutorials/create-a-css3-search-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Minifier Plugin</title>
		<link>http://blog.cameronbaney.com/freebies/wordpress-theme-minifier-plugin/</link>
		<comments>http://blog.cameronbaney.com/freebies/wordpress-theme-minifier-plugin/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 23:44:56 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=283</guid>
		<description><![CDATA[The latest and great WordPress plugin has been released thanks to Squidesma, and it is incredibly useful and very easy to use.  All you have to do is install it, and hit one button. Afterward, your selected theme has been optimized and minified. Minified? What exactly does minified mean? The plugin goes through your entire [...]]]></description>
			<content:encoded><![CDATA[<p>The latest and great WordPress plugin has been released thanks to <a href="http://squidesma.com/blog/wordpress-theme-minifier/">Squidesma</a>, and it is incredibly useful and very easy to use.  All you have to do is install it, and hit one button. Afterward, your selected theme has been optimized and minified.</p>
<h2><span id="more-283"></span>Minified?</h2>
<p>What exactly does minified mean? The plugin goes through your entire theme and takes out unnecessary code and space, as well as optimizes it. Extra spacing between elements in your markup and CSS is great for development because it separates everything into sections, but you don&#8217;t need these extra spaces for production. Visitors on your website can&#8217;t tell if there is extra spacing in the markup or not when just viewing the website, so why have it there? That extra spacing bloats your file size which in turn causes longer load times and increased bandwidth usage.</p>
<h2>Customizable and Reversible</h2>
<p>Many may be worried that this plugin is going to break your theme. After all those hours and long nights of coding your perfect theme, you don&#8217;t want it to all be destroyed by a plugin. Worry not, Theme Minifier understands and has your back. There are various levels that you can minify your theme. The standard level will rip out all the white space in your markup. You can also choose which method to use when the plugin optimizes your JavaScript: JSMin or Packer. JSMin is the default because it is the most popular and most used, and Packer is <a href="http://blogs.msdn.com/b/ericlippert/archive/2003/11/01/53329.aspx">often considered evil</a>, however it results in smaller file size. You can then take it a step further and optimize your site&#8217;s CSS. For now, using this CSS optimization will break any CSS3 styles that you may be using such as any <strong>-moz</strong> or <strong>-webkit</strong> tags because it is not valid CSS.</p>
<p>After you choose your settings and the plugin runs, it will create a copy of your theme, and it will not automatically make your site use the new theme. If something in the theme would break and the plugin forced your site to use the new theme, all of your visitors would immediately see the broken theme. You will also have a backup which you can revert to at anytime in case there is a problem.</p>
<p>Having two copies of your theme, one original theme and one minified, has another advantage other than speed and optimization. You can deliver the minified theme to your visitors, and still have the markup laid out the way you like it. The original theme then becomes the development theme, which you can make all of your changes to with ease. When you are done making the changes, you can simply run the plugin again to minify the new changes.</p>
<h2>Image Optimization</h2>
<p>The Theme Minifier will also analyze and convert your images to whatever file type is the most efficient. Just like your theme, it will create a new version of every image it converts so your original images aren&#8217;t gone forever and damaged. Theme Minifier shows you a nice table showing what images it converted and gives you details like how much space you can save by using the new format. If you choose to use the new images, it is up to you to make the necessary changes in the markup.</p>
<h2>Risk Free</h2>
<p>Since the plugin gives you options and backs up your theme, why not try it out? It will only take a few seconds to install, and just as long to run. Make sure to visit the <a href="http://wordpress.org/extend/plugins/theme-minifier/">plugin&#8217;s page in the WordPress Plugin Directory</a> or visit the <a href="http://squidesma.com/blog/wordpress-theme-minifier/">author&#8217;s blog about the plugin</a>. After your run the plugin, it will even give you a report on how much you saved, and where it was saved.</p>
<h2>How Much Space Did You Save?</h2>
<p>After you install and run the plugin, comment below and let us know how much space you saved!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/freebies/wordpress-theme-minifier-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create an iPhone-like content slider with jQuery</title>
		<link>http://blog.cameronbaney.com/tutorials/create-a-slick-content-slider-using/</link>
		<comments>http://blog.cameronbaney.com/tutorials/create-a-slick-content-slider-using/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 19:56:34 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=229</guid>
		<description><![CDATA[As I&#8217;m sure you are well aware, jQuery is a great and efficient way to enhance your website. Using jQuery, you can display your content in a different way, promote user interaction, and stand out from the rest. Today we will learn how to create an iPhone inspired content slider with jQuery and Nathan Searles&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m sure you are well aware, <a href="http://www.jquery.com">jQuery</a> is a great and efficient way to enhance your website. Using jQuery, you can display your content in a different way, promote user interaction, and stand out from the rest. Today we will learn how to create an iPhone inspired content slider with jQuery and Nathan Searles&#8217; loopedSlider.</p>
<p><span class="tutbtn r"><a class="tutsource" href="http://blog.cameronbaney.com/tutorials/iphone-like-slider/iphone-like-slider.zip">Download Source</a></span><span class="tutbtn"><a class="tutdemo" href="http://blog.cameronbaney.com/tutorials/iphone-like-slider/demo.html">Demo</a></span></p>
<p><span id="more-229"></span></p>
<p>I chose loopedSlider for this slider for many reasons. <a href="http://nathansearles.com/">Nathan Searles</a> is constantly updating the plugin over at <a href="http://github.com/nathansearles/loopedSlider">GitHub</a>. All of the updates are great because they add new features, and fix any bugs that may come up. This also allows all of the users of the plugin to easily get the latest version of the plugin. I also chose loopedSlider because of all of its features.</p>
<h2>About loopedSlider</h2>
<p>Unlike other jQuery sliders out there, loopedSlider can do it all, and at only 10kb, or 6kb minified. LoopedSlider&#8217;s main attraction is having a constant stream of content. When you reach the end, the slider doesn&#8217;t have to slider all the way back to the beginning, it just places the first item after the last, and continues going. LoopedSlider can also use a variety of ways to navigate through the content. You can have pagination links to each slide, or a previous and next arrow. The pagination can also be added dynamically by jQuery, or hardcoded. If you chose, you can also set the scroll speed, auto start, fade speed and auto height.</p>
<h2>The Theme</h2>
<p>I created a custom theme based on loopedSlider inspired by the iPhone. This custom theme is easy to use and implement into any version of loopedSlider whether it be the current version, or any future versions Nathan Searles&#8217; may put out. It is a full theme including themed pagination, previous button, and a next button with all of the active, hover and &#8220;current slide&#8221; effects. The complete package, including the CSS, images, demo and jQuery scripts, are available below.</p>
<h2>Further Resources</h2>
<p>For more information on loopedSlider and the latest versions, <a href="http://github.com/nathansearles/loopedSlider">visit its home at GitHub</a>.</p>
<p><span class="tutbtn r"><a class="tutsource" href="http://blog.cameronbaney.com/tutorials/iphone-like-slider/iphone-like-slider.zip">Download Source</a></span><span class="tutbtn"><a class="tutdemo" href="http://blog.cameronbaney.com/tutorials/iphone-like-slider/demo.html">Demo</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/tutorials/create-a-slick-content-slider-using/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>550+ Free Social Media Icons</title>
		<link>http://blog.cameronbaney.com/freebies/550-free-social-media-icons/</link>
		<comments>http://blog.cameronbaney.com/freebies/550-free-social-media-icons/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 15:24:39 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[social media]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=46</guid>
		<description><![CDATA[Icons are a great way to add a visual element to your website. They not only make the site look good, but do wonders for user experience. These icons may even provide you with some inspiration to make your own icon set. Social Media Bookmark &#8211; 54 icons (2 varieties) Matte White Square &#8211; 108 [...]]]></description>
			<content:encoded><![CDATA[<p>Icons are a great way to add a visual element to your website. They not only make the site look good, but do wonders for user experience. These icons may even provide you with some inspiration to make your own icon set.</p>
<p><span id="more-46"></span></p>
<h3><a href="http://www.nouveller.com/general/free-social-media-bookmark-icon-pack-the-ever-growing-icon-set/">Social Media Bookmark &#8211; 54 icons (2 varieties)</a></h3>
<p><a href="http://www.nouveller.com/general/free-social-media-bookmark-icon-pack-the-ever-growing-icon-set/"><img class="postimage" title="bookmark" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/bookmark.jpg" alt="bookmark" width="598" height="175" /></a></p>
<h3><a href="http://webtreatsetc.deviantart.com/art/Matte-White-Square-Soc-Media-125746973">Matte White Square &#8211; 108 icons</a></h3>
<p><a href="http://webtreatsetc.deviantart.com/art/Matte-White-Square-Soc-Media-125746973"><img class="postimage" title="matte-white-square" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/matte-white-square.jpg" alt="matte-white-square" width="598" height="229" /></a></p>
<h3><a href="http://sixrevisions.com/freebies/icons/free-social-media-icons-old-bottle-crowns-icon-set/">Old Bottle Crowns &#8211; 20 icons</a></h3>
<p><a href="http://sixrevisions.com/freebies/icons/free-social-media-icons-old-bottle-crowns-icon-set/"><img class="postimage" title="old-bottle-crowns" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/old-bottle-crowns.jpg" alt="old-bottle-crowns" width="598" height="313" /></a></p>
<h3><a href="http://webtreats.mysitemyway.com/blue-jelly-social-media-icons/">Blue Jelly &#8211; 108 icons</a></h3>
<p><a href="http://webtreats.mysitemyway.com/blue-jelly-social-media-icons/"><img class="postimage" title="blue-jelly" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/blue-jelly.jpg" alt="blue-jelly" width="598" height="305" /></a></p>
<h3><a href="http://www.tutorial9.net/resources/free-icons-grunge-peeling-stickers-social-media-icons/">Grunge Peeling Stickers &#8211; 20 icons</a></h3>
<p><a href="http://www.tutorial9.net/resources/free-icons-grunge-peeling-stickers-social-media-icons/"><img class="postimage" title="grunge-peeling-stickers" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/grunge-peeling-stickers.jpg" alt="grunge-peeling-stickers" width="598" height="291" /></a></p>
<h3><a href="http://www.littleboxofideas.com/blog/freebies/sociolego-a-free-social-icon-set">SociaLEGO &#8211; 11 icons</a></h3>
<p><a href="http://www.littleboxofideas.com/blog/freebies/sociolego-a-free-social-icon-set"><img class="postimage" title="socialego" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/socialego.jpg" alt="socialego" width="598" height="213" /></a></p>
<h3><a href="http://blog.iampaddy.com/2008/11/12/web-20rigami/">Web 2.0 Origami &#8211; 15 icons</a></h3>
<p><a href="http://blog.iampaddy.com/2008/11/12/web-20rigami/"><img class="postimage" title="web-2-origami" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/web-2-origami.jpg" alt="web-2-origami" width="598" height="311" /></a></p>
<h3><a href="http://www.marcofolio.net/icon/social_post_stamps_free_icon_set.html">Social Post Stamps &#8211; 13 icons</a></h3>
<p><a href="http://www.marcofolio.net/icon/social_post_stamps_free_icon_set.html"><img class="postimage" title="social-post-stamps" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/social-post-stamps.jpg" alt="social-post-stamps" width="598" height="287" /></a></p>
<h3><a href="http://mfayaz.deviantart.com/art/FreeHand-ColorStroked-icon-pac-117362788">ColorStroked freehand &#8211; 22 icons</a></h3>
<p><a href="http://mfayaz.deviantart.com/art/FreeHand-ColorStroked-icon-pac-117362788"><img class="postimage" title="freehand-colorstroked" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/freehand-colorstroked.jpg" alt="freehand-colorstroked" width="598" height="269" /></a></p>
<h3><a href="http://www.chethstudios.net/2009/07/cs-social-icons-elegancy-speaks.html">CS Social Icons &#8211; 15 icons</a></h3>
<p><a href="http://www.chethstudios.net/2009/07/cs-social-icons-elegancy-speaks.html"><img class="postimage" title="cheth-studios" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/cheth-studios.jpg" alt="cheth-studios" width="598" height="381" /></a></p>
<h3><a href="http://thedesignsuperhero.com/2009/03/heart-v2-free-social-iconset-in-heart-shape/">Hearts v2 &#8211; 39 icons</a></h3>
<p><a href="http://thedesignsuperhero.com/2009/03/heart-v2-free-social-iconset-in-heart-shape/"><img class="postimage" title="hearts2" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/hearts2.jpg" alt="hearts2" width="598" height="193" /></a></p>
<h3><a href="http://icontexto.blogspot.com/2009/02/drink-web-20.html">Drinks Web 2.0 &#8211; 27 icons</a></h3>
<p><a href="http://icontexto.blogspot.com/2009/02/drink-web-20.html"><img class="postimage" title="drinks-web-2" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/drinks-web-2.jpg" alt="drinks-web-2" width="598" height="217" /></a></p>
<h3><a href="http://www.productivedreams.com/page-peel-free-social-iconset/">Page Peel &#8211; 16 icons</a></h3>
<p><a href="http://www.productivedreams.com/page-peel-free-social-iconset/"><img class="postimage" title="page-peel" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/page-peel.jpg" alt="page-peel" width="598" height="300" /></a></p>
<h3><a href="http://www.webdesignerdepot.com/2009/04/24-free-exclusive-vector-icons-handy/">Handy Icons &#8211; 24 icons</a></h3>
<p><a href="http://www.webdesignerdepot.com/2009/04/24-free-exclusive-vector-icons-handy/"><img class="postimage" title="handy-icons" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/handy-icons.jpg" alt="handy-icons" width="598" height="350" /></a></p>
<h3><a href="http://blog.studio.aibrean.com/2009/09/free-social-media-icons.html">Aibrean&#8217;s Social Icons &#8211; 10 icons</a></h3>
<p><a href="http://blog.studio.aibrean.com/2009/09/free-social-media-icons.html"><img class="postimage" title="aibreans-social" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/aibreans-social.jpg" alt="aibreans-social" width="598" height="254" /></a></p>
<h3><a href="http://jwloh.deviantart.com/art/Social-me-90694011">Social.me &#8211; 30 icons</a></h3>
<p><a href="http://jwloh.deviantart.com/art/Social-me-90694011"><img class="postimage" title="social-me" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/social-me.jpg" alt="social-me" width="598" height="150" /></a></p>
<h3><a href="http://h0ttiee.deviantart.com/art/Handdrawn-Icon-Set-140661583">Handdrawn Icon Set &#8211; 11 icons</a></h3>
<p><a href="http://h0ttiee.deviantart.com/art/Handdrawn-Icon-Set-140661583"><img class="postimage" title="handdrawn" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/handdrawn.jpg" alt="handdrawn" width="598" height="187" /></a></p>
<h3><a href="http://colaja.deviantart.com/art/Extreme-Grunge-Garments-Icons-137666117">Extreme Grunge &#8211; 9 icons</a></h3>
<p><a href="http://colaja.deviantart.com/art/Extreme-Grunge-Garments-Icons-137666117"><img class="postimage" title="extreme-grunge" src="http://blog.cameronbaney.com/wp-content/uploads/2009/10/extreme-grunge.jpg" alt="extreme-grunge" width="598" height="358" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/freebies/550-free-social-media-icons/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Welcome to my blog</title>
		<link>http://blog.cameronbaney.com/design/welcome-to-my-blog/</link>
		<comments>http://blog.cameronbaney.com/design/welcome-to-my-blog/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 17:26:02 +0000</pubDate>
		<dc:creator>Cameron Baney</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Neat Tweets]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blog.cameronbaney.com/?p=16</guid>
		<description><![CDATA[It has been a long time coming, but my blog is finally finished! For those of you who don&#8217;t know me, I am a web designer. When I&#8217;m not designing a site, I am constantly looking for inspiration and the latest techniques. I hope that I can inspire some of you, as well as help [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a long time coming, but my blog is finally finished! For those of you who don&#8217;t know me, I am a web designer. When I&#8217;m not designing a site, I am constantly looking for inspiration and the latest techniques. I hope that I can inspire some of you, as well as help you with your designs.</p>
<p>I will be posting everything from website showcases for inspiration to tutorials and even my favorite tweets. Aside from my blog, you can also follow me on twitter: <a title="Follow me on Twitter" href="http://www.twitter.com/cameronbaney">@cameronbaney</a> where I tweet about everything web design.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cameronbaney.com/design/welcome-to-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
