<?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>Web Designers&#039; Edge - The Self-Taught Designer&#039;s Best Friend &#187; Free Tools</title>
	<atom:link href="http://webdesignersedge.com/category/free-tools/feed" rel="self" type="application/rss+xml" />
	<link>http://webdesignersedge.com</link>
	<description>The Place For Self-Taught Designers</description>
	<lastBuildDate>Sun, 23 May 2010 16:51:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Hover Effect Without Javascript or Jquery</title>
		<link>http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html</link>
		<comments>http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 03:12:28 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Adobe Fireworks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=200</guid>
		<description><![CDATA[We all love javascript and jquery, right? It&#8217;s the stuff that helps you do cool stuff on your site, like rotators, animated elements, and a ton more. But the problem is, if you use Javascript and Jquery to do every effect on your site, it can be a little code-intensive. It also won&#8217;t work when [...]]]></description>
			<content:encoded><![CDATA[<p>We all love javascript and jquery, right? It&#8217;s the stuff that helps you do cool stuff on your site, like rotators, animated elements, and a ton more. But the problem is, if you use Javascript and Jquery to do every effect on your site, it can be a little code-intensive. It also won&#8217;t work when someone has javascript disabled.</p>
<p><a href="http://webdesignersedge.com/wp-content/uploads/2009/12/ScreenShot211.png"><img class="alignleft size-full wp-image-201" title="ScreenShot211" src="http://webdesignersedge.com/wp-content/uploads/2009/12/ScreenShot211.png" alt="" width="391" height="281" /></a>Enter the simple elements that use nothing but HTML and CSS, and maybe some images.</p>
<p>What I want to demonstrate is a simple way to get a hover effect on an image, without using jquery or javascript. The way this works, basically, is the image will be the background of a div element that will reside inside a link. Actually the div does not have to be inside a link, but it does if you want the image to link to some other url. The background image actually contains two copies of your image, with the second copy having whatever hover effect you want, such as slightly darker or whatever. In the CSS code, you have the background image positioned at the top of the div, and in a hover of the same div, you have the background image positioned at the bottom. When you hover, voila! And unlike the javascript version of hover, you don&#8217;t have to wait a split second for the hover to work, since the image is already loaded!</p>
<p><img class="alignright size-full wp-image-203" title="ScreenShot212" src="http://webdesignersedge.com/wp-content/uploads/2009/12/ScreenShot212.png" alt="" />To the rightyou can see a screenshot of the effect I&#8217;m going to show you. On the same screenshot you can also see a green button. I used the same effect on that. The button is part of a jquery slider, so it&#8217;s not like I never use jquery :)</p>
<p>I&#8217;m going to be using the coffee cup that&#8217;s available <a href="http://www.webdesignerdepot.com/2009/07/50-free-and-exclusive-twitter-icons/" target="_blank">here</a>. Actually I recommend this set of twitter icons, they are probably the coolest you can find.</p>
<p>First, I open Fireworks and find the coffee cup image I downloaded. Then I resize it to the size I need for the footer of my website. For me that&#8217;s 96px wide and 71px high. Then, I copy the image and paste it over itself. Next, move the second copy so that the top of the second copy just touches the bottom of the first copy. Then &#8220;Fit Canvas&#8221; so that the two images are now visible. Next, I select the bottom image and modify the color by reducing the saturation to nothing. This makes it greyscale. See the screenshot to the right.</p>
<p>Then save the image and optimize it. I save it as a transparent .PNG file, but you can also save it as a .jpg if you don&#8217;t need transparency. I personally use PNG Gauntlet to optimize the .PNG.</p>
<p>Then I load it into the image folder on my website, and put the following code in the CSS file:</p>
<p><code><br />
.twitter {<br />
  float: right;<br />
  width: 96px;<br />
  height: 71px;<br />
  background: url('images/social/twitter-cup.png') no-repeat bottom;<br />
  margin: 17px 44px 4px 0;<br />
}<br />
.twitter:hover {<br />
  background: url('images/social/twitter-cup.png') no-repeat top;<br />
}</p>
<p></code></p>
<p>My div has a class &#8216;twitter&#8217;. Then simply put the div in your website where you want it to appear. Just call it the same class and it will work like a charm. You can also wrap it with a link if you want it to be hyperlinked.</p>
<p>And that&#8217;s it! The simplest (I believe) way to have cool hover effects on your website, that works instantly since the image is already preloaded when the page loads.</p>
<p>See the footer of my web design site for a sample:  <a href="http://6webdesign.com" target="_blank">See The Coffee Cup Here</a></p>
<p>If you implement this little trick, please let me know by commenting here or tweeting it!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Using the Disqus Comment System with Wordpress</title>
		<link>http://webdesignersedge.com/free-tools/using-the-disqus-comment-system-with-wordpress.html</link>
		<comments>http://webdesignersedge.com/free-tools/using-the-disqus-comment-system-with-wordpress.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 05:05:32 +0000</pubDate>
		<dc:creator>Michael Soriano</dc:creator>
				<category><![CDATA[Disqus]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[pros and cons]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=184</guid>
		<description><![CDATA[As I&#8217;m building a new blog for a client, I came across designing the comments area for the single post page. I thought to myself, it would really impress my client if I was able to integrate Facebook Connect and Twitter right into the response form. Then I remembered seeing Disqus  in many blogs [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m building a new blog for a client, I came across designing the comments area for the single post page. I thought to myself, it would really impress my client if I was able to integrate Facebook Connect and Twitter right into the response form. Then I remembered seeing <a href="http://disqus.com/">Disqus </a> in many blogs that have this in their forms so I decided to give it a try. At first, I was expecting a widget of some sort that you will be able to call into your theme files. Maybe some check boxes whether to include Facebook comments etc &#8211; but what I got was a whole different puppy. Let me explain: </p>
<h3>A Centralized, Mashed up Commenting System</h3>
<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/12/disqus-0.jpg" alt="disqus-0" width="576" height="323" class="alignnone size-full wp-image-185" /></p>
<p>First of, before you&#8217;re able to download the plugin &#8211; you are asked to create a Disqus account. I figured, an account may merely be for marketing purposes, but right after creating one &#8211; you are presented with a API key. Now something tells me that this system is something more &#8211; I was right. Disqus is able to provide the system to any type of blogging platform you are using: Typepad, Movable Type, Blogger and Wordpress. Note that there is also &#8220;Generic&#8221; which I assume is for static websites. Now remember I said what I was expecting to see check boxes for Facebook and Twitter? Well that&#8217;s what I got. Plus options that span from the ability to display Social Media Reactions (replies or social media services like Twitter, FriendFeed, Digg and YouTube), Trackbacks (we all know what this is), Seesmic video comments, OpenID and of course &#8211; Facebook connect and Twitter. Now as if that&#8217;s not &#8220;mashed-up&#8221; enough &#8211; there is also an option to add a Disqus Feedflare to your Feedburner. A FeedFlare places a simple footer at the bottom of each content item, helping you to distribute, inform and create a community around your content. </p>
<h3>Where Are the Actual Comments Stored?</h3>
<p>Now the funny thing is once you&#8217;ve installed Disqus in your Wordpress blog &#8211; it takes over your commenting system. Try clicking &#8220;Comments&#8221; from your Wordpress admin panel and it will take you to the Disqus settings screen (which is just an iframe of your Disqus account). From this interface gives you total control of your blog comments such as importing existing ones to Disqus, moderation, as well as adding widgets and changing the look of the form. Did I say &#8220;<strong>Import existing ones</strong>&#8220;? Yes I totally did. As it turns out, once you have Disqus installed &#8211; it uses it&#8217;s own database to store your comments in their system. A system that still ties with your website and post id. Now don&#8217;t fret! Your wp_comments table (where your comments are stored in Wordpress) remains untouched. Furthermore, it is updated at the same time new comments are entered, with the Disqus system. </p>
<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/12/disqus-1.jpg" alt="disqus-1" width="576" height="500" class="alignnone size-full wp-image-186" /></p>
<h3>There has to be a Kicker</h3>
<p>Okay, with Disqus you can mash up world renowned applications with your comments. You can add widgets, change the appearance, move things around in your comments section with a few simple clicks. You can manage your comments in both places: your website control panel and your online Disqus account (since the comments are literally stored in two databases). All of this are wonderful features but there has to be a kicker. A &#8220;kicker&#8221; as in a feature so significant, that blog owners will actually deviate from their regular commenting system and use Disqus instead. </p>
<p><strong>Well let&#8217;s think about it for a moment:</strong></p>
<p>For starters, now you can moderate comments centrally in one place. Really, I&#8217;m sure many of us run more than one blog. For the lucky ones that are bombarded with hundreds of comments daily, this is definitely a kicker. Another one is the ability to add moderators. That&#8217;s correct, with Disqus &#8211; you now can add comment moderators (similar to a forum) without giving them access to your physical blog. This is a big plus for sites with a large enough community. What about the ability to &#8220;<strong>Reblog</strong>&#8220;. Reblogging is exactly like &#8220;Retweeting&#8221; &#8211; but it&#8217;s a post instead of a tweet. How about having a &#8220;Lifestream&#8221; type of your blog posts in the Disqus website. Once you join Disqus &#8211; you automatically get a community page (http://yourwebsitename.disqus.com) that displays quick feeds of your latest posts &#8211; that link directly to your website. </p>
<h3>Win-Win, Lose-Lose or Win-Lose?</h3>
<p>I&#8217;m sure there are other &#8220;kickers&#8221; for the Disqus system that I haven&#8217;t discovered yet. Consider that I&#8217;ve only been using it for a mere five hours! But there could also be downfalls. For instance, I now don&#8217;t have any code control of my comments section. Once Disqus is installed &#8211; the comments.php in your Wordpress theme is completely overridden. Another point to ponder: since your data is now in two places &#8211; isn&#8217;t it kind of scary? By this I mean, back ups, redundancy, duplicate data, &#8220;<em>what if disqus.com is down &#8211; what will happen?</em>&#8221;  &#8211; am I just paranoid? </p>
<p>Overall, I think the Disqus Comments system is a sophisticated platform that is sure to enhance your blogs discussion abilities. It is simple enough to use, safe, and at the same time &#8211; provides enough bells, whistles and &#8220;kickers&#8221; that blog owners will sure go for. I know when I see &#8220;Comment with Facebook Connect&#8221; &#8211; it makes me want to leave a comment more; therefore, it works for your readers as well. </p>
<p><strong>What about you? What&#8217;s your take on a third party comment system such as Disqus?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/free-tools/using-the-disqus-comment-system-with-wordpress.html/feed</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Indispensible Free Download &#8211; Best FTP Program I&#8217;ve Used</title>
		<link>http://webdesignersedge.com/newsletters/indispensible-free-download-best-ftp-program-ive-used.html</link>
		<comments>http://webdesignersedge.com/newsletters/indispensible-free-download-best-ftp-program-ive-used.html#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:00:17 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 Aug 06]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=29</guid>
		<description><![CDATA[An FTP program is an essential part of your tookit. It allows you to install scripts on a website if needed, upload a ton of pictures or content quickly, even edit files on the server without logging into your text program.
FileZilla is the program I&#8217;ve used for years, and I RELY on it. It&#8217;s pretty [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/08/ScreenShot190.png" alt="ScreenShot190" title="ScreenShot190" width="363" height="100" class="alignleft size-full wp-image-174" />An FTP program is an essential part of your tookit. It allows you to install scripts on a website if needed, upload a ton of pictures or content quickly, even edit files on the server without logging into your text program.</p>
<p>FileZilla is the program I&#8217;ve used for years, and I RELY on it. It&#8217;s pretty comprehensive, works on Mac or Windows, and it&#8217;s FREE!</p>
<p>Learn more or download it here:</p>
<p><a href="http://filezilla-project.org/">http://filezilla-project.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/indispensible-free-download-best-ftp-program-ive-used.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resource Bin &#8211; 2 Awesome Resources I Can&#8217;t Do Without</title>
		<link>http://webdesignersedge.com/newsletters/resource-bin-2-awesome-resources-i-cant-do-without.html</link>
		<comments>http://webdesignersedge.com/newsletters/resource-bin-2-awesome-resources-i-cant-do-without.html#comments</comments>
		<pubDate>Thu, 30 Jul 2009 07:00:44 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 30]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=34</guid>
		<description><![CDATA[When designing a website for a client, it&#8217;s nice to have easy-to-use free tools you can rely on. Here are a couple of my favorites.
1. Favicon Generator &#8211; some clients ask you to create a favicon, you know, that little icon that shows up in the address bar in the browser and in the bookmarks [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/07/ScreenShot193.png" alt="ScreenShot193" title="ScreenShot193" width="464" height="157" class="alignleft size-full wp-image-178" />When designing a website for a client, it&#8217;s nice to have easy-to-use free tools you can rely on. Here are a couple of my favorites.</p>
<p>1. Favicon Generator &#8211; some clients ask you to create a favicon, you know, that little icon that shows up in the address bar in the browser and in the bookmarks list.</p>
<p>What I do is first take a letter or two from their site title or logo, and put it into a .png file that is square. I use colors that match the site, and I try to be careful not to be tempted to use every last bit of space. I usually create a file about 100 x 100 pixels for easy working.</p>
<p>Then, all I do is <a href="http://click.icptrack.com/icp/relay.php?r=36674952&#038;msgid=317830&#038;act=GYGE&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Ftools.dynamicdrive.com%2Ffavicon%2F">go to the favicon generator that DynamicDrive.com has available</a> and I generate a favicon from the .png file I created.</p>
<p>They also remind you of the code you need to include in the <head> tag on the website.</p>
<p>Very handy, very simple, and I always use it.</p>
<p>Remember, the favicon might take a day to start showing up in the browser. Delete the browser cache to speed it up for yourself.</p>
<p>2. Forms WordPress plugin &#8211; Called Contact Form 7, this is the best way to generate contact forms, surveys, or whatever you can think of, to capture visitor information. I know, you can use a contact capture tool like iContact or Aweber. But if you don&#8217;t want to tell your client to spend money every month, Contact Form 7 is very robust and flexible.</p>
<p>First you <a href="http://click.icptrack.com/icp/relay.php?r=36674952&#038;msgid=317830&#038;act=GYGE&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Fwordpress.org%2Fextend%2Fplugins%2Fcontact-form-7%2F">download the plugin here</a>, and install it on the website. Then, you use the link on the WordPress settings sidebar to create a form.</p>
<p>You use the same fields you created in the form to define the information you want to receive in the email, and every time someone fills out the form, an email is generated to the address you specify, so you can collect all the info.</p>
<p>Again, a simple solution, and once you get used to it, you use it a lot for your clients, and you love it.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/resource-bin-2-awesome-resources-i-cant-do-without.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Lessons For Free, And You Don&#8217;t Have To Search Google</title>
		<link>http://webdesignersedge.com/newsletters/design-lessons-for-free-and-you-dont-have-to-search-google.html</link>
		<comments>http://webdesignersedge.com/newsletters/design-lessons-for-free-and-you-dont-have-to-search-google.html#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:00:06 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 23]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=40</guid>
		<description><![CDATA[One of the best websites I know of to get great lessons on web design, especially if you didn&#8217;t get a masters in design at a big name school (or a design degree at any school at all :) is Smashing Magazine.
Just do a search on their website or just browse the articles for really [...]]]></description>
			<content:encoded><![CDATA[<p>One of the best websites I know of to get great lessons on web design, especially if you didn&#8217;t get a masters in design at a big name school (or a design degree at any school at all :) is Smashing Magazine.</p>
<p>Just do a search on their website or just browse the articles for really good insight and tips on making your design a lot better.</p>
<p>Here are a couple of my favorite articles:</p>
<p>&#8216;Clever PNG Optimization Techniques&#8217;<br />
<a href="http://www.smashingmagazine.com/2009/07/15/clever-png-optimization-techniques/">http://www.smashingmagazine.com/2009/07/15/clever-png-optimization-techniques/</a></p>
<p>&#8216;60 Brilliant Typefaces For Corporate Design&#8217;<br />
<a href="http://www.smashingmagazine.com/2008/03/20/60-brilliant-typefaces-for-corporate-design/">http://www.smashingmagazine.com/2008/03/20/60-brilliant-typefaces-for-corporate-design/</a></p>
<p>&#8216;35 CSS-Lifesavers For Efficient Web Design&#8217;<br />
<a href="http://www.smashingmagazine.com/2009/06/25/35-css-lifesavers-for-efficient-web-design/">http://www.smashingmagazine.com/2009/06/25/35-css-lifesavers-for-efficient-web-design/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/design-lessons-for-free-and-you-dont-have-to-search-google.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Managing Your Calendar And Tasks For Free &#8211; Google Tools Just Keep Getting Better</title>
		<link>http://webdesignersedge.com/newsletters/managing-your-calendar-and-tasks-for-free-google-tools-just-keep-getting-better.html</link>
		<comments>http://webdesignersedge.com/newsletters/managing-your-calendar-and-tasks-for-free-google-tools-just-keep-getting-better.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 07:00:01 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Business Tips]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 16]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=48</guid>
		<description><![CDATA[Google has tons of cash laying around and they seem to have plenty to throw at developing their online tools into really awesome ones &#8230;
The calendar tool works extremely well, and has some syncing programs that you can use to keep it synced up with Outlook, an exchange server, Mac calendar, lots of different ones.
I [...]]]></description>
			<content:encoded><![CDATA[<p>Google has tons of cash laying around and they seem to have plenty to throw at developing their online tools into really awesome ones &#8230;</p>
<p>The calendar tool works extremely well, and has some syncing programs that you can use to keep it synced up with Outlook, an exchange server, Mac calendar, lots of different ones.</p>
<p>I use both a blackberry and an iphone, for different uses, and I keep everything synced up between them and with my computer, using Google Calendar.</p>
<p>If you haven&#8217;t tried it, this might just be your time!</p>
<p>Learn more about Google calendar here:</p>
<p><a href="http://click.icptrack.com/icp/relay.php?r=36674952&#038;msgid=310536&#038;act=GYGE&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Fwww.google.com%2Fintl%2Fen%2Fgooglecalendar%2Fabout.html">Google Calendar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/managing-your-calendar-and-tasks-for-free-google-tools-just-keep-getting-better.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Free Tools ALERT &#8211; Forms Wordpress Plugin</title>
		<link>http://webdesignersedge.com/newsletters/cool-free-tools-alert-forms-wordpress-plugin.html</link>
		<comments>http://webdesignersedge.com/newsletters/cool-free-tools-alert-forms-wordpress-plugin.html#comments</comments>
		<pubDate>Thu, 02 Jul 2009 07:00:57 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 02]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=54</guid>
		<description><![CDATA[When designing websites or even on your own blog it can be a challenge to create a form. I mean where you have people fill out their name and email, etc. Well there&#8217;s a really cool plugin that I&#8217;ve used on Wordpress websites to generate rather complicated forms on pages on the website.
I&#8217;m a believer [...]]]></description>
			<content:encoded><![CDATA[<p>When designing websites or even on your own blog it can be a challenge to create a form. I mean where you have people fill out their name and email, etc. Well there&#8217;s a really cool plugin that I&#8217;ve used on Wordpress websites to generate rather complicated forms on pages on the website.</p>
<p>I&#8217;m a believer :)</p>
<p>Get the plugin free here:</p>
<p><a href="http://ideasilo.wordpress.com/2007/04/30/contact-form-7/">http://ideasilo.wordpress.com/2007/04/30/contact-form-7/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/cool-free-tools-alert-forms-wordpress-plugin.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Imitate Apple&#8217;s Coverflow With jQuery &#8211; Animated Effect Driven by the Scroll Position</title>
		<link>http://webdesignersedge.com/newsletters/imitate-apples-coverflow-with-jquery-animated-effect-driven-by-the-scroll-position.html</link>
		<comments>http://webdesignersedge.com/newsletters/imitate-apples-coverflow-with-jquery-animated-effect-driven-by-the-scroll-position.html#comments</comments>
		<pubDate>Thu, 02 Jul 2009 07:00:11 +0000</pubDate>
		<dc:creator>mvancreij</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 02]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=50</guid>
		<description><![CDATA[NOTICE: Welcome to the first guest author post on Web Designers&#8217; Edge! Maurice is a plugin developer and jQuery expert. I&#8217;m really happy to have this to share with you.
If you haven&#8217;t seen the really cool coverflow effect on Apple&#8217;s website, or actually even on an iPhone in the iPod or other apps that use [...]]]></description>
			<content:encoded><![CDATA[<p>NOTICE: Welcome to the first guest author post on Web Designers&#8217; Edge! Maurice is a plugin developer and jQuery expert. I&#8217;m really happy to have this to share with you.</p>
<p>If you haven&#8217;t seen the really cool coverflow effect on Apple&#8217;s website, or actually even on an iPhone in the iPod or other apps that use it, you&#8217;re missing it!</p>
<p>Why display things in static ways when you can do it with loads of style?</p>
<p>Maurice shares with us the effect and the explanation of how it works, as well as the code. Enjoy!</p>
<p><a href="http://click.icptrack.com/icp/relay.php?r=36674952&amp;msgid=302399&amp;act=GYGE&amp;c=477675&amp;admin=0&amp;destination=http%3A%2F%2Fwww.classbehaviours.com%2Fdefault.aspx%3Fid%3Dan-animated-effect-driven-by-the-scroll-position%26mod%3Dmeta%23title">Get The Full Tutorial Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/imitate-apples-coverflow-with-jquery-animated-effect-driven-by-the-scroll-position.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Illustrator Tutorials To Make You An Expert &#8211; Massive List Of Freebies</title>
		<link>http://webdesignersedge.com/newsletters/illustrator-tutorials-to-make-you-an-expert-massive-list-of-freebies.html</link>
		<comments>http://webdesignersedge.com/newsletters/illustrator-tutorials-to-make-you-an-expert-massive-list-of-freebies.html#comments</comments>
		<pubDate>Wed, 24 Jun 2009 14:00:33 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 June 24]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=73</guid>
		<description><![CDATA[Vector graphics are harder than other graphics unless you know what you are doing. Using Illustrator can either be freeing &#8230; or frustrating, depending.
Check out this huge list of tutorials that can help you with every imaginable aspect of using Illustrator. Just dedicate yourself an hour or two a week, and in a year you [...]]]></description>
			<content:encoded><![CDATA[<p>Vector graphics are harder than other graphics unless you know what you are doing. Using Illustrator can either be freeing &#8230; or frustrating, depending.</p>
<p>Check out this huge list of tutorials that can help you with every imaginable aspect of using Illustrator. Just dedicate yourself an hour or two a week, and in a year you will have mastered many different of the tools available.</p>
<p>Enjoy it!</p>
<p><a href="http://click.icptrack.com/icp/relay.php?r=-1&#038;msgid=0&#038;act=11111&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Fwww.instantshift.com%2F2009%2F03%2F19%2F125-ultimate-round-up-of-illustrator-tutorials%2F">Collection of Illustrator Tutorials</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/illustrator-tutorials-to-make-you-an-expert-massive-list-of-freebies.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get The Best Reseller Hosting AND MotherTheme! &#8211; Only This Week &#8230; Don&#8217;t Miss It!</title>
		<link>http://webdesignersedge.com/newsletters/get-the-best-reseller-hosting-and-mothertheme-only-this-week-dont-miss-it.html</link>
		<comments>http://webdesignersedge.com/newsletters/get-the-best-reseller-hosting-and-mothertheme-only-this-week-dont-miss-it.html#comments</comments>
		<pubDate>Wed, 17 Jun 2009 14:00:28 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Tools]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 June 17]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=75</guid>
		<description><![CDATA[Every web designer needs a reliable hosting company where the servers are clean of spammers (so you don&#8217;t get taken down with them).
This hosting company is the BEST there is. Hands down &#8230;
And for a limited time, when you sign up with a reseller account, I&#8217;ll give you a FREE copy of the MotherTheme developer [...]]]></description>
			<content:encoded><![CDATA[<p>Every web designer needs a reliable hosting company where the servers are clean of spammers (so you don&#8217;t get taken down with them).</p>
<p>This hosting company is the BEST there is. Hands down &#8230;</p>
<p>And for a limited time, when you sign up with a reseller account, I&#8217;ll give you a FREE copy of the MotherTheme developer license. That means you get an awesome WordPress theme you can use on all your client websites (like I do) and a great place to host them all.</p>
<p>CONDITION: Just <a href="http://click.icptrack.com/icp/relay.php?r=36674952&#038;msgid=291957&#038;act=GYGE&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Fwww.jdoqocy.com%2Fclick-3505025-10409150">go get your hosting package now</a> and once you purchase, just send a copy of your receipt to 6webdesign (at) gmail (dot) com. I&#8217;ll reply and send you a link where you can download MotherTheme FREE! (currently sells for $59).</p>
<p>Don&#8217;t miss out, this special ends before the weekend begins &#8230; so <a href="http://click.icptrack.com/icp/relay.php?r=36674952&#038;msgid=291957&#038;act=GYGE&#038;c=477675&#038;admin=0&#038;destination=http%3A%2F%2Fwww.jdoqocy.com%2Fclick-3505025-10409150">do it now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/get-the-best-reseller-hosting-and-mothertheme-only-this-week-dont-miss-it.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
