<?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"
	>

<channel>
	<title>Web Design Goldmine</title>
	<atom:link href="http://www.webdesigngoldmine.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdesigngoldmine.com</link>
	<description>Golden nuggets of internet wisdom</description>
	<pubDate>Mon, 08 Sep 2008 18:43:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Top 5 Wordpress Premium Theme Websites</title>
		<link>http://www.webdesigngoldmine.com/2008/08/18/top-5-wordpress-premium-themes/</link>
		<comments>http://www.webdesigngoldmine.com/2008/08/18/top-5-wordpress-premium-themes/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 14:01:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web design]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/?p=75</guid>
		<description><![CDATA[There are some outsanding themes available for Wordpress at the moment and combined with the power of Wordpress 2.6 there is no better time to switch to this oustanding open source CMS. Here is our list of favourite websites to download premium themes.

Woo Themes
Cutting edge Wordpress themes at a sensible price. Money well spent if [...]]]></description>
			<content:encoded><![CDATA[<p>There are some outsanding themes available for Wordpress at the moment and combined with the power of Wordpress 2.6 there is no better time to switch to this oustanding open source CMS. Here is our list of favourite websites to download premium themes.<span id="more-75"></span></p>
<p><a href="http://www.woothemes.com/"><img src="/images/woothemes.jpg" alt="Woothemes offers some great premium wordpress themes" /></a></p>
<h2>Woo Themes</h2>
<p>Cutting edge Wordpress themes at a sensible price. Money well spent if you ask me!</p>
<p><a href="http://www.revolutiontheme.com/"><img src="/images/revolution.jpg" alt="Revolution premium wordpress themes" /></a></p>
<h2>Revolution</h2>
<p>The premium themes that spawned many copycats, In my opinion this is style the best.</p>
<p><a href="http://www.themespinner.com/"><img src="/images/theme-spinner.jpg" alt="Theme Spinner  premium wordpress themes" /></a></p>
<h2>Theme Spinner</h2>
<p>Another excellent website that offers lots of different layouts.</p>
<p><a href="http://premiumthemes.net/simplesite"><img src="/images/premium-themes.jpg" alt="Premium Themes" /></a></p>
<h2>Premium Themes</h2>
<p>You have to hunt around on this website to find the better themes but some, like Simple Site are very good.</p>
<p><a href="http://www.wordpressthemesmarket.com/"><img src="/images/wp-themes-market.jpg" alt="Wordpress Themes Market" /></a></p>
<h2>Wordpress Themes Market</h2>
<p>Another great selection of premium Wordpress themes that will leave you salivating.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/08/18/top-5-wordpress-premium-themes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Organization Tips</title>
		<link>http://www.webdesigngoldmine.com/2008/03/14/css-organization-tips/</link>
		<comments>http://www.webdesigngoldmine.com/2008/03/14/css-organization-tips/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 11:36:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/03/14/css-organization-tips/</guid>
		<description><![CDATA[It goes without saying that CSS is now used for layout on a vast majority of websites however for anything but the smallest website keeping your CSS files organized can be tricky. I&#8217;ve complied a list of CSS organization tips that I&#8217;ve found to be invaluable for both saving time and avoiding bugs. These aren&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>It goes without saying that CSS is now used for layout on a vast majority of websites however for anything but the smallest website keeping your CSS files organized can be tricky. I&#8217;ve complied a list of CSS organization tips that I&#8217;ve found to be invaluable for both saving time and avoiding bugs. These aren&#8217;t meant to be the definitive guide by any means but in the 5 years or so that I&#8217;ve been coding CSS they have proved very reliable.<span id="more-74"></span></p>
<h2>Using Helper Styles</h2>
<p>The first thing I always start my CSS file with other than the usual copyright and author information is a series of sanity saving rules. The first rule uses the star selector to reset all the padding and margins for all html elements so that you don&#8217;t have to keep doing this for every individual element. This not only cuts down on the file size of your stylesheet but also means you won&#8217;t be wasting time trying to figure out why your layout has lots of extra space in certain browsers.</p>
<p>I also set borders on all images to 0 so I don&#8217;t have to worry about them and the last two are common css rules that I&#8217;ll always end up using at some point. You could easily expand this section with any of your own commonly used css rules. </p>
<p><code>* {margin:0;padding:0;}<br />
img {border:none;}<br />
.clear {clear:both;}<br />
.hide {display:none;}</p>
<p></code></p>
<h2>Clearly Layout your CSS</h2>
<p>Scanning through a long stylesheet isn&#8217;t much fun so it makes sense to structure your styles into a logical and easy to find way. I use the following comment headings to I can easily find sections when scanned through the stylesheet. It&#8217;s also worth noting that Stop Design&#8217;s tips on setting flags would improve this even more (see further reading for more details on this).</p>
<p><code>/* Layout<br />
  ***********************************************/<br />
#header, #nav, #footer etc<br />
/* Typography<br />
  ***********************************************/<br />
h1, h2, h3, p etc<br />
/* Lists<br />
  ***********************************************/<br />
ul ul li etc<br />
/* Links<br />
  ***********************************************/<br />
a:link, a:hover<br />
/* Forms<br />
  ***********************************************/<br />
form, fieldset, input, textarea etc<br />
/* Tables<br />
  ***********************************************/<br />
table, th, td etc</code></p>
<h2>Use Conditional Comments for IE Browsers</h2>
<p>Lets face it most of our time as css developers is spent debugging IE browsers but having a stylesheet full of browser hacks isn&#8217;t the best way to ensure future compatibility. What if these hacks are broken when IE 8 is released for example?</p>
<p>I&#8217;ve been using conditional comments for some time now as they are simple to implement and are recommended by Microsoft as the best way to code css for each of its browsers. You can therefore ensure that these will be supported long term. Conditional comments should be placed in the head of your HTML document after your main stylesheet and typically I&#8217;ll place them in an include file so I only have to update one file no matter how large the site. See below for a typical example of how to add extra stylesheets for IE 6 and IE7.</p>
<p><code>&lt;!--[if IE 6]&gt;<br />
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; http://www.yourdomain.com/css/ie6.css&quot; /&gt;<br />
&lt;![endif]&#8211;&gt;<br />
&lt;!&#8211;[if IE 7]&gt;<br />
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; http://www.yourdomain.com/css/ie7.css&quot; /&gt;<br />
&lt;![endif]&#8211;&gt;<br />
</code></p>
<p>I promise if you implement these simple techniques you&#8217;ll make the css development cycle quicker, easier and a lot more fun. I&#8217;d be interested to see what other techniques readers use to organise their stylesheets so feel free to add to this list in the comments. In the meantime check out the following further reading for some great tips on flagging and css shorthand techniques.</p>
<h2>Further Reading</h2>
<ul>
<li><a rel="nofollow" href="http://www.stopdesign.com/log/2005/05/03/css-tip-flags.html">Using Flags to Organise CSS</a></li>
<li><a rel="nofollow" href="http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties/">CSS Shorthand Properties</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/03/14/css-organization-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Retro Fonts, Illustrations and Websites</title>
		<link>http://www.webdesigngoldmine.com/2008/03/05/10-retro-fonts-illustrations-and-websites/</link>
		<comments>http://www.webdesigngoldmine.com/2008/03/05/10-retro-fonts-illustrations-and-websites/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 11:55:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/03/05/10-retro-fonts-illustrations-and-websites/</guid>
		<description><![CDATA[I&#8217;ve always been fascinated by how artists create that authentic retro look and although its not quite the fad it once was it still has its place for certain brands. However designing a retro theme for a website is harder than it looks and its very easy to end up with a complete mish-mash of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always been fascinated by how artists create that authentic retro look and although its not quite the fad it once was it still has its place for certain brands. However designing a retro theme for a website is harder than it looks and its very easy to end up with a complete mish-mash of styles if you&#8217;re not careful. Luckily there is plenty of resources on the web to help you get started so I&#8217;ve compiled the following list of fonts, illustrations and website examples to help you get on the road to retro stardom.</p>
<p><span id="more-73"></span></p>
<h2>Retro Fonts</h2>
<p><img src="http://www.webdesigngoldmine.com/images/retro-dafont.gif" alt="DaFont.com" width="460" height="120" /></p>
<p><a href="http://www.dafont.com/theme.php?cat=115">DaFont</a> - Superb website which has many retro fonts available for free download on MAC and PC. I&#8217;ve lost track of how many great fonts I&#8217;ve downloaded from this site.</p>
<p><img src="http://www.webdesigngoldmine.com/images/retro-font-diner.jpg" alt="Font Diner" width="460" height="220" /></p>
<p><a href="http://www.fontdiner.com">Font Diner</a> - Plenty of great fonts for free download here and the site is also a great example of that retro look. </p>
<h2>Retro Clipart and Illustrations</h2>
<p><img src="http://www.webdesigngoldmine.com/images/retro-havana-street.jpg" alt="Havana Street" width="460" height="220" /></p>
<p><a href="http://www.havanastreet.com/stuff.htm">Havana Street</a> -  Features some great retro illustrations and also has a free download so you can check out the quality of the artwork available. </p>
<p><img src="http://www.webdesigngoldmine.com/images/retro-ad-art.jpg" alt="Retro Ad Art" width="460" height="220" /></p>
<p><a href="http://www.retroadart.com/">Retro Art Ad</a> - Large digital collection of authentic advertising artwork from the 30&#8217;s, 40&#8217;s and 50&#8217;s. Includes over 1800 images for purchase. </p>
<p><img src="http://www.webdesigngoldmine.com/images/retro-pixel-decor.jpg" alt="Pixel Decor" width="460" height="220" /></p>
<p><a href="http://www.pixeldecor.com/">Pixel Decor</a> - Ok its more 60&#8217;s and 70&#8217;s but its still a great range of retro icons, desktops and patterns. </p>
<h2>Retro Colours </h2>
<p><img src="http://www.webdesigngoldmine.com/images/retro-colors.jpg" alt="Art Decor Colors" width="460" height="220" /></p>
<p><a href="http://desktoppub.about.com/od/colorpalettes/l/blcpartdeco.htm">Art Deco Colours Combinations</a> -  A guide to Art  Deco era color palettes.</p>
<h2>Retro Websites</h2>
<p><img src="http://www.webdesigngoldmine.com/images/retro-altoids.jpg" alt="Altoids" width="460" height="220" /></p>
<p><a href="http://www.altoids.com/index.do">Altoids</a> -  A wonderfully atmospheric website that really gets the retro look just right.</p>
<p><img src="http://www.webdesigngoldmine.com/images/retro-rejected-robot.jpg" alt="" width="460" height="220" /></p>
<p><a href="http://www.rejectedrobot.com/">Rejected Robot</a> - Highly creative design with a sense of humour. This is one website that stands out from the crowd. The designer also has some great work in the portfolio. </p>
<p><img src="http://www.webdesigngoldmine.com/images/retro-web-designer.jpg" alt="WebDesigner.ro" width="460" height="220" /></p>
<p><a href="http://www.webdesigner.ro/">WebDesigner.ro</a>  - I love the look of this one. Hints of communist propaganda, some great fifties fonts all presented in a clean and effective design. </p>
<p><img src="http://www.webdesigngoldmine.com/images/retro-legendary-aircraft.jpg" alt="Legendary Aircraft" width="460" height="220" /></p>
<p><a href="http://www.legendaryaircraft.hu/">Legendary Aircraft</a> - This one just had to have a retro design didn&#8217;t it? Being a bit of a warbird fan I just couldn&#8217;t resist adding this one. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/03/05/10-retro-fonts-illustrations-and-websites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Two Tier Dynamic Navigation For Wordpress</title>
		<link>http://www.webdesigngoldmine.com/2008/02/19/two-tier-dynamic-navigation-for-wordpress/</link>
		<comments>http://www.webdesigngoldmine.com/2008/02/19/two-tier-dynamic-navigation-for-wordpress/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 13:07:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web design]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/02/19/two-tier-dynamic-navigation-for-wordpress/</guid>
		<description><![CDATA[Creating a basic dynamic navigation is fairly straightforward in Wordpress and with a few tweaks or the installation of a custom plugin you should be good to go. However if your using Wordpress as a CMS for a larger content driven site then your going to find yourself running into problems with scaling the menu. [...]]]></description>
			<content:encoded><![CDATA[<p>Creating a basic dynamic navigation is fairly straightforward in Wordpress and with a few tweaks or the installation of a custom plugin you should be good to go. However if your using Wordpress as a CMS for a larger content driven site then your going to find yourself running into problems with scaling the menu. <span id="more-67"></span></p>
<p>Darren Hoyt has created a very good tutorial on creating a scalable two tiered menu in Wordpress that you can implement on your Wordpress site. It looks great and even supports highlighting of existing pages.</p>
<p>Read the full <strong>&#8220;<a href="http://www.darrenhoyt.com/2008/02/12/creating-two-tiered-conditional-navigation-in-wordpress/">Creating Two-Tiered Conditional Navigation in Wordpress</a>&#8220;</strong> tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/02/19/two-tier-dynamic-navigation-for-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO Friendly version of Pligg v 9.9.0</title>
		<link>http://www.webdesigngoldmine.com/2008/02/12/seo-friendly-version-of-pligg-v-990/</link>
		<comments>http://www.webdesigngoldmine.com/2008/02/12/seo-friendly-version-of-pligg-v-990/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 12:18:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[social media]]></category>

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/02/12/seo-friendly-version-of-pligg-v-990/</guid>
		<description><![CDATA[It takes something really special to drag me away from Wordpress development these days but Pligg, the open source content management system for social media/web 2.0 websites is my new passion. It&#8217;s got incredible functionality out of the box, is perfect for social media sites and has an active community developing mods.
The latest version (currently [...]]]></description>
			<content:encoded><![CDATA[<p>It takes something really special to drag me away from Wordpress development these days but Pligg, the open source content management system for social media/web 2.0 websites is my new passion. It&#8217;s got incredible functionality out of the box, is perfect for social media sites and has an active community developing mods.<span id="more-65"></span></p>
<p>The latest version (currently v 9.9.0) is great but has been giving a lot of Pligg users trouble modifying it so that it is SEO friendly as a lot of the existing mods seem to be broken in this version. SocialCMSBuzz.com has luckily come to the rescue with an install of v9.9.0 that comes with all the SEO mods working, an additional 5 templates and a working image upload facility. </p>
<p>The those wanting more details the SEO modifications include;</p>
<ul>
<li>Pligg SEO Friendly Optimal Page Titles Hack</li>
<li>Pligg Google SEO Friendly URL Rewrite Hack</li>
<li>Removed the word /category/ from Pligg&#8217;s category URL&#8217;s</li>
</ul>
<p>Visit <a href="http://socialcmsbuzz.com/pligg-seo-edition-v990-released-10022008/">socialcmsbuzz.com</a> for all the details and download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/02/12/seo-friendly-version-of-pligg-v-990/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Improving Wordpress Security In Five Easy Steps</title>
		<link>http://www.webdesigngoldmine.com/2008/02/11/improving-wordpress-security-in-five-easy-steps/</link>
		<comments>http://www.webdesigngoldmine.com/2008/02/11/improving-wordpress-security-in-five-easy-steps/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 17:09:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web design]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/02/11/improving-wordpress-security-in-five-easy-steps/</guid>
		<description><![CDATA[
Whilst Wordpress is a great publishing tool it does have it&#8217;s challenges and one of my greatest concerns is always security. The Wordpress team of developers do a good job of releasing regular fixes but as always hackers inevitably find loopholes and exploits in each new version. Left in its default state Wordpress can prove [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.webdesigngoldmine.com/wp-content/uploads/2008/02/matrix.jpg' alt='matrix code' /></p>
<p>Whilst Wordpress is a great publishing tool it does have it&#8217;s challenges and one of my greatest concerns is always security. The Wordpress team of developers do a good job of releasing regular fixes but as always hackers inevitably find loopholes and exploits in each new version. Left in its default state Wordpress can prove particularly vulnerable so here is a list of simply steps you can make to ensure your Wordpress blog or website is hacker proof.<span id="more-63"></span></p>
<h2>Step 1: Delete the Wordpress version information that appears in the header template.</h2>
<p>This is the first step you should take as it tells hackers who view the source code of your Wordpress site what version your using. If they know the specific version then they may be able to exploit certain loopholes. Simply delete the string that looks like this (see below) in the particular theme folder you have installed.</p>
<p><code> &lt;meta name=&quot;generator&quot; content=&quot;WordPress &lt;?php bloginfo('version'); ?&gt;&quot; /&gt; <br/> &lt;!&#8211; leave this for stats please &#8211;&gt; </code></p>
<h2>Step 2: Ensure your plugins folder isn&#8217;t viewable.</h2>
<p>Now this can be achieved in two ways you can simply upload an index file (i.e. index.html) in the plugins folder or make sure that directory browsing is turned off. If your using a <a href="http://www.networksolutions.com/web-hosting/index.jsp">web host</a> that supports cPanel then this is straightforward as you can use the Index Manager to turn off indexing for the public_html folder where your web files are uploaded. If a hacker can see the plugins your using then they will be able to exploit potential loopholes in them.</p>
<h2>Step 3: Restrict access to your wp-admin folder.</h2>
<p>If a hacker knows your using Wordpress then they will be able to guess the login url for the admin area and this will expose your Wordpress login page to a lot of punishment. So its best to restrict access to this folder via IP address. Now if you have a static IP address then great otherwise this maybe tricky as your ISP may change this frequently and you&#8217;ll have to manually change your IP each time. To restrict access you can use the .htaccess file with the following code uploaded to the wp-admin folder.<br />
<code>order deny,allow<br />
allow from 127.0.0.1 # Change this to your particular IP address<br />
deny from all<br />
</code></p>
<h2>Step 4: Stop wp-admin and wp-includes from being indexed by search engines.</h2>
<p>This may seem hard to believe but its happened to me in the past so you&#8217;ll want to ensure you have your trusty robots.txt file set-up so that these folders aren&#8217;t crawled by search engine spiders or those pretending to be search engines. The code you&#8217;ll need looks like this (see below) and in should be uploaded to the root directory.<br />
<code>User-agent: *<br />
  Disallow: /wp-admin/<br />
  Disallow: /wp-includes/<br />
</code></p>
<h2>Step 5: Keep Wordpress up to date.</h2>
<p>This may seem like a no brainer but its easy to lose track of what versions of Wordpress you have installed and on what sites. If you have a web host that supports cPanel then your in luck as upgrading is usually a one click process. If you don&#8217;t then you&#8217;ll have to upgrade manually. This doesn&#8217;t take too long and Wordpress has detailed upgrade instructions however if you have several websites to upgrade then it can be a pain.</p>
<h2>Further Recommendations for Wordpress Security</h2>
<p><strong><a rel="nofollow" href="http://blogsecurity.net/wordpress/article-210607/">Hardening Wordpress with htaccess</a></strong></p>
<p>An excellent article that shows you how to beef up security using the .htaccess file.</p>
<p><strong><a rel="nofollow" href="http://wordpress.org/development/">Wordpress Development Blog</a></strong></p>
<p>Visit the Wordpress blog frequently as they will announce any security loopholes and fixes.</p>
<p><strong><a rel="nofollow" href="http://blogsecurity.net/wordpress/tools/wp-scanner/">Wordpress Scanner</a></strong></p>
<p>Great security tool that lets you scan your Wordpress website for security flaws. Simply download the plugin, upload and activate it and then visit the scanner page. Don&#8217;t forget however to deactivate the plugin afterwards as it will leave you open to others scanning your site for the same flaws.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/02/11/improving-wordpress-security-in-five-easy-steps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Freelancing Resources and Tools</title>
		<link>http://www.webdesigngoldmine.com/2008/02/08/freelancing-resources-and-tools/</link>
		<comments>http://www.webdesigngoldmine.com/2008/02/08/freelancing-resources-and-tools/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 23:13:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[freelancing]]></category>

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/02/08/20-freelancing-resources-and-tools/</guid>
		<description><![CDATA[It seems that freelancing is one hot topic at the moment and everyone seems to be putting their lists of top freelancing websites and tools online. Not wanting to be left out I have put together the following list, but rather than link to specific articles I have compiled a list of websites that are [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that freelancing is one hot topic at the moment and everyone seems to be putting their lists of top freelancing websites and tools online. Not wanting to be left out I have put together the following list, but rather than link to specific articles I have compiled a list of websites that are worth coming back to time and again. These websites should form a bulk of your reading when it comes to starting or developing a career as a freelance web designer or developer.<span id="more-62"></span></p>
<h2>Freelancing Articles and Websites</h2>
<p><img src="/images/freelance-switch.png" alt="Freelance Switch" /><br />
<strong><a href="http://www.freelanceswitch.com">Freelance Switch</a></strong><br />
One of the best on the web for web designers and developers. It&#8217;s a great looking site that has quality content to match.</p>
<p><img src="/images/wake-up-later.png" alt="Wake Up Later" /><br />
<strong><a href="http://www.wakeuplater.com/">Wake Up Later</a></strong><br />
Great little blog with some decent articles about how to make it as a freelancer and generate passive income.</p>
<p><img src="/images/freelance-folder.png" alt="Freelance Folder" /><br />
<strong><a href="http://freelancefolder.com/">Freelance Folder</a></strong><br />
A popular blog on the topic of freelancing that has some excellent tips, interviews and resources.</p>
<h2>Freelance Invoicing Tools</h2>
<p><img src="/images/invoice-machine.png" alt="The Invoice Machine" /><br />
<strong><a href="http://invoicemachine.com/">The Invoice Machine</a></strong><br />
This is the simplest of the online invoicing services available but is a great tool for generating a quick invoice. It&#8217;s simplicity and ease of use is its strongest asset.</p>
<p><img src="/images/freshbooks.png" alt="Fresh Books" /><br />
<strong><a href="http://www.freshbooks.com">Fresh Books</a></strong><br />
Fresh Books is a well established online invoicing service that has many great features such as full invoice management, time tracking, the ability to accept payments with PayPal, Authorize.Net etc. It even has a snail mail service although this is only really an option for customers based in the US. It&#8217;s a paid for service but the time you will save more than makes tup for it. It&#8217;s also free for up to 3 clients.</p>
<p><img src="/images/blinksale.png" alt="Blinksale" /><br />
<strong><a href="http://www.blinksale.com">Blinksale</a></strong><br />
Blinksale is another online invoicing service that is similar in price to Fresh Books. It&#8217;s free to send up to 3 invoices a month but you can have unlimited clients setup. It has good support for Basecamp and allows you to send snail mail invoices as well.</p>
<h2>Other Freelance articles</h2>
<p><strong><a href="http://www.sitepoint.com/article/bulletproof-web-design-contract">Bulletproof Web Design Contracts</a></strong></p>
<p><strong><a href="http://www.graphicdefine.org/issue3/gettingpaid">Getting Paid</a></strong></p>
<p><strong><a href="http://www.smileycat.com/miaow/archives/000801.php">Large collection of articles about freelancing and working with clients</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/02/08/freelancing-resources-and-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Photoshop Tutorials To Create A Wicked Worn Look</title>
		<link>http://www.webdesigngoldmine.com/2008/01/29/10-photoshop-tutorials-to-create-a-wicked-worn-look/</link>
		<comments>http://www.webdesigngoldmine.com/2008/01/29/10-photoshop-tutorials-to-create-a-wicked-worn-look/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 22:51:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/01/29/10-photoshop-tutorials-to-create-a-wicked-worn-look/</guid>
		<description><![CDATA[I&#8217;ve always loved that faded worn look and sometimes finding good tutorials on the techniques used can be elusive to say the least. I&#8217;ve documented some of the best on the web for easy reference. Please feel free to add any further tutorials to this list via the comments if you know of any.
That Wicked [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always loved that faded worn look and sometimes finding good tutorials on the techniques used can be elusive to say the least. I&#8217;ve documented some of the best on the web for easy reference. Please feel free to add any further tutorials to this list via the comments if you know of any.<span id="more-61"></span></p>
<p><strong><a href="http://www.cameronmoll.com/archives/000024.html">That Wicked Worn Look - The Series</a></strong><br />
Excellent four part from the master, Cameron Moll covering the core techniques for producing realistic aging and weathering effects.  A great place to start.</p>
<p><strong><a href="http://www.blakems.com/archives/000072.html">The Awesome Antiquated Look</a></strong><br />
Nice tutorial that focoses on how to use photoshop brushes to achieve erosion, decay, wear and aged effects.</p>
<p><strong><a href="http://home.zonnet.nl/epragt/tutorials/photoshop/text/rustymetal/index.jsp.htm">Rusty Metal Text Tutorial</a></strong><br />
This tutorial explains two techniques. The first shows how to create nice, shiny metal; the other, how to make it look rusty and old.</p>
<p><strong><a href="http://www.redlabor.com/analogue/">Red Labor Tutorial</a></strong><br />
This article serves as an extension of Cameron Moll&#8217;s orginal tutorial series and also includes supporting PSD files.</p>
<p><strong><a href="http://www.fontshop.com/fontfeed/archives/tip-the-wornweatheredstamped-look/">The Worn/Weathered/Stamped Look</a></strong><br />
Nice tutorial that used some basic effects in Photoshop to created a weathered stamp.</p>
<p><strong><a href="http://veerle.duoh.com/blog/comments/creating_grunge_brushes/">Creating Grunge Brushes</a></strong><br />
How to create a grunge type effect from a suitable photo or texture.</p>
<p><strong><a href="http://www.drquincy.com/resources/tutorials/photoshop/agedwornphoto/">Creating an Aged Worn Photo</a></strong><br />
Slightly different tutorial that shows you how to create a really authentic worn effect on any photo.</p>
<p><strong><a href="http://www.photoshoplab.com/ripped-and-torn-edges-and-stuff.html">Ripped and Torn Edges</a></strong><br />
This tutorial will show you how to achieve that ripped, torn and distressed effect.</p>
<p><strong><a href="http://www.attitudedesign.co.uk/journal/?p=80">Worn Look Tutorial</a></strong><br />
How to do it the Old Skool way!</p>
<p><strong><a href="http://inonomas.deviantart.com/art/Vintage-look-Tutorial-72669790">Vintage Logo Tutorial</a></strong><br />
Mini-tutorial on how to create a vintage look and feel for any logo.</p>
<p>Other Resources for retro fonts, brushes and effects.</p>
<ul>
<li><strong><a href="http://misterretro.com/image_filters.html">Mister Retro</a></strong></li>
<li><strong><a href="http://www.textureking.com/index.php/category/concrete/">Texture King</a></strong></li>
<li><strong><a href="http://grunge-style.com/">Grunge-Style.com</a></strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/01/29/10-photoshop-tutorials-to-create-a-wicked-worn-look/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Matt Cutts SEO Videos</title>
		<link>http://www.webdesigngoldmine.com/2008/01/28/matt-cutts-seo-videos/</link>
		<comments>http://www.webdesigngoldmine.com/2008/01/28/matt-cutts-seo-videos/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 21:24:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[google]]></category>

		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2008/01/28/matt-cutts-seo-videos/</guid>
		<description><![CDATA[I thought I would put a post together featuring some of the really useful videos that Matt Cutts (Head of Web Spam at Google) posts on the Official Google Webmaster Central Blog as well as some other great interviews at various conferences.

Google&#8217;s Matt Cutts gives tips to small business owners
This is a great basic introduction [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I would put a post together featuring some of the really useful videos that Matt Cutts (Head of Web Spam at Google) posts on the <a href="http://googlewebmastercentral.blogspot.com">Official Google Webmaster Central Blog</a> as well as some other great interviews at various conferences.<br />
<span id="more-60"></span><br />
<strong>Google&#8217;s Matt Cutts gives tips to small business owners</strong><br />
This is a great basic introduction to Google SEO and Matt delivers some great tips on how to take your first steps into SEO, Google Webmaster Tools and Adwords.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/gscFgaMTm48&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gscFgaMTm48&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><strong>Using ALT attributes smartly</strong></p>
<p>This video succinctly covers how to optimise alt tags on your images so that Google can understand them better. </p>
<p><object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/3NbuDpB_BTc&#038;rel=1&#038;border=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/3NbuDpB_BTc&#038;rel=1&#038;border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object></p>
<p><strong>Matt Cutts Discusses how to effectively remove your urls from Google</strong></p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/nM2VDkXPt0I&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/nM2VDkXPt0I&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
<strong><br />
Trust Rank Explained by Matt Cutts</strong></p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/p8mUXQzwEvs&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/p8mUXQzwEvs&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><strong>What Should SEO&#8217;s Focus in 2008</strong></p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/-dSMFiCjwwE&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/-dSMFiCjwwE&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><strong>Matt Cutts Warns Against Buying Links</strong><br />
You were warned!</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/_r2vp4x-JtU&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/_r2vp4x-JtU&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2008/01/28/matt-cutts-seo-videos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress Tutorials</title>
		<link>http://www.webdesigngoldmine.com/2007/12/21/wordpresss-tutorials/</link>
		<comments>http://www.webdesigngoldmine.com/2007/12/21/wordpresss-tutorials/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 10:04:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webdesigngoldmine.com/2007/12/21/wordpresss-tutorials/</guid>
		<description><![CDATA[A couple of useful wordpress tutorials I&#8217;ve come across which I thought I would share with you.
Reset wordpress password in phpMyAdmin - Covers how to reset a password in phpMyAdmin using MD5 hash.
Protect you wp-config file - How to protect your config file in Wordpress so you reduce the risk of being hacked.
]]></description>
			<content:encoded><![CDATA[<p>A couple of useful wordpress tutorials I&#8217;ve come across which I thought I would share with you.</p>
<p><a rel="nofollow" href="http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin"><strong>Reset wordpress password in phpMyAdmin</strong></a> - Covers how to reset a password in phpMyAdmin using MD5 hash.</p>
<p><a rel="nofollow" href="http://www.devlounge.net/articles/protect-your-wordpress-wp-config-so-you-dont-get-hacked"><strong>Protect you wp-config file</strong></a> - How to protect your config file in Wordpress so you reduce the risk of being hacked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigngoldmine.com/2007/12/21/wordpresss-tutorials/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.379 seconds -->
