<?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; Coding</title>
	<atom:link href="http://webdesignersedge.com/category/coding/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>Using CSS To Use A Custom ShareThis Icon Or Image</title>
		<link>http://webdesignersedge.com/coding/using-css-to-use-a-custom-sharethis-icon-or-image.html</link>
		<comments>http://webdesignersedge.com/coding/using-css-to-use-a-custom-sharethis-icon-or-image.html#comments</comments>
		<pubDate>Sun, 23 May 2010 16:29:34 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WebDesignersEdge]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=251</guid>
		<description><![CDATA[It&#8217;s pretty annoying how little instruction there is to change the ShareThis icon to something else. So I took a stab at finding my own solution without needing to modify javascript code or API calls. Frankly, the freshest information about it was 2 years old. And very paltry and not very helpful.
The issue is that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot054.png"><img src="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot054.png" alt="ShareThis icon custom" title="Share This icon" width="240" height="183" class="alignleft size-full wp-image-252" /></a>It&#8217;s pretty annoying how little instruction there is to change the ShareThis icon to something else. So I took a stab at finding my own solution without needing to modify javascript code or API calls. Frankly, the freshest information about it was 2 years old. And very paltry and not very helpful.</p>
<p>The issue is that when you get the share widget from the ShareThis website, there are only a couple options for the styling of the button. And the javascript code that you get does not have an image URL in it that you could easily modify to your own image. I even tried copying the javascript that loads from the ShareThis site and loading it from my own site, with modifications. But that didn&#8217;t work.<img src="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot056.png" alt="ShareThis Image Options" title="ShareThis Image Options" width="336" height="175" class="alignright size-full wp-image-257" /> What I wanted was a large icon that when moused over would show the sharethis dropdown of all the social sharing options. However, there is no large icon option. Just a few different small icon options that were not going to match my client website icons. So, time to make it my way.</p>
<p>The image was going to appear in a group of icons for navigation. The sharethis icon needed to fit right into the middle of them. Since I was already using <a href="http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html">some hover css</a> that I&#8217;m fond of using for icons like this, avoiding having to use jquery and for that, maybe making the site somewhat more accessible, I went ahead with that. I do this with an <a href="http://webdesignersedge.com/twitter/the-hover-effect-without-javascript-or-jquery.html">object tag to wrap a div inside a link tag, so it will validate</a>.</p>
<p>Then all I did was create another div inside that one, to insert the sharethis javascript code. The HTML for the list menu item down to the javascript looked like this:</p>
<p><code>&lt;li&gt;<br />
&lt;a href="http:&#47;&#47;example.com&#47;about"&gt;<br />
&lt;object&gt;<br />
&lt;div class="menu-share"&gt;<br />
---share this javascript goes here---<br />
&lt;/div&gt;<br />
&lt;/object&gt;<br />
&lt;/a&gt;<br />
&lt;/li&gt;<br />
</code></p>
<p>So there are the .menu-share div to show the button, as well as help me hide the image that sharethis will load, without hiding the functionality. All that&#8217;s left is the .css:</p>
<p><code>.menu-share {<br />
  background: url('images/share-icon.png') no-repeat 0 top;<br />
  height: 56px;<br />
  width: 57px;<br />
  float: left;<br />
  margin: 0 20px;<br />
}<br />
.menu-share:hover {<br />
  background-position: 0 -57px;<br />
  cursor: pointer;<br />
}<br />
.menu-share img {<br />
  display: none;<br />
}<br />
</code></p>
<p>The last little bit just hides any image inside the div. It does not hide the background image, only images that load inside the div. However, all the javascript is still fully functional, loading the social media dropdown as it should.</p>
<p><img src="http://webdesignersedge.com/wp-content/uploads/2010/05/ScreenShot057.png" alt="ShareThis Dropdown" title="ShareThis Dropdown" width="312" height="242" class="aligncenter size-full wp-image-279" /></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/coding/using-css-to-use-a-custom-sharethis-icon-or-image.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<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>Taming The IE6 Beast</title>
		<link>http://webdesignersedge.com/newsletters/taming-the-ie6-beast.html</link>
		<comments>http://webdesignersedge.com/newsletters/taming-the-ie6-beast.html#comments</comments>
		<pubDate>Thu, 20 Aug 2009 05:19:36 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Newsletters]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/?p=147</guid>
		<description><![CDATA[&#8220;Internet Explorer 6.0&#8243;. The freelance web designer, and especially one who is self-taught, will shudder when hearing the name of this infamous browser.
BUT, as much as we all hate it, and struggle with it when we are new, if you can learn to design websites that work EVEN in IE6, then you will have become [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/Internet-explorer-6.jpg" alt="Internet Explorer 6.0" style="float:left" />&#8220;Internet Explorer 6.0&#8243;. The freelance web designer, and especially one who is self-taught, will shudder when hearing the name of this infamous browser.</p>
<p>BUT, as much as we all hate it, and struggle with it when we are new, if you can learn to design websites that work EVEN in IE6, then you will have become a much better designer.</p>
<p>Good web designers don&#8217;t care what their clients are going to use to look at their website, it&#8217;s just going to work.</p>
<p>Here are a few things I&#8217;ve learned in my struggle to tame the IE6 beast &#8230; Keep in mind, these are things I&#8217;ve learned through trial and error. And no rocket science here, just some simple rules to follow.</p>
<p>First, I always use pixels in sizing, never &#8216;em&#8217;s. Maybe this is something you never did, but I used to use tons of &#8216;em&#8217;s in my themes for spacing elements, with margins and padding. But somehow, &#8216;em&#8217;s aren&#8217;t correctly treated in older versions of IE. So I started using nothing but pixels for spacing, and got better results.</p>
<p>Second, I rely more on padding than on margins. Older IE versions tend to treat margins differently than other major browsers. So if there was an element that I could use either padding or margins, with the same effect, I would use the padding rather than the margin.</p>
<p>Third, wherever possible, I turn my .png files into .jpg files. I like to use transparency as much as anyone. But all too often I would be showing a cool new theme or website to a friend, on their computer, and the .png files would get a grey or pink background that totally messed up the look I was going for. So, if at all possible, I use .jpg files. Also, I don&#8217;t use transparent .css borders or font. IE6 doesn&#8217;t know what transparent means with anything at all!</p>
<p>Fourth, I don&#8217;t get crazy with creating graphical submit buttons or fields. IE has standard ones that they overlay onto the ones you create. So better to keep your submit buttons simple, either the default or some simple .css.</p>
<p>And my last tip is to test, test, test. Especially when trying a new technique and spending hours making it look perfect &#8230; in your favorite browser. There&#8217;s nothing more frustrating than getting it perfect and then finding out that in other major browsers (IE6 is not that major anymore but you get the point) it completely falls apart. Better to stick with simpler techniques that you can get to look good in all browsers.</p>
<p>Get an awesome web host!<a onmouseover="window.status='http://www.hostgator.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.dpbolvw.net/click-3505025-10408505" target="_blank"><br />
Unlimited Domain Hosting Only $9.95 a Month</a><br />
<img src="http://www.tqlkg.com/image-3505025-10408505" border="0" alt="" width="1" height="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/taming-the-ie6-beast.html/feed</wfw:commentRss>
		<slash:comments>15</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>But I Just Want To Make This One Last Change &#8230; Don&#8217;t Always Try To Reach Perfection</title>
		<link>http://webdesignersedge.com/newsletters/but-i-just-want-to-make-this-one-last-change-dont-always-try-to-reach-perfection.html</link>
		<comments>http://webdesignersedge.com/newsletters/but-i-just-want-to-make-this-one-last-change-dont-always-try-to-reach-perfection.html#comments</comments>
		<pubDate>Thu, 30 Jul 2009 07:00:10 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 30]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=32</guid>
		<description><![CDATA[When you are doing a project, whether for your self or a client, there is a disease that might creep in of wanting to make it perfect.
In fact, you have a set of objectives with the website.
Maybe it has to make sales.
Maybe people have to feel comfortable on the website.
Maybe you want them to download [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/07/ScreenShot194.png" alt="ScreenShot194" title="ScreenShot194" width="343" height="196" class="alignleft size-full wp-image-180" />When you are doing a project, whether for your self or a client, there is a disease that might creep in of wanting to make it perfect.</p>
<p>In fact, you have a set of objectives with the website.</p>
<p>Maybe it has to make sales.</p>
<p>Maybe people have to feel comfortable on the website.</p>
<p>Maybe you want them to download something.</p>
<p>Whatever the goal, the idea is not to keep tweaking every little detail until it&#8217;s perfect. Hours &#8230; and Hours &#8230; and Hours &#8230; pass by.</p>
<p>And all you&#8217;ve got is a website that still does what you want, and it might look just a litle cooler.</p>
<p>Stop the tweaking and instead, focus on the objective.</p>
<p>Early on in my own design career I used to spend countless hours making little changes to the look of the websites I was working on. It would have been time much better spent on doing something else, more constructive.</p>
<p>Of course, if you are working for a client, and the client wants a change made to something, then that&#8217;s a change to make.</p>
<p>But there are much better things to do than do another take on that shadow in your banner.</p>
<p>What better things?</p>
<p>Marketing: increasing traffic to your website, and finding people interested in your services and engaging them</p>
<p>Getting some R&#038;R: refresh your creativity by stepping away and spend an hour or two exercising or walking</p>
<p>Browsing other designers&#8217; work: Get a fresh perspective, bask in the colors they choose and see if anything hits you. </p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/but-i-just-want-to-make-this-one-last-change-dont-always-try-to-reach-perfection.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;That&#8217;s My Specialty&#8221; &#8211; Don&#8217;t Try To Be All Things To All People</title>
		<link>http://webdesignersedge.com/newsletters/thats-my-specialty-dont-try-to-be-all-things-to-all-people.html</link>
		<comments>http://webdesignersedge.com/newsletters/thats-my-specialty-dont-try-to-be-all-things-to-all-people.html#comments</comments>
		<pubDate>Thu, 23 Jul 2009 07:00:58 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Business Tips]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 23]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=38</guid>
		<description><![CDATA[You might be tempted, when you are beginning your design business, to think you need to do everything. I mean doing more stuff is going to bring you more money, right?
Well yes &#8230; and no.
In the very early stages when you are trying to get things off the ground, you will be inclined to take [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://webdesignersedge.com/wp-content/uploads/2009/07/ScreenShot195.png" alt="ScreenShot195" title="ScreenShot195" width="306" height="231" class="alignleft size-full wp-image-182" />You might be tempted, when you are beginning your design business, to think you need to do everything. I mean doing more stuff is going to bring you more money, right?</p>
<p>Well yes &#8230; and no.</p>
<p>In the very early stages when you are trying to get things off the ground, you will be inclined to take jobs that are less to your liking and expertise. And as long as you can handle it well for the client, that&#8217;s ok.</p>
<p>But as time goes on, you need to define yourself so people know what you do really well.</p>
<p>A couple weeks ago, I said that specializing in one particular CMS of your choice was a good way to get really good at coding and theme building. Well why don&#8217;t you brand your web design business in the same way.</p>
<p>Wordpress theme specialty? Then be a wordpress web designer. Joomla your sweet spot? Why not be a Joomla web designer.</p>
<p>Then, you will not have the whole world beating down your door, but you are more likely to get jobs from those who are looking for someone who has that specialty.</p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/thats-my-specialty-dont-try-to-be-all-things-to-all-people.html/feed</wfw:commentRss>
		<slash:comments>3</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>Website Tool Might Save You Some Time &#8211; You Could Even Promote It For Extra Income</title>
		<link>http://webdesignersedge.com/newsletters/website-tool-might-save-you-some-time-you-could-even-promote-it-for-extra-income.html</link>
		<comments>http://webdesignersedge.com/newsletters/website-tool-might-save-you-some-time-you-could-even-promote-it-for-extra-income.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 07:00:31 +0000</pubDate>
		<dc:creator>Tim Norton</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[2009 July 16]]></category>

		<guid isPermaLink="false">http://webdesignersedge.com/issues/?p=45</guid>
		<description><![CDATA[In case you don&#8217;t remember what it&#8217;s like to be a total beginner online, putting up a website and monetizing it can be very difficult.
So most people spend months or years searching for tools that can help them speed it up. That is if they can&#8217;t afford your web design fees. After a polite look, [...]]]></description>
			<content:encoded><![CDATA[<p>In case you don&#8217;t remember what it&#8217;s like to be a total beginner online, putting up a website and monetizing it can be very difficult.</p>
<p>So most people spend months or years searching for tools that can help them speed it up. That is if they can&#8217;t afford your web design fees. After a polite look, they will keep looking.</p>
<p>But there are tools that you can promote, that will solve the problems that newbies online face, and that you can make income from. If you have a list of people who have been on the fence about web design, try this tool. It&#8217;s a quick way for beginners to build a website and monetize it. And if you were the one to tell them about it, you make residual income.</p>
<p>Sounds like a good deal!</p>
<p>Learn more here, sign up for an account, and tell your fence sitters :)</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%2Ftw8.us%2FhY">Really Cool Web Design Tool You Can Make Residual Income From!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignersedge.com/newsletters/website-tool-might-save-you-some-time-you-could-even-promote-it-for-extra-income.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>
	</channel>
</rss>
