<?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>melalouise.net</title>
	<atom:link href="http://melalouise.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://melalouise.net</link>
	<description>dancing to a different beat</description>
	<lastBuildDate>Thu, 19 Nov 2009 23:36:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress wins CMS Awards</title>
		<link>http://melalouise.net/2009/11/wordpress-wins-cms-awards/</link>
		<comments>http://melalouise.net/2009/11/wordpress-wins-cms-awards/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 23:36:27 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://melalouise.net/?p=341</guid>
		<description><![CDATA[I&#8217;ve been using WordPress as a CMS (Content Management System) for about four years now.  Back when I began, it was simply a blogging platform but I discovered it was easy to customise, easy for clients to add content and came with lots of useful plugins and an open API, which made it ideal in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using WordPress as a CMS (Content Management System) for about four years now.  Back when I began, it was simply a blogging platform but I discovered it was easy to customise, easy for clients to add content and came with lots of useful plugins and an open API, which made it ideal in my eyes for a simple CMS.  Indeed, over the years I&#8217;ve created some interesting functionality for different sites using a mixture of plugins and custom code. It seems that other people reached the same conclusion over the years and Wordpress took note and began adding useful CMS features.</p>
<p>And this week, the makers of WordPress finally have recognition for their great work &#8211; <a href="http://wordpress.org/development/2009/11/wordpress-wins-cms-award/">they have won</a> the Overall Best Open Source CMS Award at the <a href="http://www.packtpub.com/award">2009 Open Source CMS Awards</a>. Congratulations WordPress, I will continue to use and recommend your CMS!</p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/11/wordpress-wins-cms-awards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning standards-based HTML &amp; CSS</title>
		<link>http://melalouise.net/2009/11/learning-standards-based-html-css/</link>
		<comments>http://melalouise.net/2009/11/learning-standards-based-html-css/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 13:20:36 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://melalouise.net/2009/11/learning-standards-based-html-css/</guid>
		<description><![CDATA[A couple of people have asked me recently how I create clean markup so quickly. I don&#8217;t find it particularly hard, I do it by hand in a systematic manner. But I have a lot of learning behind me that I apply. So, in this blog I reveal my process as well as a few [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both"><img class="alignright size-medium wp-image-337" title="istock_000004333554xsmall" src="http://melalouise.net/wp-content/uploads/2009/11/istock_000004333554xsmall-300x225.jpg" alt="istock_000004333554xsmall" width="188" height="141" />A couple of people have asked me recently how I create clean markup so quickly. I don&#8217;t find it particularly hard, I do it by hand in a systematic manner. But I have a lot of learning behind me that I apply. So, in this blog I reveal my process as well as a few of the resources I have learned from along the way. <span id="more-330"></span></p>
<p style="clear: both">My markup is far from perfect but I strive to create HTML &amp; CSS that:</p>
<ul style="clear: both">
<li>passes validation (using the Strict DOCTYPE whenever possible);</li>
<li>completely separates markup from styling;</li>
<li>Is table-free (except for proper tables of data)</li>
<li>reuses styles as much as possible;</li>
<li>gracefully degrades in older browsers / without a stylesheet / without images;</li>
<li>matches the graphic design as closely as possible (I&#8217;ve had some very fussy clients!)</li>
<li>works in all modern browsers</li>
</ul>
<p style="clear: both">
<div>So, what do you need to learn and what steps do you need to follow to be able to do this? I learned the basics of HTML and javascript at University in the late 90&#8217;s as part of a Computer Science course. Things have changed a lot since then, thankfully you can now learn a lot of this online if you have the motivation and basic understanding of computers.</div>
<p style="clear: both">Here&#8217;s what you need to learn:</p>
<ul style="clear: both">
<li>HTML 4.0 markup &#8211; the best place to start is W3Schools. Make sure you learn what conforms to the Strict (or at least the Transitional) DOCTYPE</li>
<li>CSS &#8211; again, start with W3Schools</li>
<li>Once you know the syntax of HTML and CSS, learn how to apply them to modern designs &#8211; read <a href="http://simplebits.com/publications/bulletproof/" target="_blank">Bulletproof Web Design</a>, <a href="http://www.amazon.com/exec/obidos/ASIN/0321303474/mezzoblue-20/" target="_blank">The Zen of CSS Design</a> and <a href="http://www.amazon.com/Principles-Beautiful-Web-Design/dp/0975841963/ref=pd_sim_b_9" target="_blank">The Principles of Beautiful Web Design</a> for starters</li>
<li>Learn about the browser bugs and deficiencies you will have to work around and the standard work-arounds for these &#8211; start with <a href="http://www.positioniseverything.net/" target="_blank">Position is Everything</a> and <a href="http://www.alistapart.com/" target="_blank">A List Apart</a></li>
<li>Learn how to use Photoshop or similar graphical tool (though it is expensive, Photoshop is the best and most widely-used design tool) &#8211; in particular turning layers on and off, cutting out certain areas, exporting images for the web</li>
<li>Learn how to &#8220;debug&#8221; your design. I use Firebug, which is a <a href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a> plugin, to see why things are going wrong, which styles are being applied, etc.</li>
<li>If you want to learn Javascript for interactivity, again begin with the W3Schools but also check out Javascript libraries such as <a href="http://www.prototypejs.org/" target="_blank">Prototype</a>, <a href="http://jquery.com/" target="_blank">JQuery</a>, and <a href="http://mootools.net/" target="_blank">MooTools</a>. <a href="http://www.dynamicdrive.com/" target="_blank">DynamicDrive</a> has some handy scripts you can learn from.</li>
</ul>
<p style="clear: both">Forget using Frontpage or any other such tool; good, clean markup can only be written by hand. Software that allows you to write code by hand but gives you handy tools like auto-completion, built-in browser, extended search and replace and file management is ideal. Graphical tools will only destroy your carefully crafted markup. I use <a href="http://www.panic.com/coda/" target="_blank">Coda</a>, which is perfect for my needs.</p>
<p style="clear: both">You may like to explore using a reset stylesheet. These provide a neutral base for all browsers for all the styles by removing annoying default styles such as borders, padding and margin. There are a number of reset.css files available online for free download.</p>
<p style="clear: both">Here is a rough order in which I begin building a site:</p>
<ul style="clear: both">
<li>I start with my own template &#8211; which already has header markup, basic css files (reset.css, styles.css and iebugfix.css), and a basic structure &#8211; and open it up in Coda</li>
<li>Then I open the design in Photoshop (usually provided to me by designers, sometimes created by me) and decide on how I am going to structure the page, what I need to cut out as backgrounds, what can be done with CSS, etc.</li>
<li>I move back to Coda and start marking up the page, starting with the basic structure and then moving from top to bottom, cutting out images and styling the CSS as I go. I frequently check how I&#8217;m going using Coda&#8217;s built-in browser and if something isn&#8217;t going right, I then move to Firefox and use Firebug to help me fix it.</li>
<li>Once the HTML and CSS (and often, Javascript) are completed, I then check the page in Internet Explorer 7. IE7 is less forgiving than Firefox so anything you fix here (except for known bugs) will help with other browsers.</li>
<li>When the site works in Safari, Firefox and Internet Explorer 7, I then move to testing it in Internet Explorer 6 (if I&#8217;ve been asked to support IE6, which is not always). Usually this is a matter of addressing which IE6 bug I&#8217;ve triggered and then applying the known fix to the ie6bugfix.css file. Sometimes, unfortunately, it&#8217;s much harder than this.</li>
<li>If I then need to create additional pages in the same style, I take a copy of the first page and reuse whatever styles I can, creating new styles where necessary, and occasionally checking back that I haven&#8217;t broken anything in the first page. And so on&#8230;</li>
<li>As a final check on pages, I run them through the <a href="http://validator.w3.org/" target="_blank">W3C validators</a>. This usually picks up semantic typos.</li>
</ul>
<p>What then happens depends on who or what I&#8217;m creating the markup for. Sometimes I add SEO (Search Engine Optimisation) and publish the site, other times I turn it into a Wordpress template, still other I send to developers to have programming code inserted into them.</p>
<p>I keep as up-to-date as I can with new browsers, changes to standards, new methods and bugfixes by reading a variety of blogs and e-zines. Here is a small sample of these:</p>
<ul style="clear: both">
<li><a href="http://meyerweb.com/" target="_blank">meyerweb.com</a></li>
<li><a href="http://net.tutsplus.com/" target="_blank">NetTuts</a></li>
<li><a href="http://www.smashingmagazine.com/" target="_blank">Smashing Magazine</a></li>
<li><a href="http://simplebits.com/" target="_blank">SimpleBits</a></li>
</ul>
<p>If you&#8217;re a budding young web developer, I hope this post is of help. Feel free to post questions as comments.</p>
<p><br class="final-break" style="clear: both" /></p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/11/learning-standards-based-html-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The morals of Search Engine Optimisation</title>
		<link>http://melalouise.net/2009/05/the-morals-of-search-engine-optimisation/</link>
		<comments>http://melalouise.net/2009/05/the-morals-of-search-engine-optimisation/#comments</comments>
		<pubDate>Mon, 04 May 2009 01:24:32 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://melalouise.net/?p=299</guid>
		<description><![CDATA[Maybe I&#8217;m just old-fashioned, but every time I get an email offering reciprocal links or paid website reviews, I immediately hit the &#8220;spam&#8221; button and sigh a deep sigh.  In the &#8220;real&#8221; world, it takes time to build a good reputation, for individuals and for businesses; in the Internet world, it seems that people don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-300" title="istock_000005833932xsmall" src="http://melalouise.net/wp-content/uploads/2009/05/istock_000005833932xsmall-225x300.jpg" alt="istock_000005833932xsmall" width="151" height="202" />Maybe I&#8217;m just old-fashioned, but every time I get an email offering reciprocal links or paid website reviews, I immediately hit the &#8220;spam&#8221; button and sigh a deep sigh.  In the &#8220;real&#8221; world, it takes time to build a good reputation, for individuals and for businesses; in the Internet world, it seems that people don&#8217;t have the patience for this, they&#8217;re happy to follow immoral or unethical Search Engine Optimisation (SEO) practices in order to grow a false reputation for their website.  And the smarter search engines get, the smarter the schemes get.  &#8220;Black Hat&#8221; SEO used to involve reams of hidden keywords at the bottom of pages and keyword stuffing (adding large numbers of irrelevant keywords and phrases to pages).  Search Engines now penalise pages if they find this.  Instead, we&#8217;re seeing practices like duplicate sites and paid reviews (website owners pay a company to write a review of their site with a link to it).  <span id="more-299"></span></p>
<p>However, (thankfully) this doesn&#8217;t guarantee a good result because while these practices continue to evolve, search engines continue to evolve also.  They are continually tweaking their algorithms so that their search results award higher rankings to sites that actually deserve them &#8211; sites that have built a good reputation, that are competing with similar businesses and are not trying to quickly boost their results by cheating.  They now take into account the freshness of content, the accuracy and volume of keywords, and the ranking of inward and outward linked sites.</p>
<p>So, why should we avoid black hat SEO practices?</p>
<ul>
<li>They&#8217;re immoral, it&#8217;s cheating &#8211; if you wouldn&#8217;t do it in the real world, don&#8217;t do it in the online world</li>
<li>Search engines catch on to immoral practices and penalise sites for it so your site may not rank as highly as you&#8217;d expect</li>
<li>Not only will you get a more accurate and deserved ranking but you&#8217;ll get more respect from your readers because the site is targeted at them and not written for search engines</li>
<li>Mileage varies &#8211; some industries have highly competitive search results (e.g. &#8220;web designer&#8221; as opposed to &#8220;plumber&#8221;)</li>
<li>As search engines get smarter, you will keep paying more for smarter black hat practices, whereas white hat practices will change much more slowly</li>
<li>You can sleep better at night knowing that you&#8217;re making the Internet a better place</li>
</ul>
<p>Here are some do&#8217;s and dont&#8217;s to consider if you want to avoid unethical SEO practices and still build a good ranking.</p>
<h3>Don&#8217;t</h3>
<ul>
<li>Pay for links or reviews &#8211; it&#8217;s cheating, don&#8217;t do it</li>
<li>Duplicate content or sites &#8211; Fresh, original content ranks higher than duplicate content</li>
<li>Spam keywords &#8211; consider carefully the most accurate keywords and then select the best places to include them. Don&#8217;t overuse them.</li>
<li>Steal content</li>
<li>Optimise pages for unrelated searches</li>
</ul>
<h3>Do</h3>
<ul>
<li>Follow search engine guidelines to make your site indexable &#8211; use &#8220;meta&#8221; tags, include a sitemap.xml, ensure that the code is standards-compliant and valid</li>
<li>Use your carefully selected keywords in relevant places &#8211; e.g. page URL, title tag, heading tags, content, &#8220;meta&#8221; tags</li>
<li>Add fresh content written for people, not search engines</li>
<li>Seek backlinks from relevant, reputable websites only</li>
<li>Optimise your site for relevant queries only (e.g. if your site is about cake decorating, ensure it doesn&#8217;t appear for interior decorating)</li>
<li>Have patience, it takes time to earn a decent ranking, just as it takes time to earn a good reputation in the real world</li>
</ul>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/05/the-morals-of-search-engine-optimisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What do I do?</title>
		<link>http://melalouise.net/2009/04/what-do-i-do/</link>
		<comments>http://melalouise.net/2009/04/what-do-i-do/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 11:26:28 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://melalouise.net/?p=296</guid>
		<description><![CDATA[Here&#8217;s a great explanation!
This YUI Theater entry captures one of the courses Nate has taught at Yahoo, &#8220;Professional Frontend Engineering.&#8221; It covers the foundations of the discipline, some of its core ideas, and some of of its best practices. If you are looking to reset your own assumptions about &#8220;web development&#8221; or &#8220;frontend work&#8221;, I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://video.yahoo.com/watch/4671445/12486762">Here&#8217;s a great explanation</a>!</p>
<p><em>This YUI Theater entry captures one of the courses Nate has taught at Yahoo, &#8220;Professional Frontend Engineering.&#8221; It covers the foundations of the discipline, some of its core ideas, and some of of its best practices. If you are looking to reset your own assumptions about &#8220;web development&#8221; or &#8220;frontend work&#8221;, I know of no better place to start. If you have friends who are new to the discipline, or backend engineers transitioning to the frontend, this is also a fantastic resource to which you can point them.</em></p>
<p><em><br />
</em></p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/04/what-do-i-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why you should sell SEO and copywriting</title>
		<link>http://melalouise.net/2009/04/why-you-should-sell-seo-and-copywriting/</link>
		<comments>http://melalouise.net/2009/04/why-you-should-sell-seo-and-copywriting/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 02:12:30 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Business Management]]></category>
		<category><![CDATA[Search Engine Optimisation]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[copywriting]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://melalouise.net/2009/04/why-you-should-sell-seo-and-copywriting/</guid>
		<description><![CDATA[When I started out as a freelance web designer I knew that Search Engine Optimisation (SEO) and professional copywriting are important, but as I was still new to the business, my focus was on getting work; my goal, whenever I drafted a quote, was to propose the cheapest possible option that would allow me to [...]]]></description>
			<content:encoded><![CDATA[<p><img style=" display: inline; float: left; margin: 0 10px 10px 0;" src="http://melalouise.net/wp-content/uploads/2009/04/owl-thumb.png" alt="" width="130" height="122" /><strong>W</strong>hen I started out as a freelance web designer I knew that Search Engine Optimisation (SEO) and professional copywriting are important, but as I was still new to the business, my focus was on getting work; my goal, whenever I drafted a quote, was to propose the cheapest possible option that would allow me to create a professional-looking site without underselling myself. I didn&#8217;t have the skills or the contacts to offer SEO or copywriting so it was something I avoided.</p>
<p><span id="more-276"></span></p>
<p>Now, however, I&#8217;ve changed my ways. I know how important it is these days for a website to be findable, and once found, to make a good first impression, otherwise the cost of building the website in the first place is wasted. I&#8217;m no longer satisfied with creating a professional-looking website only to let it disappear like a grain of sand in a windstorm or to see it degrade with sloppy copy written by the client. I have taught myself SEO and I have a business relationship with a friend who is very adept at writing for the web.</p>
<p>Here&#8217;s why you should sell SEO and copywriting with every website proposal:</p>
<ul>
<li>No matter how good the design is, bad copy will make a bad impression which will reflect badly on you, the designer</li>
<li>Good copy that incorporates the site&#8217;s optimal keywords will enhance its SEO</li>
<li>The more &#8220;white hat&#8221; SEO out there, the more search engines will begin to ignore black hat practices such as link farming</li>
<li>A site that ranks well in search engines, which attracts more visitors, can only be good for your reputation as the designer</li>
<li>If all professional web designers suggest and offer SEO and copywriting/editing to their clients, it will help broaden the distinction between professional web designers and bosses&#8217; nephews who know how to use Dreamweaver and that can only be good for all web designers</li>
<li>It will make the Internet a more pleasurable place to be!</li>
</ul>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/04/why-you-should-sell-seo-and-copywriting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Podcast your blog with Talkr</title>
		<link>http://melalouise.net/2009/04/podcast-your-blog-with-talkr/</link>
		<comments>http://melalouise.net/2009/04/podcast-your-blog-with-talkr/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 12:16:41 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://melalouise.net/2009/04/podcast-your-blog-with-talkr/</guid>
		<description><![CDATA[For quite some time now I&#8217;ve had an audio version of my RSS feed available but as it didn&#8217;t work at first for some reason, I forgot about it. I was cleaning out my feeds recently and found that all of my recent posts were there with audio files ready to download &#8211; and they [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both">For quite some time now I&#8217;ve had an audio version of my RSS feed available but as it didn&#8217;t work at first for some reason, I forgot about it. I was cleaning out my feeds recently and found that all of my recent posts were there with audio files ready to download &#8211; and they worked! <span id="more-269"></span>Podcasting your blog is a great idea both for subscribers who wish to download their blogs and listen to them on their iPod (whilst travelling, for example) and also for the visually impaired.</p>
<p style="clear: both">Talkr takes a little bit of setting up but all you need to do then is offer a link to the feed on your blog and it will be updated whenever you publish a post. Talkr also offers many other text-to-speech and chat services. <a href="http://www.talkr.com" target="_blank">Check them out</a>.</p>
<p><br class="final-break" style="clear: both" /></p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/04/podcast-your-blog-with-talkr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link Review: Handy sites for web professionals</title>
		<link>http://melalouise.net/2009/03/link-review-handy-sites-for-web-professionals-mar-09/</link>
		<comments>http://melalouise.net/2009/03/link-review-handy-sites-for-web-professionals-mar-09/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 01:29:57 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Cool sites]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://melalouise.net/2009/03/link-review-handy-sites-for-web-professionals-mar-09/</guid>
		<description><![CDATA[After a year of studying full-time, I&#8217;m finally starting to catch up on what new cool tools and sites there are out there for web designers and developers. Here are a few I&#8217;ve come across lately, as well as some interesting articles.

Tools and Services

Mail Chimp: For beautiful, easy email campaigns. Alternative to Campaign Monitor.
File Juicer: [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both">After a year of studying full-time, I&#8217;m finally starting to catch up on what new cool tools and sites there are out there for web designers and developers. Here are a few I&#8217;ve come across lately, as well as some interesting articles.<span id="more-255"></span></p>
<p style="clear: both">
<h2>Tools and Services</h2>
<ul style="clear: both"><img style=" display: inline; float: right; margin: 0 0 10px 10px;" src="http://melalouise.net/wp-content/uploads/2009/03/tools-thumb1.jpg" alt="" width="134" height="173" align="right" /></p>
<li><a title="Mail Chimp" href="http://www.mailchimp.com" target="_blank">Mail Chimp</a>: For beautiful, easy email campaigns. Alternative to <a title="Campaign Monitor" href="http://www.campaignmonitor.com" target="_blank">Campaign Monitor</a>.</li>
<li><a title="File Juicer" href="http://echoone.com/filejuicer/" target="_blank">File Juicer:</a> As mentioned in a previous post &#8211; extracts images and text from almost any file</li>
<li><a title="Flock" href="http://www.flock.com" target="_blank">Flock:</a> Web browsing, social networking, RSS feeds, email, searching &#8211; all in one Application</li>
<li><a title="Blogo" href="http://www.drinkbrainjuice.com/blogo" target="_blank">Blogo:</a> Great little Mac App for posting to Wordpress &#8211; I&#8217;m using it now</li>
<li><a title="Veer Marketplace" href="http://www.veer.com/products/marketplace/" target="_blank">Veer Marketplace</a>: Move over <a title="iStockphoto" href="http://www.istockphoto.com" target="_blank">iStockphoto</a> &#8211; Veer is doing stock photography</li>
<li><a title="Billings website" href="http://www.billingsapp.com/" target="_blank">Billings 3</a>: I assessed Billings 2 a couple of years ago, for managing timesheets and invoices, and found it wanting. Billings 3, however, impressed me and I&#8217;ve been using it without much complaint for the last couple of months (it&#8217;s on sale right now, as well).</li>
<li><a title="Survey Monkey" href="http://www.surveymonkey.com" target="_blank">Survey Monkey:</a> simple online surveys</li>
<li><a title="Browser Shots" href="http://browsershots.org" target="_blank">Browser Shots</a>: Free Cross Platform Browser Testing</li>
<li><a title="Jump Cut" href="http://jumpcut.sourceforge.net/">Jumpcut</a>:  Provides &#8220;clipboard buffering&#8221; -  access to text that you&#8217;ve cut or copied, even if you&#8217;ve subsequently cut or copied something else.</li>
</ul>
<p style="clear: both">
<h2>Articles</h2>
<ul style="clear: both"><img style=" display: inline; float: right; margin: 0 0 10px 10px;" src="http://melalouise.net/wp-content/uploads/2009/03/rss-thumb.jpg" alt="" width="73" height="73" align="right" /></p>
<li><a title="Chromatic Website" href="http://www.chromaticsites.com/blog/11-absolutely-necessary-web-based-tools-for-a-freelance-web-designer/" target="_blank">11 Absolutely Necessary Web-Based Tools for a Freelance Web Designer</a> by Chromatic</li>
<li><a title="Design daily news" href="http://www.designer-daily.com/mac-apps-1915" target="_blank">25 Free Mac Apps for freelancers</a> by Design daily news</li>
<li><a title="robertnyman.com" href="http://www.robertnyman.com/2009/02/09/stop-developing-for-internet-explorer-6/" target="_blank">Stop Developing for Internet Explorer 6</a> by Robert Nyman</li>
<li><a title="Bring Down IE6" href="http://bringdownie6.com">Bring Down IE6</a> &#8211; is it finally time to take IE6 behind the shed and shoot it?</li>
<li><a title="Webdesigner Depot" href="http://feedproxy.google.com/~r/webdesignerdepot/~3/FU2dF8RGumM/" target="_blank">The Ultimate Guide to Everything Twitter</a> at Webdesigner Depot</li>
<li><a title="Webdesigner Depot" href="http://www.webdesignerdepot.com/2009/03/30-useful-web-design-books-for-2009/" target="_blank">30 Useful Web Design Books for 2009</a> at Webdesigner Depot</li>
<li><a title="Chromatic" href="http://www.chromaticsites.com/blog/essential-guide-to-creating-seo-friendly-website-design/" target="_blank">Essential Guide to Creating SEO Friendly Website Design</a> by Chromatic</li>
</ul>
<p><br class="final-break" style="clear: both" /></p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/03/link-review-handy-sites-for-web-professionals-mar-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 tips for designing email newsletters that earn their keep</title>
		<link>http://melalouise.net/2009/03/10-tips-for-designing-email-newsletters-that-earn-their-keep/</link>
		<comments>http://melalouise.net/2009/03/10-tips-for-designing-email-newsletters-that-earn-their-keep/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 11:40:07 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Business Management]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://melalouise.net/2009/03/10-tips-for-designing-email-newsletters-that-earn-their-keep/</guid>
		<description><![CDATA[Many small businesses are starting to realise how important it is to keep in touch with their customers and that one easy, low-cost way to do this is by sending email newsletters. However, many newsletters fall short when it comes to meeting legal requirements, attracting users to take action and providing feedback to the business. [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both"><img class="linked-to-original alignright" style="margin: 0pt 0pt 10px 10px; display: inline;" src="http://melalouise.net/wp-content/uploads/2009/03/news1-thumb1.jpg" alt="" width="225" height="147" align="right" />Many small businesses are starting to realise how important it is to keep in touch with their customers and that one easy, low-cost way to do this is by sending email newsletters. However, many newsletters fall short when it comes to meeting legal requirements, attracting users to take action and providing feedback to the business. Here are some tips to help you create newsletters that give back.<span id="more-248"></span></p>
<ol style="clear: both">
<li><strong>Be concise: </strong>The point of a newsletter is to give your client short teasers whether they be articles, promotions or news. Keep each section short and sweet and if there is more to tell, link to a website with the deeper information.</li>
<li><strong>Give your readers something</strong>: Avoid sending out a newsletter that simply gives them an update on your business; give them reason to click through to your website &#8211; whether to find out more information, view more specials, or download a coupon.</li>
<li><strong>Use a mixture of images and text:</strong> Plain text newsletters can be dry (though you should allow them as an alternative), whereas image-heavy newsletters (or image-only newsletters) can be hard to read and do not allow for obvious hyperlinks. Keep information in text with images for illustration and use hyperlinks to take take your readers to your website.</li>
<li><strong>Give a summary of the newsletter:</strong> Some campaign software allows you to generate a list of links that click through to the different paragraphs within your newsletter, giving a clear summary of its contents &#8211; for readers who want to know what your pushing, and fast.</li>
<li><strong>Include a link to view the newsletter online: </strong>Just in case they can&#8217;t or choose not to view it in their email client. Many campaign tools allow this automatically.</li>
<li><strong>Use software which provides tracking:</strong> Knowing who viewed your newsletter, who clicked links (and which ones) and which emails bounced can be valuable information for drawing conclusions about the success of your campaigns</li>
<li><strong>Always include a working unsubscribe link:</strong> otherwise you are sending SPAM and that&#8217;s BAD.</li>
<li><strong>Consider adding a &#8220;Forward to a friend&#8221; link</strong> &#8211; it may be easy for readers to forward an email but this prompts them to do so and it may end up generating you more sales.</li>
<li><strong>Proof-read:</strong> proof-read, proof-read and get a friend to proof-read again. It can&#8217;t hurt your credibility.</li>
<li><strong>Test:</strong> Make sure your email newsletter works in the majority of email clients including MS Outlook, Outlook Express, Thunderbird, Apple Mail. Hotmail, Gmail, iPhone.</li>
</ol>
<p style="clear: both">Also, a reminder: you must have permission from your recipients to send them mass communications and the content must be relevant to them &#8211; consider setting up multiple subscriber lists for different kinds of communications.</p>
<p style="clear: both"><a class="image-link" href="http://melalouise.net/wp-content/uploads/2009/03/campaignmonitor-full.jpg"><img class="linked-to-original" style=" display: inline; float: right; margin: 0 0 10px 10px;" src="http://melalouise.net/wp-content/uploads/2009/03/campaignmonitor-thumb4.jpg" alt="" width="253" height="180" align="right" /></a>In case you&#8217;re wondering which software I use or where you can find something that meets all of these suggestions, I highly recommend <a title="Campaign Monitor" href="http://www.campaignmonitor.com" target="_blank">Campaign Monitor</a>. It has a sensible pricing system, great features (templates with rich-text editing, fantastic reporting), a range of payment options and is easy to use. An alternative that looks just as good, with different pricing options is <a title="Mail Chimp" href="http://www.mailchimp.com" target="_blank">MailChimp</a>.</p>
<p><br class="final-break" style="clear: both" /></p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/03/10-tips-for-designing-email-newsletters-that-earn-their-keep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Juicer to the rescue</title>
		<link>http://melalouise.net/2009/03/file-juicer-to-the-rescue/</link>
		<comments>http://melalouise.net/2009/03/file-juicer-to-the-rescue/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 00:46:40 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://melalouise.net/?p=239</guid>
		<description><![CDATA[I had a client come to me recently wanting a redesign of an existing website.  This website included a set of photo galleries.  These photo galleries had been made using a Flash template and didn&#8217;t really fit in with the new design.  She also wanted to add more galleries.   Unfortunately, the original Flash files were [...]]]></description>
			<content:encoded><![CDATA[<p>I had a client come to me recently wanting a redesign of an existing website.  This website included a set of photo galleries.  These photo galleries had been made using a Flash template and didn&#8217;t really fit in with the new design.  She also wanted to add more galleries.   Unfortunately, the original Flash files were lost in history and so were the electronic versions of these photos so I could neither extract the photos nor create new galleries like them.  I searched for many alternatives but could see only two that were available: use the existing Flash files and add new photos in a different format (a bit ugly), or rescan all of the original photos and create new galleries (time consuming as there are lots of photos).  Fortunately, I happened across a site today which solved all of the problems: it lead me to <a href="http://echoone.com/filejuicer/">File Juicer</a>.<span id="more-239"></span></p>
<p>File Juicer will search just about any file format and extract whatever images (and text in some cases) it can find.  It cost me around $AUD26 and within 5 minutes I had extracted all of the photos from 6 Flash photo galleries.  That was well worth the money, I think.  With a list of capabilities as long as my arm, I won&#8217;t insert them here; I&#8217;ll just say if you ever need to extract something from something &#8211; try <a href="http://echoone.com/filejuicer/">File Juicer</a>.</p>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/03/file-juicer-to-the-rescue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intelligent hyperlinking</title>
		<link>http://melalouise.net/2009/03/intelligent-hyperlinking/</link>
		<comments>http://melalouise.net/2009/03/intelligent-hyperlinking/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 13:16:58 +0000</pubDate>
		<dc:creator>pamela</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://melalouise.net/?p=215</guid>
		<description><![CDATA[In the good old days, when the Internet first began, we had to train users how to use it.  A standard was created which dictated that hyperlinks (links to another page) would be underlined.  So Internet users were trained to recognise a piece of text that they could click on to go somewhere [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://melalouise.net/wp-content/uploads/2009/03/istock_000004926002xsmall.jpg"><img class="alignright size-medium wp-image-227" title="istock_000004926002xsmall" src="http://melalouise.net/wp-content/uploads/2009/03/istock_000004926002xsmall-300x199.jpg" alt="istock_000004926002xsmall" width="244" height="149" /></a>In the good old days, when the Internet first began, we had to train users how to use it.  A standard was created which dictated that hyperlinks (links to another page) would be underlined.  So Internet users were trained to recognise a piece of text that they could click on to go somewhere else.  Somehow that wasn&#8217;t enough for amateur web page developers, though (and in those days, there weren&#8217;t any professional web designers) so the idea of a link was enforced with the words &#8220;click here&#8221;, often in big, bold, red, flashing letters.  In the decade or two since, the Internet has evolved, and so has its users &#8211; they&#8217;ve been trained to recognise a link, even if it&#8217;s not flashing.  They can also recognise a link without the words &#8220;click here&#8221;. And with savvy users, an industry built on search engine optimisation and businesses that exist only in the virtual world, it&#8217;s become more important to think about hyperlinks and the best way to present them.<span id="more-215"></span></p>
<h2>Keep text readable &#8211; don&#8217;t say &#8220;click here&#8221;</h2>
<p>If a link is removed from text, the text should still be legible; the hyperlink shouldn&#8217;t be extra text (such as &#8220;click here&#8221;) nor should it distract from the flow of the text.  For example, consider these two sentences:</p>
<blockquote><p>An article in <span style="text-decoration: underline;">the paper</span> today suggests that one out of ten people&#8230;</p>
<p>An article in the paper today (<span style="text-decoration: underline;">click here to read</span>) suggests that one out of ten people&#8230;</p></blockquote>
<p>See how the first sentence flows nicely?  The reader is not distracted with words by the fact that there is a hyperlink?  And if the hyperlink is removed, the sentence still makes sense. Also, if you have a lot of text with many hyperlinks, the page is easier to skim without being cluttered with &#8220;click here&#8221; links.  On a similar note, keep the hyperlink to a short phrase of words (I would recommend one to three words); this will avoid a paragraph looking like it has more linked text than unlinked.</p>
<p>There are other reasons for not indicating links with &#8220;click here&#8221;:</p>
<ul>
<li>Text like &#8220;click here&#8221; looks silly on paper, when the page is printed</li>
<li>Readers with visibility problems, using screen readers need information about what a link is and where it&#8217;s going</li>
<li>Using descriptive text for links will aid with search engine indexing</li>
</ul>
<h2>Keep link text for a particular page consistent</h2>
<p>Have you ever been to a website and clicked on different internal links, only to find that they lead to the same page?  That&#8217;s what I&#8217;m talking about.  Keep the message consistent.  If you are linking to a photo gallery page and use the text &#8220;photo gallery&#8221; as the link, keep on using &#8220;photo gallery&#8221; &#8211; don&#8217;t link &#8220;slideshow&#8221;, &#8220;my work&#8221;,  or &#8220;portfolio&#8221; to link to the same page, even if they mean the same thing.  Also, try and keep the text consistent with the menu text.  This will aid in giving the visitor an idea of the size and scope of the site.  It can be very irritating to see lots of internal links, only to find that the site has only three pages.</p>
<h2>Use consistent link decoration</h2>
<p>Use a consistent style and colour for all links within text blocks (I think it&#8217;s ok to decorate them differently in menus but consistency is good). Underline is still the most understood style for a hyperlink but if you don&#8217;t use an underline, consider at least using an underline in the hover state.  Try and keep the links as obvious as possible &#8211; a specific colour and bold style or a colour with an underline hover.</p>
<h2>Don&#8217;t ignore link states</h2>
<p>Back in the ol&#8217; nineties when web developers were taught HTML, one of the first things they were taught was the difference between a normal link, a hovered link, an active link and a visited link.  We were encouraged to use different colours for each of these states.  Let&#8217;s break them down:</p>
<ul>
<li>A link (a) &#8211; a normal link that is not in any of the other states</li>
<li>A hover link (a:hover) &#8211; when the mouse cursor is hovering over the link (here you can add an extra hint that the text is a link, but that should already be obvious)</li>
<li>Active link (a:active) &#8211; a link that points to the current page</li>
<li>Visited link (a:visited) &#8211; a link to a page in the user&#8217;s browser history &#8211; one they have already visited</li>
</ul>
<p>The most important state here is &#8220;visited&#8221; &#8211; it tells the user which links they&#8217;ve already visited, giving them a sense of location and relationship of their current position within the site to the rest of the site.  There doesn&#8217;t need to be a big difference between normal links and visited links, a hint of colour difference is enough, but they still need to look like clickable links.</p>
<h2>Give links a title</h2>
<p>The title property of a hyperlink is not only a handy way of giving readers an idea of what you are linking to (particularly if you are linking from an image) via a tooltip, it also helps search engine results by adding more context and more keywords to your page.  You should use the title to give the name of the site that you are linking to.  For example:<br />
<code>At 4.30pm today, residents of Melbourne experienced their &lt;a title="The Age website" href="http://www.theage.com.au/national/melbourne-hit-by-tremor-20090318-91w6.html?page=3"&gt;second earthquake in a month&lt;/a&gt;</code><br />
which results in:<br />
<code>At 4.30pm today, residents of Melbourne experienced their <a title="The Age website" href="http://www.theage.com.au/national/melbourne-hit-by-tremor-20090318-91w6.html?page=3">second earthquake in a month</a></code></p>
<p>If you hover over the above link, you&#8217;ll see that the tooltip shows that I have linked to The Age website.  You now know what to expect when you click on the very readable link.  However, the title attribute should never contain any important information because many users will not see it for various reasons (including differences in implementation by browsers, text being too small and unable to increase, users not noticing).</p>
<h2>Lists of links</h2>
<p>The same rules above apply to lists of links, only here you can actually link the name of the site you are linking to as it is not contained within a sentence and hence won&#8217;t effect readability.  See the list of links below.</p>
<p>If you have a small list of links, for example in a sidebar, consider <a title="Usability Tip: Turn Inline Links Into Padded Blocks for Larger Clickable Areas &amp;laquo;  Usability Post" href="http://www.usabilitypost.com/2008/09/04/usability-tip-inline-links-to-padded-blocks-for-larger-clickable-areas/">using padded blocks</a> for increasing the clickable area around a link, especially when the link text is wrapped over a couple of lines.</p>
<h2>Further reading</h2>
<ul>
<li><a title="W3C.org" href="http://www.w3.org/QA/Tips/noClickHere">Don&#8217;t say &#8220;click here&#8221;; not everyone will be clicking &#8211; Quality Web Tips</a> (from W3C)</li>
<li><a title="Jakob Nielsen's useit.com" href="http://www.useit.com/alertbox/9610.html">Disabled Users and the Web (Alertbox)</a> by Jakob Nielsen</li>
<li><a title="Usability Tip: Turn Inline Links Into Padded Blocks for Larger Clickable Areas &amp;laquo;  Usability Post" href="http://www.usabilitypost.com/2008/09/04/usability-tip-inline-links-to-padded-blocks-for-larger-clickable-areas/http://www.usabilitypost.com/2008/09/04/usability-tip-inline-links-to-padded-blocks-for-larger-clickable-areas/">Usability Tip: Turn Inline Links Into Padded Blocks for Larger Clickable Areas «  Usability Post</a></li>
<li><a title="codinghorror.com" href="http://www.codinghorror.com/blog/archives/000985.html">C</a><a href="http://www.codinghorror.com/blog/archives/000985.html">oding Horror: Don&#8217;t Click Here: The Art of Hyperlinking</a></li>
</ul>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]]></content:encoded>
			<wfw:commentRss>http://melalouise.net/2009/03/intelligent-hyperlinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
