<?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>5 minute tips</title>
	<atom:link href="http://www.typeclear.com/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.typeclear.com/tips</link>
	<description>Typeclear&#039;s new mini-blog for busy website owners and managers</description>
	<lastBuildDate>Mon, 27 Feb 2012 21:29:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Put a twitter feed on your site</title>
		<link>http://www.typeclear.com/tips/2010/10/put-a-twitter-feed-on-your-site/</link>
		<comments>http://www.typeclear.com/tips/2010/10/put-a-twitter-feed-on-your-site/#comments</comments>
		<pubDate>Mon, 11 Oct 2010 13:32:57 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=252</guid>
		<description><![CDATA[What&#8217;s a twitter feed? A twitter feed is simply a list of recent tweets published to twitter. You can narrow them down to show only tweets about a particular topic, or you can set the feed so that it shows  only your own tweets. Why might you want one on your site? Twitter is a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What&#8217;s a twitter feed?</strong></p>
<p>A twitter feed is simply a list of recent tweets published to twitter. You can narrow them down to show only tweets about a particular topic, or you can set the feed so that it shows  only your own tweets.</p>
<p><strong>Why might you want one on your site?</strong></p>
<p>Twitter is a good way of sharing relevant links and information, and hence a way of providing visitors with useful information and news.</p>
<p>Publishing tweets on your site allows you to highlight your recent tweets and encourage people to subscribe to your feed.</p>
<p>Outbound links may attract the attention of other site owners and encourage them to link back to your site. This may improve your page rank.</p>
<p>Of course, just publishing a feed won&#8217;t do anything for your page rank. It&#8217;s more sensible to focus on ensuring that your tweets are relevant, interesting or useful for visitors, <a href="http://www.youtube.com/watch?v=fJRnJK1R4VA">as Matt Cutts of Google explains in this brief video</a>.</p>
<p><strong>How?</strong></p>
<p>One of the easiest ways to publish a feed to your site is to use <a href="http://twitter.com/goodies/widgets">Twitter widgets</a>. But they don&#8217;t seem to work in every browser, and they&#8217;re a little inflexible when it comes to adjusting colours and other aspects of the feed.</p>
<p>Instead, there are hundreds of free scripts available, and you can simply paste them into your existing pages. One of the best is available at <a href="http://www.taranfx.com/live-twitter-ajax-script">http://www.taranfx.com/live-twitter-ajax-script</a>.</p>
<p>This script is particularly useful because it includes nearly all the javascript and styling you need in one place. That makes it simple to change colours and font styles and you just need to upload one file to your server.</p>
<p><a href="http://www.typeclear.com/tips/twitter/twitter.htm">We&#8217;ve put up an example of the script in action here</a>. It searches Twitter for the term &#8216;Danube&#8217;, displays the most recent tweets, and refreshes the display every 10 seconds.</p>
<p>You can adjust the appearance in many ways by changing the parameters in the code. For example you can change the colours used, the fonts, the refresh frequency, and the number of tweets used.</p>
<p><strong>Things to watch out for</strong></p>
<p>The hiccup you&#8217;re most likely to come across with this script concerns CSS styling. The script includes common styles such as lists, which may conflict with your existing style sheet. So to start with, the feed may not have the appearance you want.</p>
<p>One solution to this is to put your feed in a div with a distinctive name, and change the appearance of lists only when they appear in that div.</p>
<p>To do that, you preface the &lt;ul&gt; or &lt;li&gt; in your CSS with a hashtag and the div name. For example:</p>
<p><span style="color: #000080;">#twitterfeed li<br />
{<br />
display:none;<br />
list-style:none;<br />
background:#ffcc33;<br />
margin:0 15px;<br />
overflow:auto;<br />
padding:10px;<br />
color:#cc0033;<br />
font-family:Arial, Verdana, Sans-Serif;<br />
line-height:20px;<br />
}</span></p>
<p>To create the div, you would then place the opening and closing tags around the code for the feed:</p>
<p><span style="color: #000080;">&lt;div id=&#8221;twitterfeed&#8221;&gt;</span></p>
<p><span style="color: #993300;">All the code for your twitter feed goes here</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p><span style="color: #000080;"><span style="color: #000000;">In this way, any lists you already have on your site will continue to display correctly, and the list style you apply to your twitter feed will not interfere.</span><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/10/put-a-twitter-feed-on-your-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make a friendly and helpful custom 404 page</title>
		<link>http://www.typeclear.com/tips/2010/09/make-a-friendly-and-helpful-custom-404-page/</link>
		<comments>http://www.typeclear.com/tips/2010/09/make-a-friendly-and-helpful-custom-404-page/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 10:58:51 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[404 pages]]></category>
		<category><![CDATA[site architecture]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=219</guid>
		<description><![CDATA[What&#8217;s a custom 404 page? In a perfect world, nobody types URLs incorrectly. Your internal links work perfectly, inbound links don&#8217;t get broken when you alter the site structure, and money grows on trees. In the real world, visitors occasionally end up on pages that don&#8217;t exist and are given the &#8220;404 File Not Found&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What&#8217;s a custom 404 page?</strong></p>
<p><img class="size-full wp-image-260 alignright" title="404page" src="http://www.typeclear.com/tips/wp-content/uploads/2010/09/404page.jpg" alt="" width="188" height="172" />In a perfect world, nobody types URLs incorrectly.</p>
<p>Your internal links work perfectly, inbound links don&#8217;t get broken when you alter the site structure, and money grows on trees.</p>
<p>In the real world, visitors occasionally end up on pages that don&#8217;t exist and are given the &#8220;404 File Not Found&#8221; error message. This tip shows how to customise the 404 page to really help your site and your visitors.<span id="more-219"></span></p>
<p><img class="alignnone size-full wp-image-233" title="404" src="http://www.typeclear.com/tips/wp-content/uploads/2010/09/404.png" alt="A typical 404 error message" width="405" height="341" /></p>
<p><strong>Why?</strong></p>
<p>The standard 404 page is unhelpful. A more useful page might direct you to the home page, offer a set of options to help the visitor, or provide a search box allowing people to find the correct page.</p>
<p>Creative designers have also used the 404 page to display friendly and funny messages, great artwork, or just to express themselves.</p>
<p><img class="alignnone size-full wp-image-235" title="404examples" src="http://www.typeclear.com/tips/wp-content/uploads/2010/09/404examples.png" alt="" width="430" height="172" /></p>
<p><strong>How?</strong></p>
<p>Making a custom 404 page and putting it to work is very easy.</p>
<p>The page itself is a standard web page. It can be HTML or any other common format such as PHP.</p>
<p>First, decide what&#8217;s most likely to help a lost visitor. Here are some suggestions:</p>
<ul>
<li>A simplified site map allowing people to reorientate themselves</li>
<li>Contact details so that the site owner can be contacted for more information</li>
<li>Links to the five most popular pages (risky, since this might just frustrate users)</li>
<li>A site-wide search box</li>
</ul>
<p>Next, create the page. For design inspiration, check out the <a href="http://www.flickr.com/groups/web20error/pool/">Flickr site error message pool</a>, or <a href="http://fab404.com">Fab404</a>. Those two sites have amazingly creative examples, but don&#8217;t forget that your page should above all be useful.</p>
<p>If your 404 displays links, those links need to be absolute. That&#8217;s to say they should not just include the filename (such as /index.htm) but the full URL beginning with http://</p>
<p>Save your page with a recognisable name such as filenotfound.htm.</p>
<p>You can upload it to any directory on your site you choose, but it&#8217;s common to use the main directory.</p>
<p>Next decide whether you already have a file called .htaccess on your site or whether you&#8217;ll need to upload one for the first time. The best place to check is your main directory, but bear in mind some applications such as content management systems may put your .htaccess file elsewhere, and might use several.</p>
<p>Once you&#8217;ve found it, download it and open it in a text editor such as Wordpad. If you have no .htaccess file, create a new empty text file.</p>
<p>Add the following text on its own line:</p>
<p><strong><span style="color: #800000;">ErrorDocument 404 http://www.yoursite.com/filenotfound.htm</span></strong></p>
<p>Needless to say, change the URL to the name of the page you designed.</p>
<p>Save the file and change the name to <strong><span style="color: #000080;">.htaccess.</span></strong><span style="color: #000000;"> This may look like an odd name but it&#8217;s correct.</span><strong><span style="color: #000080;"><br />
</span></strong></p>
<p>Finally, upload the file to your home directory, and make sure it works by typing in a nonsense URL.</p>
<p><strong>And finally&#8230;</strong></p>
<p>Some things to watch out for:</p>
<ul>
<li>Some hosting providers don&#8217;t give you access to your root, so you&#8217;ll be unable to change the standard 404 page.</li>
<li>Your .htaccess file may be invisible in your FTP client. The <a href="http://www.coreftp.com/">Core FTP client</a> can be set to show all files.</li>
</ul>
<p>It&#8217;s also worth noting that you can create separate .htaccess files for any directory, and this allows you to have multiple 404 pages according to which section of your site the visitor is on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/09/make-a-friendly-and-helpful-custom-404-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your &#8220;how to find us&#8221; map more distinctive with fresh colours and markers</title>
		<link>http://www.typeclear.com/tips/2010/09/make-your-how-to-find-us-map-more-distinctive-with-fresh-colours-and-markers/</link>
		<comments>http://www.typeclear.com/tips/2010/09/make-your-how-to-find-us-map-more-distinctive-with-fresh-colours-and-markers/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 20:18:09 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[cloudmade maps]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[mapping]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=148</guid>
		<description><![CDATA[What is a styled location map? This is where we stretch the definition of 5 minutes a little. When you&#8217;re familiar with the mapping app we&#8217;re going to use, it will take 5 minutes to design and publish a map. The first and second times will probably take longer. Many organisations publish a standard Google [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is a styled location map?</strong></p>
<p>This is where we stretch the definition of 5 minutes a little. When you&#8217;re familiar with the mapping app we&#8217;re going to use, it will take 5 minutes to design and publish a map. The first and second times will probably take longer.</p>
<p>Many organisations publish a standard Google location map alongside their contact details.</p>
<p>Google maps allow styling, but here we&#8217;re going to use the styling tool on Cloudmade because it&#8217;s marginally easier to edit and embed a basic map on your site.<span id="more-148"></span></p>
<p><strong>Why?</strong></p>
<p>&#8220;How to find us&#8221; pages often look rather similar, when they could be striking and distinctive. They could use your organisation&#8217;s colours or your website colour scheme, for example, and they could include local information which only your customers will find useful.</p>
<p><strong>How?</strong></p>
<p>First, let&#8217;s look at what we&#8217;re trying to achieve. The following is a styled map showing the centre of London and an arrow pointing at a location on Trafalgar Square.</p>
<div class="iframe-wrapper">
  <iframe src="http://maps.cloudmade.com/iframe?&amp;lat=51.50797764737426&amp;lng=-0.12802720069885254&amp;zoom=16&amp;styleId=22664&amp;marker=51.60797764737426,-0.12802720069885254" frameborder="0" style="height:380px;width:420px;">Please upgrade your browser</iframe>
</div>
<p>The colour scheme isn&#8217;t wonderful, but it illustrates how different you can make a map look and it&#8217;s easy to change the colours.</p>
<ul>
<li>First go to <a href="http://maps.cloudmade.com/editor">Cloudmade</a>, where we&#8217;ve set up a basic style you can build on. At the moment, you can&#8217;t link to it, so just use the search in the top right hand corner to find it.</li>
</ul>
<p style="padding-left: 30px;">Search for 23177:<br />
<img class="alignnone size-full wp-image-224" title="cloudmade1" src="http://www.typeclear.com/tips/wp-content/uploads/2010/09/cloudmade1.png" alt="" width="411" height="122" /></p>
<p style="padding-left: 30px;">
<ul>
<li>A small section of the map will appear. In the bottom right hand corner of the screen, click on Clone Style.</li>
</ul>
<ol><img class="alignnone size-full wp-image-195" title="cloudmade2" src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/cloudmade2.png" alt="" width="245" height="36" /></ol>
<ul>
<li>Now you should see a large version of the map on your screen. The URL will have changed to show your new style number &#8211; it will look something like this:</li>
</ul>
<p style="padding-left: 30px;"><strong><span style="color: #0000ff;">http://maps.cloudmade.com/editor/style/</span></strong><strong><span style="color: #993300;">your new style number</span></strong></p>
<p style="padding-left: 30px;"><strong><span style="color: #993300;"> </span></strong>The main roads are orange, minor roads are white, buildings are pink, water is blue. Points of interest such as tourist attractions, stations and supermarkets have been removed, but you can add them if you like.</p>
<p style="padding-left: 30px;">
<ul>
<li>To change an element, just click on it.</li>
</ul>
<p style="padding-left: 30px;">For example, to change the main road Piccadilly from orange to alarming violet, just click it and select the colour from the popup that appears. Note that this will change <span style="text-decoration: underline;">all</span> main roads to violet, not just Piccadilly.<img class="alignnone size-full wp-image-205" title="cloudmade7" src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/cloudmade71.png" alt="" width="420" height="120" /></p>
<ul>
<li>Click on the button marked &#8220;Refresh the map with your changes&#8221; to check everything&#8217;s going OK.</li>
</ul>
<p style="padding-left: 30px;">It&#8217;s possible to spend hours fiddling with a single map, and there&#8217;s nothing to stop you doing just that. But a quick first go round will help you get the feel of the app.</p>
<ul>
<li>When you&#8217;re satisfied, click &#8220;Save this style&#8221;. You&#8217;ll be asked to log in or sign up for a new account. Do the latter, unless you happen to have an account already.</li>
</ul>
<p><strong>Embedding the styled map on your site</strong></p>
<p>To embed the map in your page, you&#8217;ll need to gather the following:</p>
<p>1) Your map style number.</p>
<p>2) Your latitude and longitude. You can get this from <a href="http://itouchmap.com/latlong.html">itouch</a>. Just zoom into the Google map until you&#8217;ve located the exact position you want to map, and copy and paste the coordinates.</p>
<p>Now alter the following HTML snippet and paste it into the page you want to use to display your map.</p>
<ol><span style="color: #993300;">&lt;iframe width=&#8221;<span style="color: #000080;">420</span>&#8221; height=&#8221;<span style="color: #000080;">380</span>&#8221; frameborder=&#8221;0&#8243; scrolling=&#8221;no&#8221; marginheight=&#8221;0&#8243; marginwidth=&#8221;0&#8243; src=&#8221;http://maps.cloudmade.com/iframe?&amp;lat=<span style="color: #000080;">51.50797764737426</span>&amp;lng=<span style="color: #000080;">-0.1280272006988525</span><span style="color: #000080;">4</span>&amp;zoom=<span style="color: #000080;">16</span>&amp;styleId=<span style="color: #000080;">22664</span>&amp;marker=<span style="color: #000080;">51.60797764737426</span>,<span style="color: #000080;">-0.12802720069885254</span>&#8220;&gt;&lt;/iframe&gt;</span></ol>
<p>The code sets the size of the map you want to display, then the latitude and longitude, the zoom level, the style and finally the location of the marker. The example above puts the marker dead centre, but you can change this.<br />
And that&#8217;s it.</p>
<p>Any problems, let me know in comments.</p>
<p><strong>And finally&#8230;</strong></p>
<p>Cloudmade allows you to change dozens of map elements. Once you&#8217;ve made your basic custom map according to the process above, you might want to look at borders, additional data such as local transport, or creating your own custom markers.</p>
<p>All the information you need to do this is <a href="http://developers.cloudmade.com">on the Cloudmade site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/09/make-your-how-to-find-us-map-more-distinctive-with-fresh-colours-and-markers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make a swipe file or grab-bag of content examples</title>
		<link>http://www.typeclear.com/tips/2010/08/make-a-swipe-file-or-grab-bag-of-content-examples/</link>
		<comments>http://www.typeclear.com/tips/2010/08/make-a-swipe-file-or-grab-bag-of-content-examples/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 11:16:03 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[ideas]]></category>
		<category><![CDATA[swipe files]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=155</guid>
		<description><![CDATA[What&#8217;s a swipe file? Designers, developers and copywriters often keep a swipe file or grab-bag of content that&#8217;s impressed them and is likely to be useful in future. It might be an entire website, a code snippet, an article, or just a particularly striking headline. Swipe files are a good way to learn from others. [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.typeclear.com/tips/wp-content/uploads/2010/08/filing.png"><img class="size-full wp-image-162 alignright" title="filing" src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/filing.png" alt="Swipe file as filing cabinets" width="188" height="223" /></a>What&#8217;s a swipe file?</strong></p>
<p>Designers, developers and copywriters often keep a swipe file or grab-bag of content that&#8217;s impressed them and is likely to be useful in future.</p>
<p>It might be an entire website, a code snippet, an article, or just a particularly striking headline.<span id="more-155"></span></p>
<p>Swipe files are a good way to learn from others.</p>
<p>A typical swipe file might contain</p>
<ul>
<li>images</li>
<li>snippets of text</li>
<li>html, css or javascript code</li>
<li>entire pages, or screen shots</li>
</ul>
<p>Clicking on &#8216;File&#8217; in your browser then &#8216;Save as&#8217; has never been a satisfactory way to save content. A swipe file should be a system that saves interesting examples in the blink of an eye, then organises them for findability.</p>
<p><strong>What are the best available tools?</strong></p>
<p>The best solution is the solution that suits you, your working style and the content you frequently come across and need to keep.</p>
<p>Here are some suggestions:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/427/">Scrapbook</a> is a Firefox extension allowing you to save entire web pages and sections of web pages. You can drill down so it also captures the pages linked to. You can organise pages and snippets like bookmarks, but the really striking feature of Scrapbook is the ability to remove elements of the page before you save it.</li>
</ul>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1146/">Screengrab</a> is also a Firefox extension. It creates and saves a PNG or JPG image of what appears on the screen. You can save an entire page, even if it&#8217;s larger than the screen, or you can select an area by dragging the cursor across the element you want to capture.</li>
</ul>
<ul>
<li><a href="http://www.instapaper.com">Instapaper</a> is web-based bookmarking. After signing up, you can drag a &#8220;read later&#8221; button to your toolbar. Whenever you see an article or a page you want to come back to, you can simply click to read later. Useful features include folders allowing you to organise your bookmarks and RSS feeds that can be integrated with your news and blog reader.</li>
</ul>
<p>It can be useful to save snippets of code &#8211; HTML, for example, or CSS selectors. Although saving code is still a matter of copy and paste, there are numerous websites where you can upload and share snippets.</p>
<ul>
<li><a href="http://snippets.dzone.com/">DZone Snippets</a> is one example, and this article suggests <a href="http://designshack.co.uk/articles/css/27-utilities-for-saving-and-sharing-code-snippets">27 resources for saving code</a>.</li>
</ul>
<ul>
<li><a href="http://code.google.com/p/snippely/">Snippely</a> also comes recommended, though it&#8217;s probably best for hard core coders rather than casual swipers.</li>
</ul>
<p><strong>And finally&#8230;</strong></p>
<p>Your working style will determine your system. Bear in mind that snippets need to be findable months later. They also need to mean something when you&#8217;re just browsing them, so annotations are important (eg &#8220;great benefits-driven headline found at http://example.dom&#8221;).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/08/make-a-swipe-file-or-grab-bag-of-content-examples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focus your website with a list of the top three visitor tasks</title>
		<link>http://www.typeclear.com/tips/2010/08/focus-your-website-with-a-list-of-the-top-three-visitor-tasks/</link>
		<comments>http://www.typeclear.com/tips/2010/08/focus-your-website-with-a-list-of-the-top-three-visitor-tasks/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 19:17:04 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[tasks]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=134</guid>
		<description><![CDATA[What are visitor tasks? A list of the three most important tasks visitors want to achieve on your website will focus your content and help make your site more usable. Many web developers are now thinking in terms of tasks, but that&#8217;s mostly because evangelists such as Gerry McGovern have promoted the idea. Here are [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What are visitor tasks?</strong></p>
<p>A list of the three most important tasks visitors want to achieve on your website will focus your content and help make your site more usable.<span id="more-134"></span></p>
<p>Many web developers are now thinking in terms of tasks, but that&#8217;s mostly because evangelists such as Gerry McGovern have promoted the idea.</p>
<p>Here are three examples of typical user tasks</p>
<ul>
<li>Sign up and create a profile on a community site</li>
<li>Buy birthday presents for mail order delivery</li>
<li>Find staff telephone numbers</li>
</ul>
<p><strong>Why make a list?</strong></p>
<p>Organisations often treat their websites as a top-down broadcast. They carry on adding content without stopping to consider how people use the site. Others try to control what visitors do, how they behave, and what journeys they should take.</p>
<p>Thinking in terms of tasks is a very effective way of bringing attention back to the user. It guides decisions about what content to publish, how information should be presented, how to make transactions and searches easier, and what type of language to use.</p>
<p><strong>How?</strong></p>
<p>A simple and commonsense approach often works best, so start with a piece of paper and a pen!</p>
<p>Most website owners know instinctively what tasks people want to achieve on their sites, but sometimes confuse that with the tasks the organisation would like them to achieve. The key is to focus on the user.</p>
<p>Ask yourself</p>
<ul>
<li>What search terms people are using to find your site</li>
<li>What people have said about the site when you&#8217;ve met them in person</li>
<li>What your site search logs tell you</li>
<li>What tasks your competitors believe their visitors want to achieve.</li>
</ul>
<p>As well as sharpening new content, knowing the top tasks will help you put each page on your website through the wringer. In <a href="http://www.amazon.co.uk/Killer-Web-Content-Deliver-Service/dp/071367704X">Killer Web Content</a>, Gerry McGovern says &#8220;On every page of your website, you should ask these questions:</p>
<ul>
<li>What is the core task?</li>
<li>How does this page help my customer to complete that task?&#8221;</li>
</ul>
<p><strong>And finally&#8230;</strong></p>
<p>Your list of three tasks can be used as the basis for something much bigger &#8211; reviewing your existing content and governing the creation of new content.</p>
<p>It can also be the beginning of a comprehensive list of tasks. It&#8217;s rare for a site onlt to have three tasks, and many successful e-commerce sites have dozens of tasks on each page. So this is just an introduction to a project that will evolve as your site and your users evolve.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/08/focus-your-website-with-a-list-of-the-top-three-visitor-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve poorly performing pages on your site with an A/B test</title>
		<link>http://www.typeclear.com/tips/2010/08/improve-poorly-performing-pages-on-your-site-with-an-ab-test/</link>
		<comments>http://www.typeclear.com/tips/2010/08/improve-poorly-performing-pages-on-your-site-with-an-ab-test/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 06:31:06 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[a/b testing]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[multivariate testing]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=94</guid>
		<description><![CDATA[What? Let&#8217;s be honest. As website managers, we all have pieces of non-performing content on our sites. A/B testing is a quick and free way of testing small changes to your content to improve performance. It can be used to increase clickthroughs, subscriptions, sales, or any other action you&#8217;d like visitors to perform. Imagine that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What?</strong></p>
<p>Let&#8217;s be honest. As website managers, we all have pieces of non-performing content on our sites.</p>
<p>A/B testing is a quick and free way of testing small changes to your content to improve performance. It can be used to increase clickthroughs, subscriptions, sales, or any other action you&#8217;d like visitors to perform.<span id="more-94"></span></p>
<p>Imagine that you have a page with a button encouraging visitors to click through to a destination page. In an A/B test you show some website visitors the current Version A of your content, while others see an experimental Version B. If Version B persuade more people to go to the destination page, it can be kept and Version A can be deleted.</p>
<p><strong>How?</strong></p>
<p>It&#8217;s best to start A/B testing with Google Analytics, for reasons of speed, ease and cost.</p>
<p>First choose one element of a page you would like to improve. It might be a signup button, a call to action, a form, or some link text. Alter the element in any way you think likely to work better and save your file <strong>with a new name</strong>. Then upload it to your web server and check the appearance.</p>
<p>Next open <a href="http://www.google.com/websiteoptimizer">Google Website Optimizer</a>.</p>
<p>Click on &#8220;Create a new experiment&#8221; and select &#8220;A/B Experiment&#8221;. If you already have your two pieces of content ready to go, tick the checkbox to confirm you&#8217;ve followed the relevant steps and click on the button marked &#8220;Create &gt;&gt;&#8221;.</p>
<p>Choose a name for your test (the name can be anything you want), and copy in the URLs of the original page, the new experimental page, and the destination page.</p>
<p><a href="http://www.typeclear.com/tips/wp-content/uploads/2010/08/ab-testing1.jpg"></a><a href="http://www.typeclear.com/tips/wp-content/uploads/2010/08/ab-testing11.jpg"><img class="aligncenter size-full wp-image-113" title="ab-testing1" src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/ab-testing11.jpg" alt="" width="458" height="390" /></a></p>
<p>Google should then confirm that it&#8217;s found the relevant pages and you can press &#8216;Continue&#8217;.</p>
<p>You should then confirm that you will be making the changes to your code yourself.</p>
<p>On the next page, Google will display four snippets of code. Open pages A, B and C in a text editor, and copy and paste the code in as instructed. Upload all three files to the web server again.</p>
<p>Finally, click to check the code is working and start your experiment.</p>
<p><strong>What results can you expect?</strong></p>
<p>In around three hours, you&#8217;ll be able to start accessing your statistics. As more and more visitors are directed to content A or content B, the Google reports will change until you see a statistically significant difference in performance between your content.</p>
<p>The information is presented as a slider bar like this:</p>
<p><a href="http://www.typeclear.com/tips/wp-content/uploads/2010/08/report_ranges.png"><img class="aligncenter size-full wp-image-105" title="report_ranges" src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/report_ranges.png" alt="" width="353" height="119" /></a></p>
<p>When you&#8217;re happy that one piece of content is clearly outperforming the other, the experiment can end.</p>
<p><strong>And finally&#8230;</strong></p>
<p>Unsure about what you should be testing? Two excellent A/B test results sites are full of ideas, showing what other website owners and managers have tested recently.</p>
<p>Check out <a href="http://whichtestwon.com">which test won</a>, then surf over to <a href="http://www.abtests.com">abtests</a> for some inspiration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/08/improve-poorly-performing-pages-on-your-site-with-an-ab-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add some punch to your web prose by weeding out adjectives</title>
		<link>http://www.typeclear.com/tips/2010/08/add-some-punch-to-your-web-prose-by-weeding-out-adjectives/</link>
		<comments>http://www.typeclear.com/tips/2010/08/add-some-punch-to-your-web-prose-by-weeding-out-adjectives/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 08:33:03 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[marketing]]></category>
		<category><![CDATA[web writing]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=80</guid>
		<description><![CDATA[Why? Online or off, readers cling to the concrete. They like concrete nouns and verbs, but adjectives send them to sleep. Adjectives reduce the impact of nouns and verbs because they weaken facts, force people to think, and can make the reader wonder what you&#8217;re trying to hide. A lot of experienced writers have covered [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Why?</strong></p>
<p>Online or off, readers cling to the concrete. They like concrete nouns and verbs, but adjectives send them to sleep.</p>
<p>Adjectives reduce the impact of nouns and verbs because they weaken facts, force people to think, and can make the reader wonder what you&#8217;re trying to hide.<span id="more-80"></span></p>
<p>A lot of experienced writers have covered this ground already, but Geordie poet Basil Bunting said it well when he urged writers to &#8220;fear adjectives; they bleed nouns.&#8221;</p>
<p>Five minutes weeding out adjectives will give your written content greater strength and keep your visitors reading.</p>
<p><strong>How?</strong></p>
<p>If you&#8217;re an autonomous website owner or manager, tweaking your prose is easy.</p>
<p>Marketing content is famous for its adjectives, so your About Us page is a good place to start.</p>
<p>Next, look at content describing what your organisation does. Product information tends to be plain and factual, but service descriptions are often puffed up with redundant adjectives.</p>
<p>Keep your eyes skinned for nouns pretending to be adjectives. &#8216;Strategic  logistics services&#8217; is two adjectives modifying the noun &#8216;services&#8217;.</p>
<p>Finally, go through the headlines at the top of individual pages, in sub-topics and in email subject lines. If the first word is an adjective, replace it with an information-carrying word such as a noun or verb.</p>
<p>There are limits to this pruning. Value propositions &#8211; those few words describing your promised benefits and target audience &#8211; express the DNA of a business and will take much longer than five minutes to revise. So keep things simple and limit your ambitions.</p>
<p>And site managers in large organisations may meet  resistance. In a mature industry packed with similar companies,  marketers use adjectives as a poor substitute for real product or  service differentiation. So an IT firm might not only provide  infrastructure, but <em>vital</em> infrastructure. Managers find it hard to surrender these adjectives-as-differentiators.</p>
<p>If you run a style guide, include some general advice about using adjectives and keeping your prose strong enough for the mind to vault across effortlessly.</p>
<p><strong>And finally&#8230;</strong></p>
<p>Avoiding adjectives is a habit and takes time to learn. It even takes an effort for experienced writers. But nowadays sophisticated and impatient readers want fewer opinions and more facts. Cutting out modifiers like adjectives is one way to deliver what your visitors want.</p>
<blockquote><p>Typeclear creates content for websites, email campaigns, e-learning, intranets and mobile. <a href="../../">Contact us</a> to find out how we can help you take simple steps to better content.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/08/add-some-punch-to-your-web-prose-by-weeding-out-adjectives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minify your CSS to speed up your website</title>
		<link>http://www.typeclear.com/tips/2010/08/minify-css-speed-up-your-website/</link>
		<comments>http://www.typeclear.com/tips/2010/08/minify-css-speed-up-your-website/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 05:02:20 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[minification]]></category>
		<category><![CDATA[speedy websites]]></category>

		<guid isPermaLink="false">http://www.typeclear.com/tips/?p=33</guid>
		<description><![CDATA[Why? Web users are incredibly impatient nowadays, and they abandon slow-loading sites in a matter of seconds. To put it bluntly, when there&#8217;s a billion enticing sites just a click away, slow pages are irritating and boring. In April 2010, Google also confirmed that it was starting to take loading speed into account in search [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Why?</strong></p>
<p>Web users are incredibly impatient nowadays, and they abandon slow-loading sites in a matter of seconds. To put it bluntly, when there&#8217;s a billion enticing sites just a click away, slow pages are irritating and boring.<span id="more-33"></span></p>
<p>In April 2010, Google also <a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html">confirmed that it was starting to take loading speed into account</a> in search rankings for some pages. So in future, speed may be important for search engine optimisation.</p>
<p>By reducing file size (minification), you can make your website load more quickly. This will please Google and keep your visitors happy and engaged.</p>
<p><strong>What&#8217;s minification?</strong></p>
<p>Most websites nowadays use CSS files to control the look of pages. CSS minification simply reduces the size of those files by stripping out unnecessary white space and comments.</p>
<p><strong>How to minify your CSS in five minutes<br />
</strong></p>
<p>First download and make a backup copy of your CSS file which you can fall back on if you make a mistake.</p>
<p>Next, open up the file in a text editor such as WordPad, and surf over to one of the following sites offering free minification:</p>
<ul>
<li><a href="http://www.minifycss.com/css-compressor/">Minify CSS</a> has all sorts of options ranging from heavy compression to light.</li>
<li><a href="http://www.ventio.se/tools/minify-css/">Ventio</a> offers a quick and basic minifier.</li>
<li><a href="http://developer.yahoo.com/yui/compressor/">Yahoo&#8217;s YUI compressor</a> has a great reputation with the experts.</li>
</ul>
<p>Select all the text in your file, copy it and then paste it into the box provided.</p>
<p>Once the text has been minified, copy and paste it back in to the CSS file then upload it again to your website.</p>
<p>Finally, don&#8217;t forget to test a few pages that depend on the minified CSS.</p>
<p><strong>What result can you expect?</strong></p>
<p>A minifier strips out as much white space as possible, and often removes comments too. The CSS file will be smaller, hopefully more attractive to Google, and will help accelerate loading times for your visitors.</p>
<p>The following shows CSS with no compression:</p>
<p><img src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/normal-css.png" alt="Uncompressed CSS with a lot of white space" width="425" height="241" /></p>
<p>And the same code minified looks like this:</p>
<p><img src="http://www.typeclear.com/tips/wp-content/uploads/2010/08/minified-css.png" alt="Minified compressed CSS, white space removed" width="425" height="241" /><strong> </strong></p>
<p><strong>And finally&#8230;</strong></p>
<p>So I&#8217;ve minified my CSS. How the heck am I supposed to read and edit it in future?</p>
<p>Easy! Whenever you need to edit the CSS in future, you can beautify it again, using <a href="http://www.digitalcoding.com/tools/css-beautifier.html">CSS Beautifier</a>.</p>
<blockquote>
<ul>
<li>Typeclear creates content for websites, email campaigns, e-learning, intranets and mobile. <a href="http://www.typeclear.com">Get in touch</a> to find out how we can help you take simple steps to better content.</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.typeclear.com/tips/2010/08/minify-css-speed-up-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

