<?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>karenmcdade.com</title>
	<atom:link href="http://karenmcdade.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://karenmcdade.com</link>
	<description>Personal blog of a freelance designer</description>
	<lastBuildDate>Sat, 18 Feb 2012 21:47:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>OSX Lion&#8217;s Finder thumbnail slider not working?</title>
		<link>http://karenmcdade.com/osx-lions-finder-thumbnail-slider-not-working/</link>
		<comments>http://karenmcdade.com/osx-lions-finder-thumbnail-slider-not-working/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 15:27:39 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[finder]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[status bar]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1205</guid>
		<description><![CDATA[So far I&#8217;m loving Mac&#8217;s lastest operating system, Lion. I especially dig the back and forward page swipes in browsers with the trackpad/mouse. Little things like that. I have, however, noticed one thing that&#8217;s a tad annoying. I use the thumbnail view in Finder a lot. The column view is a favorite of mine as well, however, [...]]]></description>
			<content:encoded><![CDATA[<p>So far I&#8217;m loving Mac&#8217;s lastest operating system, Lion. I especially dig the back and forward page swipes in browsers with the trackpad/mouse. Little things like that. I have, however, noticed one thing that&#8217;s a tad annoying. I use the thumbnail view in Finder a lot. The column view is a favorite of mine as well, however, I noticed when I switch between these two, the slider at the bottom of the Finder window in Thumbnail mode doesn&#8217;t work anymore so I can&#8217;t zoom in on the thumbnails.</p>
<p>Until Apple comes out with a proper fix for this, I&#8217;ve discovered a temporary fix that will do for now. When in Thumbnail view, press CMD+2 (to get the list view) then CMD+1 (to go back to thumbnail view) and you&#8217;ll see your slider will then work fine.</p>
<p>PS: If you can&#8217;t see the slider on the Finder window, activate the status bar by going to View &gt; Show Status Bar, or press CMD+/.</p>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/osx-lions-finder-thumbnail-slider-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for Creating Your First HTML Email</title>
		<link>http://karenmcdade.com/tips-for-creating-your-first-html-email/</link>
		<comments>http://karenmcdade.com/tips-for-creating-your-first-html-email/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 15:44:03 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[newsletter]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1189</guid>
		<description><![CDATA[Creating your first email newsletter or invitation can be daunting, especially after you do some reading and hear about how easily the design can come appart in email clients (especially older clients). However, there are a few rules of thumb that can help you get by. Below is a short list of things to remember when [...]]]></description>
			<content:encoded><![CDATA[<p>Creating your first email newsletter or invitation can be daunting, especially after you do some reading and hear about how easily the design can come appart in email clients (especially older clients). However, there are a few rules of thumb that can help you get by. Below is a short list of things to remember when putting together an HTML email. There are also a lot of recourses online to help you with this &#8211; have a look at <a href="http://mailchimp.com/resources/" target="_blank">MailChimp&#8217;s resource section</a> for some solid information.</p>
<p>Here are w few things to remember:</p>
<ul>
<li>Keep your table structure as simple as possible.</li>
<li>Try to avoid using &#8216;margin&#8217; to create space between images. Rather cut out an image that is the full width and hieght of the cell you want it in, even if it means adding in &#8216;white space&#8217; around the image. Trying to add an image into the centre of a cell then adding padding around it to separate it from the cell edges can cause issues in some email readers.</li>
<li>Your email table should be wrapped in one large table (1 row &amp; 1 column). Set the wrapper width to 99% for webmail.</li>
<li>Create the table structure first, before adding in any text/images.</li>
<li>Background images can be stripped out of some email programs. If you use a background image, include a background colour in the cell attributes as well in case the bg image doesn&#8217;t appear.</li>
<li>If using multiple columns in some rows, remember to use the colspan tag to ensure the rows that use fewer columns don&#8217;t mess up your layout.</li>
<li>Keep all your CSS inline &#8211; in other words, don&#8217;t link your CSS to a separate file. Keep it embedded in the lines of code you want it to affect.</li>
<li>Set any links to target=&#8221;_blank&#8221;. This is for webmail &#8211; no links should be opened in the email itself.</li>
<li>Try avoid &#8220;span&#8221; or &#8220;div&#8221; tags because older email clients don&#8217;t recognise them.</li>
<li>If you want to use a break tag, use the old style &lt;br&gt; not the self-closing XML one: &lt;br /&gt;.</li>
<li>Set the paragraph style for each &lt;p&gt; tag. Older email clients may not recognise global styles for child elements. Do the same for header tags.</li>
<li>Older email clients tend to ignore the &#8220;margin&#8221; tag &#8211; use &#8220;padding&#8221; instead.</li>
<li>Test your email on multiple platforms if possible &#8211; have a look at <a href="https://browserlab.adobe.com/en-us/index.html" target="_blank">Adobe Browser Labs</a>, <a href="http://www.campaignmonitor.com/testing/" target="_blank">Campaign Monitor</a>, or <a href="http://mailchimp.com/features/inbox-inspector/" target="_blank">MailChimp</a>. These websites also have tons of useful information when it comes to designing your first email campaign.</li>
<li>Remember to include an unsubscribe button and a link to view the web version of the email.</li>
<li>Include a text-only version of your email. Bear in mind that text emails can only be about 60 characters wide, so keep it narrow. Also, links need to be typed out instead of embedded in &#8220;href&#8221; tags.</li>
<li>Remember, GMail and some other web-based email clients will disable images by default &#8211; this can only be changed on the recipient&#8217;s side, so try use as few images as possible and get creative with background colours.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/tips-for-creating-your-first-html-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add a Noise Texture in InDesign</title>
		<link>http://karenmcdade.com/how-to-add-a-noise-texture-in-indesign/</link>
		<comments>http://karenmcdade.com/how-to-add-a-noise-texture-in-indesign/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 18:00:40 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1165</guid>
		<description><![CDATA[The latest trends in design call for texture, usually lots of it. While this is pretty straightforward thing to do in Photoshop, InDesign is another story. Adding patterns and texture doesn&#8217;t come built into the native InDesign package and 3rd party plugins are usually required. However, there is a neat way to add some noise to a [...]]]></description>
			<content:encoded><![CDATA[<p>The latest trends in design call for texture, usually lots of it. While this is pretty straightforward thing to do in Photoshop, InDesign is another story. Adding patterns and texture doesn&#8217;t come built into the native InDesign package and 3rd party plugins are usually required. However, there is a neat way to add some noise to a frame in InDesign&#8230; here&#8217;s how to do it&#8230;</p>
<ol>
<li>Create your frame and fill it with the desired colour.<a href="http://karenmcdade.com/wp-content/uploads/2011/11/beforenoise.jpg"><img class="aligncenter size-full wp-image-1167" title="afternoise" src="http://karenmcdade.com/wp-content/uploads/2011/11/beforenoise.jpg" alt="" width="367" height="281" /><br />
</a></li>
<li>While the frame is selected, go to Object &gt; Effects &gt; Inner glow in the top navigation bar.
<p style="text-align: center;"><a href="http://karenmcdade.com/wp-content/uploads/2011/11/noisebox.jpg"><img class="aligncenter size-full wp-image-1168" title="noisebox" src="http://karenmcdade.com/wp-content/uploads/2011/11/noisebox.jpg" alt="" width="529" height="307" /><br />
</a></p>
</li>
<li>In the options section of the dialogue box push the noise slider up to 100% (or as much as it suits you).</li>
<li>Change the source to &#8216;centre&#8217; and the size to 0.</li>
<li>You can change the blending mode to &#8216;normal&#8217; if you like, however this will depend on what colour you select the noise to be, so play with this option a bit and see what works for you.</li>
<li>The effect will be quite strong, so lower the opacity to suit your taste.<a href="http://karenmcdade.com/wp-content/uploads/2011/11/afternoise.jpg"><img class="aligncenter size-full wp-image-1167" title="afternoise" src="http://karenmcdade.com/wp-content/uploads/2011/11/afternoise.jpg" alt="" width="367" height="281" /><br />
</a></li>
</ol>
<div>There you go &#8211; instant noise texture in InDesign.</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/how-to-add-a-noise-texture-in-indesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Day Photography Challenge</title>
		<link>http://karenmcdade.com/30-day-photography-challenge/</link>
		<comments>http://karenmcdade.com/30-day-photography-challenge/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 14:17:46 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1155</guid>
		<description><![CDATA[My lastest internet crush has been Pinterest. If you haven&#8217;t heard of it, click over there and have a look at all that eye-candy. A cautionary note however &#8211; you may end up spending hours and hours of your life there, so be warned! While potting around the site a few nights ago I found [...]]]></description>
			<content:encoded><![CDATA[<p>My lastest internet crush has been <a href="http://pinterest.com/" target="_blank">Pinterest</a>. If you haven&#8217;t heard of it, click over there and have a look at all that eye-candy. A cautionary note however &#8211; you may end up spending hours and hours of your life there, so be warned! While potting around the site a few nights ago I found a pin about a 30 Day Photography Challenge. While I&#8217;m not absolutely sure where the original post came from, I <em>think</em> it was from <a href="http://whitepeachblog.com/2011/05/25/photography_challenge/" target="_blank">this site</a>. Anyway, the premise of the challenge is to take a photo of a predetermined item every day for 30 days. Below is a list of the topics for each day. While I love photography, I&#8217;m not much of a photographer. After two courses I still end up using the Auto setting for best results &#8211; what can I say, Lumix makes great cameras. But this time I endeavor to make an effort to use my camera properly. And that means setting the aperture, shutter speed and all those other things that I&#8217;m going to have to google to figure out. I&#8217;ll start this December. Depending on how they turn out, I may or may not post them somewhere&#8230; <img src='http://karenmcdade.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div id="attachment_1156" class="wp-caption aligncenter" style="width: 410px"><a href="http://karenmcdade.com/wp-content/uploads/2011/11/PhotographyChallenge.jpg"><img class="size-full wp-image-1156" title="PhotographyChallenge" src="http://karenmcdade.com/wp-content/uploads/2011/11/PhotographyChallenge.jpg" alt="" width="400" height="800" /></a><p class="wp-caption-text">Copyright belongs to the original owner of this image</p></div>
<p>&nbsp;</p>
<p><strong>Update</strong>: On <a href="http://www.morguefile.com/" target="_blank">morgueFile</a>, Freelance photographer Jodie Coston offers a free online course in photography. The course is sectioned into 10 lessons and covers most of the basic elements of photography. Each lesson has a separate discussion board and assignments to help you put what you learned into practice. Check out the lessons <a href="http://www.morguefile.com/docs/Classroom" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/30-day-photography-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Metallic Rocky Texture in Photoshop</title>
		<link>http://karenmcdade.com/create-a-metallic-rocky-texture-in-photoshop/</link>
		<comments>http://karenmcdade.com/create-a-metallic-rocky-texture-in-photoshop/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 14:00:12 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Tips & Tutorials]]></category>
		<category><![CDATA[jagged]]></category>
		<category><![CDATA[metal]]></category>
		<category><![CDATA[metallic]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[rock]]></category>
		<category><![CDATA[rocky]]></category>
		<category><![CDATA[sliver]]></category>
		<category><![CDATA[texture]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1043</guid>
		<description><![CDATA[This is just a quick tutorial to show you how to create a metallic, rocky texture in Photoshop. It can be adjusted to create a crumpled foil texture or anything similar &#8211; I&#8217;ve used smart filters in the tutorial below so the degree of rockiness can be adjusted to suit your design. Here we go&#8230; Open a [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick tutorial to show you how to create a metallic, rocky texture in Photoshop. It can be adjusted to create a crumpled foil texture or anything similar &#8211; I&#8217;ve used smart filters in the tutorial below so the degree of rockiness can be adjusted to suit your design.</p>
<p>Here we go&#8230;</p>
<ol>
<li>Open a new document. Mine is 1000px by 1000px at 72 ppi resolution.</li>
<li>Right click on the background layer in the layer panel and convert it to a smart object. This will allow you to adjust all the filters we apply later to suit your taste.<a href="http://karenmcdade.com/wp-content/uploads/2011/09/smartobject.jpg"><img class="aligncenter size-full wp-image-1044" title="smartobject" src="http://karenmcdade.com/wp-content/uploads/2011/09/smartobject.jpg" alt="" width="290" height="294" /><br />
</a></li>
<li>Set your foreground and background colours to the default black and white (press D to set this).</li>
<li>Run the cloud filter (Filter &gt; Render &gt; Clouds). Press ctrl + F for PC or cmd + F for Mac to rerun the filter if you don&#8217;t like the result you initially got.<a href="http://karenmcdade.com/wp-content/uploads/2011/09/clouds.jpg"><img class="aligncenter size-full wp-image-1045" title="clouds" src="http://karenmcdade.com/wp-content/uploads/2011/09/clouds.jpg" alt="" width="332" height="332" /><br />
</a></li>
<li>Now go to Filter &gt; Sketch &gt; Bas Relief. I cranked the detail up to 15, set the smoothness to 2 and set the light to come in from the top left. If your document is a different size then adjust the smoothness until you get nice sharp edges.<a href="http://karenmcdade.com/wp-content/uploads/2011/09/bassetting.jpg"><img class="aligncenter size-full wp-image-1048" title="bassetting" src="http://karenmcdade.com/wp-content/uploads/2011/09/bassetting.jpg" alt="" width="264" height="151" /></a></li>
<li>This is the result.<br />
<a href="http://karenmcdade.com/wp-content/uploads/2011/09/basresult.jpg"><img class="aligncenter size-full wp-image-1050" title="basresult" src="http://karenmcdade.com/wp-content/uploads/2011/09/basresult.jpg" alt="" width="332" height="332" /></a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/create-a-metallic-rocky-texture-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I&#8217;m on Dribbble</title>
		<link>http://karenmcdade.com/im-on-dribbble/</link>
		<comments>http://karenmcdade.com/im-on-dribbble/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:21:20 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1030</guid>
		<description><![CDATA[If you know of Dribbble, the screenshot show-and-tell Twitter-like hangout for designers, then you probably know invites can be tough to come by. Dribbble has grown substantially over the past couple of years and yet the calibre of design on the site has remained high. So when I finally got an invite to join (courtesy of Ricardo [...]]]></description>
			<content:encoded><![CDATA[<p>If you know of <a href="http://dribbble.com/karenmcdade" target="_blank">Dribbble</a>, the screenshot show-and-tell Twitter-like hangout for designers, then you probably know invites can be tough to come by. Dribbble has grown substantially over the past couple of years and yet the calibre of design on the site has remained high. So when I finally got an invite to join (courtesy of <a href="http://www.caneidia.com/" target="_blank">Ricardo Salazar</a>) it took me a few days to decide what to upload as my first Dribbble. Ricardo had mentioned that your first upload is your most important as it gets posted to the Debut&#8217;s section of the site which is be the best place for you to get noticed and gain followers. I finally decided on uploading some GUI work I did for my gaming company, <a href="http://icarus7.net/" target="_blank">Icarus 7</a>. Here it is:</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/07/Mastermind.jpg"><img class="aligncenter size-full wp-image-1032" title="Mastermind" src="http://karenmcdade.com/wp-content/uploads/2011/07/Mastermind.jpg" alt="" width="400" height="300" /></a></p>
<p>You can <a href="http://dribbble.com/karenmcdade" target="_blank">view my Dribbble page here</a>.</p>
<h1></h1>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/im-on-dribbble/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress ER</title>
		<link>http://karenmcdade.com/wordpress-er/</link>
		<comments>http://karenmcdade.com/wordpress-er/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 09:20:15 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=1017</guid>
		<description><![CDATA[I just updated WordPress to 3.2, and as it turns out, it doesn&#8217;t like this theme (Arras) too much. In fact, I got a fatal error when viewing my site, and I couldn&#8217;t view my dashboard at all. The problem seemed to stem from one of the theme&#8217;s plugins (the tag cloud). Considering I couldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I just updated WordPress to 3.2, and as it turns out, it doesn&#8217;t like this theme (Arras) too much. In fact, I got a fatal error when viewing my site, and I couldn&#8217;t view my dashboard at all.</p>
<p>The problem seemed to stem from one of the theme&#8217;s plugins (the tag cloud). Considering I couldn&#8217;t even log into my dashboard to turn off this widget, I found myself wading through the murky world of PHP code to try figure out how to turn the silly thing off that way. It was hopeless. I&#8217;m a designer, not a developer. XHTML and CSS is where the limits of my web dev experience begin and end. If I was going to fix my site, I was going to have to roll back to the previous version of WordPress. Luckily, I am diligent with my backups so I wouldn&#8217;t lose any information.</p>
<p>Just at that moment, Twitter came to my rescue. I had posted the error on Twitter earlier to see if anyone could help, and help they did. Oh yes, <a href="https://twitter.com/#!/me_bipolar" target="_blank">@me_bipolar</a> sent me a link that fixed everything. He was my hero, my knight in blue feathers. And he has definitely earned his spot on my list of <a title="The coolest designers on Twitter" href="http://karenmcdade.com/the-coolest-designers-on-twitter/">The Coolest Designers on Twitter</a>. The fix lay in replacing line 355 of /library/widgets.php from this line of code:</p>
<p>function Arras_Widget_Tag_Cloud() { $this-&gt;WP_Widget_Tag_Cloud(); }</p>
<p>to this line of code:</p>
<p>function Arras_Widget_Tag_Cloud() { parent::__construct(); }</p>
<p>Click over to the lads at <a href="http://www.wp-insert.smartlogix.co.in/wordpress-3-2-update-have-bought-down-this-sites-theme/" target="_blank">WP-Insert</a> for the full article and fix.</p>
<p>Big thanks also go out to <a href="https://twitter.com/#!/dwyndal" target="_blank">@Dwyndal</a>, <a href="https://twitter.com/#!/rickss" target="_blank">@rickss</a> and <a href="https://twitter.com/#!/conzpiracy" target="_blank">@Conzpiracy</a> for their advice and support. You guys rock.</p>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/wordpress-er/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The coolest designers on Twitter</title>
		<link>http://karenmcdade.com/the-coolest-designers-on-twitter/</link>
		<comments>http://karenmcdade.com/the-coolest-designers-on-twitter/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 00:27:26 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=927</guid>
		<description><![CDATA[I&#8217;ve had the pleasure of getting to know some stellar designers and developers through Twitter over the past few years. These guys (and gals) so darn cool I just had to share their awesomeness with you all. A Twitter list would not do. No, these peeps need there own page dedicated entirely to what makes [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had the pleasure of getting to know some stellar designers and developers through Twitter over the past few years. These guys (and gals) so darn cool I just had to share their awesomeness with you all. A Twitter list would not do. No, these peeps need there own page dedicated entirely to what makes Twitter the new playground for up-to-the-minute design banter.</p>
<p>The list is by no means exhaustive and I&#8217;ll be adding to it every so often. If you know of any awesome designers (or you are one), feel free to drop a comment below. Share the love.</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/alj000.png"><img class="alignleft size-full wp-image-949" title="alj000" src="http://karenmcdade.com/wp-content/uploads/2011/06/alj000.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/alj000" target="_blank">@alj000<br />
</a>A designer wanna be who wants to quit day job to become a full time blogger and web designer I also like to watch TV and movies a lot.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/AndrewKelsall.png"><img class="alignleft size-full wp-image-969" title="AndrewKelsall" src="http://karenmcdade.com/wp-content/uploads/2011/06/AndrewKelsall.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/AndrewKelsall" target="_blank">@AndrewKelsall</a><br />
Graphic &amp; Web Designer, Creative Blogger &amp; WordPress user, Tech-head, Christian &amp; Mac addict&#8230; Visit my Blog for more info; I&#8217;d love to have you onboard <img src='http://karenmcdade.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/brand_nu.png"><img class="alignleft size-full wp-image-973" title="brand_nu" src="http://karenmcdade.com/wp-content/uploads/2011/06/brand_nu.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/brand_nu" target="_blank">@brand_nu</a><br />
Creative thinking expressed in colour and shapes. Or something like that.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/brycechapman13.png"><img class="alignleft size-full wp-image-941" title="brycechapman13" src="http://karenmcdade.com/wp-content/uploads/2011/06/brycechapman13.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/brycechapman13" target="_blank">@brycechapman13</a><br />
I&#8217;m a photographer, digital artist, graphic designer, and…ummm gonna be doing stuff soon So follow me <img src='http://karenmcdade.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/chriswthurman.png"><img class="alignleft size-full wp-image-966" title="chriswthurman" src="http://karenmcdade.com/wp-content/uploads/2011/06/chriswthurman.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/chriswthurman" target="_blank">@chriswthurman</a><br />
Web Designer and Blogger but that just scratches the surface. See my design blog at <a href="http://www.visualswirl.com/" rel="nofollow" target="_blank">http://www.visualswirl.com</a> and let me know how I can help you.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/Conzpiracy.png"><img class="alignleft size-full wp-image-934" title="Conzpiracy" src="http://karenmcdade.com/wp-content/uploads/2011/06/Conzpiracy.png" alt="" width="50" height="50" /></a> <a href="https://twitter.com/#!/Conzpiracy" target="_blank">@Conzpiracy</a><br />
Digital Artist, Flyer Designer &amp; Photoshop specialist. The Beauty of Fear. Cyberpunk.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/DavidCousens.png"><img class="alignleft size-full wp-image-929" title="DavidCousens" src="http://karenmcdade.com/wp-content/uploads/2011/06/DavidCousens.png" alt="" width="50" height="50" /></a> <a href="https://twitter.com/#!/DavidCousens" target="_blank">@DavidCousens</a><br />
One half of Cool Surface illustration. We draw stuff for money!</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/designthatrocks.png"><img class="alignleft size-full wp-image-954" title="designthatrocks" src="http://karenmcdade.com/wp-content/uploads/2011/06/designthatrocks.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/designthatrocks" target="_blank">@designthatrocks</a><br />
Creative Director for Design That Rocks, offering design for web &amp; print, project management, consulting &amp; branded line of limited edition DTR products.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/Fantasiox.png"><img class="alignleft size-full wp-image-947" title="Fantasiox" src="http://karenmcdade.com/wp-content/uploads/2011/06/Fantasiox.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/Fantasiox" target="_blank">@Fantasiox</a><br />
My name is Oliver, I´m an Illustrator, active listener and a storyteller for the eye. I love coffee &amp; social media, my credo is: to hell with status quo.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/gaksdesigns.png"><img class="alignleft size-full wp-image-960" title="gaksdesigns" src="http://karenmcdade.com/wp-content/uploads/2011/06/gaksdesigns.png" alt="" width="50" height="50" /></a></p>
<p><a href="https://twitter.com/#!/gaksdesigns" target="_blank">@gaksdesigns<br />
</a>Freelance Graphic Designer/Illustrator. Gamer, into fine arts,student, Laid back dude, Cool Guy</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/galaxyturbo.png"><img class="alignleft size-full wp-image-1039" title="galaxyturbo" src="http://karenmcdade.com/wp-content/uploads/2011/06/galaxyturbo.png" alt="" width="50" height="50" /></a> <a href="https://twitter.com/#!/galaxyturbo" target="_blank">@galaxyturbo</a><br />
Interactive Media Designer x Final Year IxD Student at UNN, Newcastle x Artist at The Luminarium and Intrinsic Nature.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/JThompsondesign.png"><img class="alignleft size-full wp-image-939" title="JThompsondesign" src="http://karenmcdade.com/wp-content/uploads/2011/06/JThompsondesign.png" alt="" width="50" height="50" /></a> <a href="https://twitter.com/#!/JThompsondesign" target="_blank">@JThompsondesign</a><br />
Fan of Dieter Rams &amp; the Bauhaus, product design lover of function over aesthetics. Owner <a href="http://twitter.com/designjuices" rel="nofollow">@designjuices</a></p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/kre8ivPS.png"><img class="alignleft size-full wp-image-971" title="kre8ivPS" src="http://karenmcdade.com/wp-content/uploads/2011/06/kre8ivPS.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/kre8ivPS" target="_blank">@kre8ivPS</a><br />
Digiart, photography, graphic design, CSS + JS, typography, testing software-apps-tools, Botanic Garden in Glencoe. Pavarotti! Photoshop obsessed.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/me_bipolar.jpg"><img class="alignleft size-full wp-image-1026" title="me_bipolar" src="http://karenmcdade.com/wp-content/uploads/2011/06/me_bipolar.jpg" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/me_bipolar" target="_blank">@me_bipolar</a><br />
Web, Motion, Interactive Designer/Artist living in Mpls MN.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/Minervity.png"><img class="alignleft size-full wp-image-964" title="Minervity" src="http://karenmcdade.com/wp-content/uploads/2011/06/Minervity.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/Minervity" target="_blank">@Minervity</a><br />
Computer geek, Social Media Fanatic, Loves everything larger than a byte, Web Designer, Developer and founder of <a href="http://twitter.com/bitrebels" rel="nofollow">@bitrebels</a>.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/nymphont.png"><img class="alignleft size-full wp-image-945" title="nymphont" src="http://karenmcdade.com/wp-content/uploads/2011/06/nymphont.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/nymphont" target="_blank">@nymphont</a><br />
dweeb. font geek. freelance designer. single mommie. coolest person i know. humble too. silly. lover not a fighter.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/rickss.jpg"><img class="alignleft size-full wp-image-1027" title="rickss" src="http://karenmcdade.com/wp-content/uploads/2011/06/rickss.jpg" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/rickss" target="_blank">@rickss</a><br />
I am a freelance UX / UI designer. I love to make things simple.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/RobCubbon.png"><img class="alignleft size-full wp-image-962" title="RobCubbon" src="http://karenmcdade.com/wp-content/uploads/2011/06/RobCubbon.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/RobCubbon" target="_blank">@RobCubbon</a><br />
Design and Marketing &#8211; loves websites, email marketing, blogs, re-branding, WordPress, social media&#8230; Based in London, UK.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/robertoblake.png"><img class="alignleft size-full wp-image-937" title="robertoblake" src="http://karenmcdade.com/wp-content/uploads/2011/06/robertoblake.png" alt="" width="50" height="50" /></a> <a href="https://twitter.com/#!/robertoblake" target="_blank">@robertoblake<br />
</a>I&#8217;m a Graphic Designer and Digital Artist from New York. I love Design, Social Media, SEO and bunnies.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/steihl.png"><img class="alignleft size-full wp-image-943" title="steihl" src="http://karenmcdade.com/wp-content/uploads/2011/06/steihl.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/steihl" target="_blank">@steihl</a><br />
Graphic/Web Designer. Passionate about all things creative, movies and sports.</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/Vegagirl5.png"><img class="alignleft size-full wp-image-952" title="Vegagirl5" src="http://karenmcdade.com/wp-content/uploads/2011/06/Vegagirl5.png" alt="" width="50" height="50" /></a><a href="https://twitter.com/#!/Vegagirl5" target="_blank">@Vegagirl5</a><br />
Strictly a Web Design Junkie out to get my graphics on. Talk CODE to me <img src='http://karenmcdade.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/the-coolest-designers-on-twitter/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Just doodling&#8230;</title>
		<link>http://karenmcdade.com/just-doodling/</link>
		<comments>http://karenmcdade.com/just-doodling/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 22:38:47 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=907</guid>
		<description><![CDATA[When I have free time I attempt to something with the Advanced Photoshop free monthly competition images&#8230; Here&#8217;s my ode to Photoshop&#8217;s little used split blending sliders. (I&#8217;m a nerd, can you tell?!?). &#160;]]></description>
			<content:encoded><![CDATA[<p>When I have free time I attempt to something with the Advanced Photoshop free monthly competition images&#8230; Here&#8217;s my ode to Photoshop&#8217;s little used split blending sliders. (I&#8217;m a nerd, can you tell?!?).</p>
<p>&nbsp;</p>
<p><a href="http://karenmcdade.com/wp-content/uploads/2011/06/TheShepherd.jpg"><img class="aligncenter size-large wp-image-908" title="TheShepherd" src="http://karenmcdade.com/wp-content/uploads/2011/06/TheShepherd-1024x679.jpg" alt="" width="620" height="411" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/just-doodling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of texture libraries</title>
		<link>http://karenmcdade.com/list-of-texture-libraries/</link>
		<comments>http://karenmcdade.com/list-of-texture-libraries/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 11:03:23 +0000</pubDate>
		<dc:creator>Karen</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[texture]]></category>

		<guid isPermaLink="false">http://karenmcdade.com/?p=873</guid>
		<description><![CDATA[A well used texture can really take your art up a notch and I&#8217;m always on the lookout for that perfect texture that will work just right for my designs. Sometimes it takes a good while to find this ideal texture. So to make things simple I&#8217;ll be consolidating a list of comprehensive texture libraries [...]]]></description>
			<content:encoded><![CDATA[<p>A well used texture can really take your art up a notch and I&#8217;m always on the lookout for that perfect texture that will work just right for my designs. Sometimes it takes a good while to find this ideal texture. So to make things simple I&#8217;ll be consolidating a list of comprehensive texture libraries and adding to this list below as I discover them. Most of the libraries listed below are free to use and some may have a small subscription fee for premium content. I will also be adding my own textures to the list below, so check back often&#8230;</p>
<table>
<tbody>
<tr>
<th width="20%">Website</th>
<th>Description</th>
</tr>
<tr>
<td><a href="http://www.cgtextures.com/" target="_blank">CG Textures</a></td>
<td>Probably the most comprehensive texture website I know of. They have various membership plans that range in price as well as a free option which restricts your download limit on the site.</td>
</tr>
<tr>
<td><a href="http://www.texturemate.com/" target="_blank">Texture Mate</a></td>
<td>Another highly comprehensive list of high-resolution textures. All the textures are free for commercial, and non-commercial use. There is no limit to how much you can download.</td>
</tr>
<tr>
<td><a href="http://www.lughertexture.com/" target="_blank">LuGher Texture</a></td>
<td>Not as comprehensive as the two libraries above, but has a lot of fresh textures. Free to use as well.</td>
</tr>
<tr>
<td>
<div><a href="http://www.startextures.com/" target="_blank">Star Textures</a></div>
</td>
<td>
<div>Free for commercial and non-comercial use, however bandwidth is limited so you have a daily limit on how much you can download.</div>
</td>
</tr>
<tr>
<td><a href="http://mayang.com/textures/" target="_blank">Mayang&#8217;s Free Textures</a></td>
<td>
<div>Good sized textures free to download. Limited to 20 downloads per day.</div>
</td>
</tr>
<tr>
<td><a href="http://www.lovetextures.com/" target="_blank">Love Textures</a></td>
<td>
<div>455 free high resolution textures.</div>
</td>
</tr>
<tr>
<td><a href="http://lostandtaken.com/gallery" target="_blank">Lost and Taken</a></td>
<td>
<div>Lost and Taken is all about the textures, which are completely free for personal and commercial use.</div>
</td>
</tr>
<tr>
<td><a href="http://subtlepatterns.com/" target="_blank">Subtle Patterns</a></td>
<td>
<div>Stunning collection of high quality design patterns/textures that are free to use. A project by <a href="http://www.atlemo.com/">Atle Mo</a>.</div>
</td>
</tr>
</tbody>
</table>
<div>&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://karenmcdade.com/list-of-texture-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

