<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Silktide blog</title>
	
	<link>http://blog.silktide.com</link>
	<description>Get more from your website</description>
	<lastBuildDate>Mon, 06 Sep 2010 15:19:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/silktidestudios" /><feedburner:info uri="silktidestudios" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>It’s important to specify the width and height of an image in HTML</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/VlRtN0oKDHA/</link>
		<comments>http://blog.silktide.com/2010/09/its-important-to-specify-the-width-and-height-of-an-image-in-html/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 15:19:41 +0000</pubDate>
		<dc:creator>David Ball</dc:creator>
				<category><![CDATA[Improving your website]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=880</guid>
		<description><![CDATA[When you&#8217;re adding an image into your website it isn&#8217;t mandatory to specify the width and height of the image. You could write the image code so that it looks like this: &#60;img src="logo.jpg" alt="logo"&#62; Leaving these out will still allow the image to be shown in your web browser, and you might think that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.silktide.com/wp-content/uploads/2010/09/iStock_000002447573Small.jpg"><img class="aligncenter size-full wp-image-882" title="iStock_000002447573Small" src="http://blog.silktide.com/wp-content/uploads/2010/09/iStock_000002447573Small.jpg" alt="Child measuring the wall" width="500" height="333" /></a></p>
<p>When you&#8217;re adding an image into your website it isn&#8217;t mandatory to specify the width and height of the image. You could write the image code so that it looks like this:</p>
<pre>&lt;img src="logo.jpg" alt="logo"&gt;</pre>
<p>Leaving these out will still allow the image to be shown in your web browser, and you might think that this is absolutely fine &#8211; but it&#8217;s not.</p>
<p><span id="more-880"></span></p>
<p>When your web browser is displaying the page it will see that you want to display and image, and start to download this image. Images usually take some time to download. Most web browsers  display the page as it is loading, filling in the images as they load later. The problem is, if you haven&#8217;t specified a width and height for the image in your HTML, the web browser won&#8217;t know how much of a gap to leave for the image, and so when it does finally load, it might have to shift all the items on the page around a bit. This is what is called a “repaint” as the web browser has to paint the screen again, this time with the image in place.</p>
<p>However if we do specify a width and height, like so:</p>
<pre>&lt;img src="logo.jpg" width="340" height="200" alt="logo"&gt;</pre>
<p>The web browser knows exactly how big the image is, so can continue to display the rest of the page knowing how big the image will be, so that it can slot it in later when it has loaded. This is much more efficient, the page will load faster, and you won&#8217;t notice the elements on the page jumping around when the image loads.</p>
<h3>Make sure the width and height are correct</h3>
<p>When you&#8217;re adding the image HTML to a page, it&#8217;s possible to change the values for the width and height of the image to make the image appear larger or smaller than the file you&#8217;re linking to. It&#8217;s common that websites do this when they want to show a thumbnail of an image, and you can click to view the full sized image.</p>
<h3>This is bad for two reasons:</h3>
<ol>
<li>It means you&#8217;re forcing the user to download a much larger image when they don&#8217;t need to. You might be using a whopping 800kb image as a tiny thumbnail, where actually a separate image of 20kb might actually be all that&#8217;s needed. It will take longer for the larger file to download on your users computer, and will use up more of their bandwidth for no reason.</li>
<li> Stretching the file means that your web browser has to do some extra work. It has to download the full image, and then work out what it looks like at the size you&#8217;ve specified. This means that it needs to “repaint” the screen again, this time displaying the reprocessed image at the width and height you&#8217;ve set.</li>
</ol>
<p>Always set the width and height of the image in the HTML to be the actual width and height of the image file.</p>
<h3>What does Nibbler look for?</h3>
<p>In our site checking tool <a href=" http://nibbler.silktide.com/">Nibbler</a> we look for all images on the webpage you&#8217;re testing, and check to see if the width and height have been set. If there&#8217;s no width or height, Nibbler will mark you down.</p>
<p>If a width and height have been set, Nibbler will download the image and check that you&#8217;ve specified the correct width and height of the image. If it finds that the width and height are inaccurate it will mark you down.</p>
<h3>Conclusion</h3>
<p>Including accurate information about an images width and height will make sure that web browsers have all the information they need to accurately display the image. Providing incorrect or no information will make your webpage slower to load, and might require your users to use more bandwidth than necessary.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/VlRtN0oKDHA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/09/its-important-to-specify-the-width-and-height-of-an-image-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/09/its-important-to-specify-the-width-and-height-of-an-image-in-html/</feedburner:origLink></item>
		<item>
		<title>Why it’s important to use meta tags on each page</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/38m9SOl_BKk/</link>
		<comments>http://blog.silktide.com/2010/08/why-its-important-to-use-meta-tags-on-each-page/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 12:03:00 +0000</pubDate>
		<dc:creator>David Ball</dc:creator>
				<category><![CDATA[Improving your website]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=867</guid>
		<description><![CDATA[In this article I&#8217;ll explain what meta tags are, focussing on meta description and keywords. I&#8217;ll explain why it&#8217;s important to add these to every page, but why we shouldn&#8217;t rely on them as a magical solution for getting to the top of Google. What are meta tags? Meta tags are information inserted into the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.silktide.com/wp-content/uploads/2010/08/iStock_000003045800Small.jpg"><img class="aligncenter size-full wp-image-872" title="iStock_000003045800Small" src="http://blog.silktide.com/wp-content/uploads/2010/08/iStock_000003045800Small.jpg" alt="Meta description and keyword tags from a website" width="500" height="375" /></a></p>
<p>In this article I&#8217;ll explain what meta tags are, focussing on meta description and keywords. I&#8217;ll explain why it&#8217;s important to add these to every page, but why we shouldn&#8217;t rely on them as a magical solution for getting to the top of Google.</p>
<p><span id="more-867"></span></p>
<h3>What are meta tags?</h3>
<p>Meta tags are information inserted into the &#8220;head&#8221; area of your web pages. This is information which is hidden to human visitors, instead it communicates information to search engines about the contents of the page.</p>
<p>Meta tags are usually written out in the code for the page like this:</p>
<pre>&lt;meta name="keywords" content="SiteRay, web testing, website testing, accessibility, SEO" /&gt;</pre>
<pre>&lt;meta name="description" content="SiteRay is a tool for testing and reporting on websites." /&gt;</pre>
<p>If you&#8217;re not used to putting code directly into your website then don&#8217;t worry about the code above. If you&#8217;re using a CMS, blog or forum, most of these have ways for you to enter meta tags without having to directly edit the code.</p>
<p>There are many more types of meta tags than written above, but in this article we&#8217;ll just discuss meta description and keywords. Both of these tags will describe the page in some way. I&#8217;ll describe each of these in this article.</p>
<h3>Using a meta description</h3>
<p>When a user searches for your site (or product) in a search engine, they will see a list of resulting matches. Here&#8217;s an example of a result on Google for the term “SiteRay”:</p>
<p><a href="http://blog.silktide.com/wp-content/uploads/2010/08/siteray-in-google.jpg"><img class="aligncenter size-full wp-image-868" title="siteray-in-google" src="http://blog.silktide.com/wp-content/uploads/2010/08/siteray-in-google.jpg" alt="Siteray - test, compare and improve websites. Siteray is a tool for testing and reporting on websites: marketing, accessibility, spelling, design and more." width="513" height="81" /></a>The first line is the page&#8217;s name (taken from the &lt;title&gt; tag on the page), this is also a link to the page. After that comes a description of the page, this is most likely the description that you set in your “description” meta tag (but not always, see below). This is the information that users will read before they even get to your page, which is why it&#8217;s so important. Make sure this text tells the user everything they need to know about the page, and be concise as possible because search engines may clip it down. But if you don&#8217;t put enough words in, they may pad it out by taking wording from elsewhere on your page. Generally 200 – 250 characters is about right.</p>
<h3>Google doesn&#8217;t always show what you want it to</h3>
<p>Unfortunately whenever you use a meta description on a page, it&#8217;s not guaranteed that this is what search engines will display when presenting their results. The entry for your page might contain the full text you specified in your meta description, or it might contain part of it, or it might contain none of it.</p>
<p>Google will try and show you a description which is related to the search term that you used. So lets see the example that we used above again this time searching for “<em>SiteRay enhance any website</em>”:</p>
<p><a href="http://blog.silktide.com/wp-content/uploads/2010/08/siteray-in-google-enhance.jpg"><img class="aligncenter size-full wp-image-869" title="siteray-in-google-enhance" src="http://blog.silktide.com/wp-content/uploads/2010/08/siteray-in-google-enhance.jpg" alt="Siteray - test, compare and improve your websites. Siteray is a tool for testing and reporting on websites: marketing, accessibility ... Enhance any website by following detailed independent recommendations..." width="536" height="75" /></a></p>
<p>In the search term I&#8217;d added some words which were in the page content, but not in the meta description. So what has happened is Google have displayed the first part of the meta description, then cut it off with “&#8230;” and then finished the description by taking some of the page content, and showing where my search terms appear in the content of the page.</p>
<p>So Google won&#8217;t always show your meta description exactly, as it will depend on what the user searches for and the content on your page. But it&#8217;s still very important to use a meta description as default text.</p>
<h3>What happens if we don&#8217;t use a meta description?</h3>
<p>If you don&#8217;t use a meta description on your page, search engines will have to make up the description that they show in their results. To do this they will take some page content, which might not be relevant to what a user wants to see. The content might be overly verbose, and be cut short before it gets to the interesting bit, or it might just be totally irrelevant. The thing is, you aren&#8217;t in control.</p>
<h3>Why do we need a unique meta description on every page?</h3>
<p>It&#8217;s important to put meta description on each page of your website, because each of your pages are important (if they aren&#8217;t important, why do you need that page?). When a user comes to your site from a search engine, they&#8217;re not always going to come straight to the homepage. Search engines can display any of your pages in their search results, and will try and show the page that best matches what you searched for.</p>
<p>Let me give an example, say you&#8217;re a company selling multiple products. Each of your products has a separate page on your website. When a user searches, they&#8217;re often more likely to be looking for your product rather than searching for your company name. Which means search engines will try and take them directly to the product on your site, bypassing your website homepage which might not contain any information they want to see right now.</p>
<p>So it&#8217;s important to set a unique meta description for each page. This way, users will see it in the search results, and read a small description of that exact page, and they can decide if it&#8217;s what they want to look at.</p>
<p>So lets give an example of how this could be done badly. If you&#8217;re a company selling products, lets say cakes. All of your product pages might have the exact same meta description as the homepage, which says:</p>
<p style="padding-left: 30px;"><em>“A company based in Derbyshire, UK, we have been making cakes since 1895 and have a wide variety.”</em></p>
<p>A user might be specifically looking for wedding cakes and has searched Google for “wedding cakes”. Your page on wedding cakes has come up (not the homepage), but the description of your “wedding cake” page is the same as your homepage. At this stage the user doesn&#8217;t need to know you&#8217;ve been around since 1895, and they&#8217;re not interested in your variety, they just want to know about wedding cakes.</p>
<p>So instead of visiting your site, they visit the one below where the description is:</p>
<p style="padding-left: 30px;"><em>“We make lovely wedding cakes. Here are some photos and prices of our best examples.”</em></p>
<p>A useful summary of each page can be very important when users are coming from to your site from a search engine.</p>
<h3>Using meta keywords</h3>
<p>The meta keywords tag allows you to provide additional words for search engines to use to better display their results&#8230; in theory. A few years ago this was true, and the keywords were very important in helping search engines when ranking sites.</p>
<p>Unfortunately major search engines now ignore the keywords tag. This includes Google and Bing. <a href="http://searchenginewatch.com/2165061">There&#8217;s a great article here about meta keywords</a> and how they haven&#8217;t been used by search engines for quite a long time. So it&#8217;s surprising to me as a web developer that we still get calls from clients or third party SEO companies who still put a lot of importance on adding meta keywords to pages, thinking that it will improve their ranking in Google. Unfortunately adding meta keywords just won&#8217;t improve your Google ranking at all.</p>
<p>Some search engines do still use meta keywords to affect their rankings. As of June 2010, <a href="http://www.hobo-web.co.uk/seo-blog/index.php/meta-keywords">Yahoo! is still using keywords to affect its rankings</a>.</p>
<p>If you still want to add keywords, then consider the most important words to that page. These should be words that you expect people will be typing into search engines to find this page. If this page relates to a product, the name of the product is probably the most important keyword, followed by its important qualities or features.</p>
<h3>Meta tags are not a magic solution</h3>
<p>As we&#8217;ve seen, meta tags aren&#8217;t the magical solution to getting you higher on search engines. Meta keywords are mostly ignored, and description is sometimes overwritten depending on what the user is searching for.<br />
If you&#8217;re really interested in search engine optimisation, it&#8217;s more worthwhile these days to look at the content of your page rather than the meta tags.</p>
<p>But getting people to your site from Google&#8217;s search results page is still very important, which is why it&#8217;s still very important to set a descriptive and helpful meta description tag.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/38m9SOl_BKk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/08/why-its-important-to-use-meta-tags-on-each-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/08/why-its-important-to-use-meta-tags-on-each-page/</feedburner:origLink></item>
		<item>
		<title>How to use “ALT text” correctly on your website’s images</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/7HDg-Rbvhv8/</link>
		<comments>http://blog.silktide.com/2010/08/how-to-use-alt-text-correctly-on-your-websites-images/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 13:35:49 +0000</pubDate>
		<dc:creator>David Ball</dc:creator>
				<category><![CDATA[Improving your website]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[alt text]]></category>
		<category><![CDATA[screen reader]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=851</guid>
		<description><![CDATA[If you use any automated tools to test your website (Nibbler,  SiteRay, W3C validator etc), many of them will pick up errors if you haven&#8217;t specified any “ALT text” on your images. “ALT text” is an attribute which should be added to any visual item on your web page. It&#8217;s mainly used on images to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.silktide.com/wp-content/uploads/2010/08/ist2_570929-tons-of-photos1.jpg"></a></p>
<p><a href="http://blog.silktide.com/wp-content/uploads/2010/08/iStock_000000570929Small.jpg"><img class="alignnone size-full wp-image-861" title="iStock_000000570929Small" src="http://blog.silktide.com/wp-content/uploads/2010/08/iStock_000000570929Small.jpg" alt="Lots of photos" width="500" height="333" /></a></p>
<p>If you use any automated tools to test your website (<a title="Nibbler, a free tool for analytics websites" href="http://nibbler.silktide.com/">Nibbler</a>,  <a title="Silktide Siteray, a tool for testing and reporting on websites" href="http://www.silktide.com/siteray">SiteRay</a>, <a href="http://validator.w3.org/">W3C validator</a> etc), many of them will pick up errors if you haven&#8217;t specified any “ALT text” on your images. “ALT text” is an attribute which should be added to any visual item on your web page. It&#8217;s mainly used on images to provide a text alternative to the graphical image, as not everyone can view an image. Providing an alternative allows all users to access the same information, whether they can see an image or not.</p>
<p><span id="more-851"></span></p>
<p>Here&#8217;s an example of some image HTML including some ALT text:</p>
<pre style="padding-left: 30px;">&lt;img src="logo.jpg" width="300" height="200" <strong>alt="Silktide Logo" /</strong>&gt;</pre>
<p>If you&#8217;re using a Content Management System then you probably won&#8217;t have to write the HTML like above when adding images, but you should still be able to insert ALT text into a field provided.</p>
<p>You might think that now you know how to add ALT text into a page that it&#8217;s simple, but it&#8217;s not just as simple as typing text into a field. To write the best ALT text, you have to consider you audience, and what is the purpose of that image on the page.</p>
<h3>Providing alternative image text to people with disabilities</h3>
<p>Some of the people using your website might be blind, colour blind, or partially-sighted. Providing an alternative text version of the image allows you to describe the image to these users so that they&#8217;re not missing out any important information. In many countries it&#8217;s actually law to provide these users access to the same content, and if you don&#8217;t account for this you could be discriminating against them.</p>
<p>Blind users will navigate the internet using a <a title="Wikipedia page about screen readers" href="http://en.wikipedia.org/wiki/Screen_reader">screen reader</a>, this will speak out the text on the page. The screen reader will read out the ALT text of the image on your page, so you should make sure it describes the purpose of the image as best as possible.</p>
<h3>For text-only web browsers and search engines</h3>
<p>A text-only web browser is exactly what it sounds like, it&#8217;s a web browser which only views text. All images and styling will be removed, displaying the web page as a list of words and paragraphs of text. People who view websites using these browsers might be doing it for accessibility reasons, viewing it on an older machine or mobile device, or through personal choice.</p>
<p>Using a text-only browser also allows you to see how a search engine will view your website. Search engines like Google will view your website&#8217;s text and care very little about the images you use. Instead of viewing the images they will read the ALT text instead, and use this text to rank the pages in its search engine.</p>
<h3>Hover-over</h3>
<p>Some browsers will display the ALT text when you move your mouse cursor over the image. Remember this is another place where the ALT text might be shown, so make sure it&#8217;s concise and related to the image.</p>
<h3>Should you use ALT text for decorative images?</h3>
<p>Some images might exist only on your page for decorative purposes. Their function on the page might be purely for decoration, and don&#8217;t need to communicate anything. If this is the case, you don&#8217;t need to provide any alternative text for that image.</p>
<p>You do still need to provide an ALT tag however, but make sure it&#8217;s empty, for example alt=&#8221;". Doing this will mean that screen readers will completely ignore this image, and they won&#8217;t even announce its presence on the page.</p>
<p>It&#8217;s definitely better to include an empty ALT tag than to leave the tag out altogether. If you don&#8217;t specify an ALT text (even a blank one) most screen readers will instead read out the filename, which isn&#8217;t important information.</p>
<h3>Should you use ALT text for bullets?</h3>
<p>You might use images on your page to look like bullet points. These should be treated the same as decorative images, and have an empty ALT tag, e.g. alt=&#8221;". If you have a list of bullets which each have the ALT text “square red bullet”, people using screen readers or text-only browsers will see the words “square red bullet” preceding every line of text in the list. This is unnecessary, so just leave the ALT text blank.</p>
<p>Ideally if you want to use a graphical bullet, this should be applied in your stylesheet, and shouldn&#8217;t be an image in the page.</p>
<h3>Images containing text</h3>
<p>Sometimes you will want to use an image to display some text. Possible reasons for this might be that you want to include a header in a font which isn&#8217;t a web font. In this case make sure your ALT text repeats the text in the image word-for-word.</p>
<p>For example the following is an image that contains text:</p>
<pre style="padding-left: 30px;">&lt;img src="tagline.gif" width="300" height="20" <strong>alt="Putting your websites to the test"</strong> /&gt;</pre>
<p>Don&#8217;t embellish the ALT text or try to add any additional description, as this is confusing and pointless for end users. For example don&#8217;t ever write into your ALT text: &#8220;Putting your websites to the test, written in blue in a serif font&#8221;.</p>
<p>Make sure the text in your ALT text matches the text in the image exactly. Otherwise this additional unnecessary information will be given to people using screen readers or text-only browsers.</p>
<h3>Charts, graphs, and other images which contain text</h3>
<p>Where possible, you should have all your text present on the webpage, and not in an image. However there might be times when you need to use a chart or graph which is difficult to convert into paragraphs of text. You need to write all of the text contained in the images into the ALT text.</p>
<p>There might be times when you want to display an image on your website which contains far more text than you can reasonably display in the ALT tag. If so, use the “LONGDESC” tag, which was created for this reason. LONGDESC is a link to another page that contains the text of the image. The page doesn&#8217;t need to be styled, as it&#8217;s only text-browsers and screen readers that will access it.</p>
<h3>Using images for navigation</h3>
<p>Sometimes you might want to use an image for navigation, so clicking the image will take your users to another page. Like I mentioned above, if the image has any text on, the ALT text should match that text exactly. But if the image doesn&#8217;t contain text, the ALT text should describe where the link will take you. For example:</p>
<pre style="padding-left: 30px;">&lt;a href="/downloads/help.pdf"&gt;</pre>
<pre style="padding-left: 60px;">&lt;img src="download_icon.gif" width="100" height="80" alt="Download help document" /&gt;</pre>
<pre style="padding-left: 30px;">&lt;/a&gt;</pre>
<h3>Conclusion &#8211; Don&#8217;t just write anything into the ALT text</h3>
<p>There is a skill to writing the correct alternative to an image. Online automated website testers (<a title="Nibbler, a free tool for analytics websites" href="http://nibbler.silktide.com/">Nibbler</a>, <a title="Silktide Siteray, a tool for testing and reporting on websites" href="http://www.silktide.com/siteray">SiteRay</a>, <a href="http://validator.w3.org/">W3C validator</a> etc) can only detect if you&#8217;ve specified an ALT text or not, but they can&#8217;t tell if the wording you&#8217;ve used in appropriate. Keep your wording concise, and think about the purpose of that image on the page rather than just a description of the image.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/7HDg-Rbvhv8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/08/how-to-use-alt-text-correctly-on-your-websites-images/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/08/how-to-use-alt-text-correctly-on-your-websites-images/</feedburner:origLink></item>
		<item>
		<title>Why you need a custom 404 error page</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/WedMulCRL2g/</link>
		<comments>http://blog.silktide.com/2010/08/why-you-need-a-custom-404-error-page/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 09:11:25 +0000</pubDate>
		<dc:creator>David Ball</dc:creator>
				<category><![CDATA[Improving your website]]></category>
		<category><![CDATA[404 error]]></category>
		<category><![CDATA[website development]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=834</guid>
		<description><![CDATA[If you visit a page of a website that has been moved, deleted or renamed, you&#8217;ll see an error telling you that there&#8217;s no page at that address. The technical name for this is a ‘404’ error, and they’re very important to handle correctly. If your website doesn’t have a custom 404 error page, users [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.silktide.com/wp-content/uploads/2010/08/iStock_000010871976Small22.jpg"><img class="alignnone size-full wp-image-842" title="iStock_000010871976Small2" src="http://blog.silktide.com/wp-content/uploads/2010/08/iStock_000010871976Small22.jpg" alt="404 error not found" width="500" height="333" /></a></p>
<p>If you visit a page of a website that has been moved, deleted or renamed, you&#8217;ll see an error telling you that there&#8217;s no page at that address. The technical name for this is a ‘404’ error, and they’re very important to handle correctly.</p>
<p><span id="more-834"></span>If your website doesn’t have a custom 404 error page, users will see a default error screen like this:</p>
<div id="attachment_835" class="wp-caption aligncenter" style="width: 510px"><a href="http://blog.silktide.com/wp-content/uploads/2010/07/default404.gif"><img class="size-full wp-image-835" title="default404" src="http://blog.silktide.com/wp-content/uploads/2010/07/default404.gif" alt="a default 404 page" width="500" height="375" /></a><p class="wp-caption-text">The default 404 error message</p></div>
<h3>What can cause a 404 error page to show?</h3>
<p>These are the most common reasons why a visitor will see a 404 error page:</p>
<ul>
<li>The URL of the page has been changed –This could be caused by the name of the page being changed, and the URL is updated to match. For example www.silktide.com/latest-news might change to www.silktide.com/news. If there are many websites linking to the old page, it might be some time before they update the URL, meaning that visitors might follow the link which now takes them to a 404 error page.</li>
<li>The link you&#8217;re following is misspelt – A link on your website might have been misspelled when it was created, meaning that it&#8217;s taking you to a page which doesn&#8217;t actually exist.</li>
<li>The page has been deleted – Pages can be deleted, but sometimes a site might still have lots of links to that page which haven&#8217;t yet been deleted.</li>
<li>The website is offline – The website is currently down so the page can&#8217;t be displayed.</li>
<li>The website has been deleted – The website isn&#8217;t around anymore. The link you&#8217;ve followed might be from a site which still thinks the website exists. If the visitor sees a 404 error message, they might also assume this is the case for all of the reasons above, so it&#8217;s likely that they&#8217;ll never try to visit this website ever again.</li>
</ul>
<h3>Why is the default error bad?</h3>
<p>If the user sees the error above, it&#8217;s bad in many ways.</p>
<ul>
<li>Too much technical jargon &#8211; It doesn&#8217;t really mean anything to the average internet user. There&#8217;s a lot of wording which uses technical jargon, and it&#8217;s not very helpful for non-technical users.</li>
<li>It&#8217;s not branded – If you&#8217;re familiar with the lovely colours and design of the site you&#8217;re viewing, and then suddenly you&#8217;re faced with a nasty looking plain white page with black text, you might think that you&#8217;ve gone to another site. This makes your visitor feel uncomfortable and unsure where they are.</li>
<li>There is nowhere else to go – After your visitor clicks the link that takes them to this 404 page, there are no links for them to follow other than click “back” in their browser.</li>
</ul>
<p>The last two are especially bad when you consider that someone might be following a link from another website, and they get this error. This is the first page they see of your site and it&#8217;s an error page. They might assume the entire site is down, where actually the only problem is that a page has been renamed.</p>
<h3>Customise your 404 error pages</h3>
<p>It&#8217;s possible to customise the 404 error pages that people will see on your website. This allows you to make the page look exactly like any other page of your site, but display a clear message to your visitors telling them that the page they were looking for has not been found.</p>
<h3>Give people what they expect to see</h3>
<p>With a custom 404 error page you can make the page look exactly like your website, so that there&#8217;s definitely no confusion that they might have gone to the wrong website, or that your site might be down when it isn&#8217;t.</p>
<p>Keeping the layout of your page the same as other pages on your site will also give users the ability to see your menu and link through to other pages on your site. They might even be able to find what they were originally looking for. Or they could link straight to your homepage and start navigating your site from there.</p>
<h3>Explaining the problem</h3>
<p>A 404 error page allows you to communicate to your user that the page they wanted can&#8217;t be found. Don&#8217;t be embarrassed or try to hide that fact.</p>
<p>Some websites don&#8217;t have a 404 error page at all, instead they redirect the visitor straight to the homepage if the website can&#8217;t find the page that the visitor wants to see. This is bad practice because the visitor might not have noticed a redirect happening, and assume that the homepage is their intended destination.</p>
<p>For example a visitor is following a link from an external site which takes them to a really interesting article on our website, e.g. www.silktide.com/news/really-interesting-article. This page has been renamed lately so the link they&#8217;re using is incorrect. Instead of seeing a 404 error page, they are redirected to the homepage www.silktide.com. The visitor was expecting to see a really interesting news article, but instead sees the homepage, which doesn&#8217;t contain the information they want to see right now. They immediately leave the site.</p>
<p>Whereas if they see a 404 error page explaining that the article might have been renamed or moved, they might stick around on the site and try to figure out where it is.</p>
<p>It&#8217;s best to clearly explain to people who arrive to a 404 error page that they&#8217;re on the wrong page, (be polite and apologise too!) just so that there is definitely no confusion. A simple example is: “Sorry, it looks like we couldn&#8217;t find the page you were looking for”.</p>
<h3>Help people find the information they want</h3>
<p>If a visitor has come to a 404 error page on your site, it means they were trying to find something on your site but weren&#8217;t able to find the page they were looking for.</p>
<p>You might be able to help people find the correct page they were looking for by listing the common sections, or showing them your most popular pages. Some websites even use the 404 page as another place to push their products onto visitors. “We couldn&#8217;t find the page you were looking for&#8230; so why not have a look at these other items instead&#8230;”</p>
<h3>Best examples</h3>
<p><a title="Examples of 404 error pages" href="http://sixrevisions.com/design-showcase-inspiration/beautiful-and-useful-404-error-pages-for-inspiration">Here is a page with some great examples of custom 404 Error Pages</a>. You will notice that some of them look like the full website, while some of them are a very simplified design. All of them continue the look and feel of the website they represent, so that the visitor won&#8217;t be too surprised or confused when they see this page.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/WedMulCRL2g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/08/why-you-need-a-custom-404-error-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/08/why-you-need-a-custom-404-error-page/</feedburner:origLink></item>
		<item>
		<title>“I want exactly that, but different” and other horror stories</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/E2yLyvkvPgg/</link>
		<comments>http://blog.silktide.com/2010/01/i-want-exactly-that-but-different-and-other-horror-stories/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 13:56:35 +0000</pubDate>
		<dc:creator>Oliver Emberton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=797</guid>
		<description><![CDATA[A collection of anonymously contributed client horror stories from web designers (none of these are ours, we promise!) “That other website is stealing our business. Can you make it so that when someone types in their address they come to our site?” Me: “So what’s your budget?” Client: “Well we are well known amongst all [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.silktide.com/wp-content/uploads/2010/01/Hands-in-fire.jpg"><img class="alignnone size-full wp-image-815" title="Save us from the fire" src="http://blog.silktide.com/wp-content/uploads/2010/01/Hands-in-fire.jpg" alt="" width="500" height="425" /></a></p>
<p class="largetext">A collection of anonymously contributed client horror stories from web designers (none of these are ours, we promise!)</p>
<p><span id="more-797"></span></p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“That other website is stealing our business. Can you make it so that when someone types in their address they come to our site?”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" /><strong>Me:</strong> “So what’s your budget?”</p>
<p><strong>Client:</strong> “Well we are well known amongst all the Russian billionaires so there is great potential for you to get your name out there by doing this project for free. Also I am a direct descendant of Genghis Khan.”</p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“I’m not paying you anything extra to do the website because it is simply a matter of pushing the right buttons. I know how to push buttons.”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" /><strong>Client:</strong> You see where you have a full stop at the end of the first sentence?</p>
<p><strong>Me:</strong> Yes.</p>
<p><strong>Client:</strong> Can you change it to a comma?</p>
<p><strong>Me:</strong> Er, well I can, but you should put a full stop at the end of a sentence.</p>
<p><strong>Client:</strong> Oh, that grammar stuff is very old fashioned.</p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“Our web application support team doesn’t know HTML or JavaScript, can you redo the project so you aren’t using those?”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />After a lengthy presentation for the design of a microsite, the clients had a few unanswered questions. Chief among them regarded the large portraits of former actors and directors beside their bios. The conversation went something like this:</p>
<p><strong>Client:</strong> “Can you click the picture?”</p>
<p><strong>Me: </strong>“No. What do you want it to do? Enlarge?”</p>
<p><strong>Client:</strong> “No, I just want to click it.”</p>
<p><strong>Me:</strong> “But when you click it, what do you want to happen?”</p>
<p><strong>Client:</strong> “I just want to be able to click it.”</p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“We’d like you to illustrate this (diagram of traffic tunnel and four-lane highway), but we’d like you to make it look like this (watercolour of budgie doing aerobics).”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />My client was an outdoor events company and upon seeing a competitor using a blue sky in their advertising, emailed me telling me to call this company and let them know that they had to change the colour of the sky in their ads, “because we own copyright of blue skies in this country so no-one else can use them”.</p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“I really like the gradient &#8211; going from red to yellow &#8211; but I don’t like orange. Can you make it go through another colour?”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" /><strong>Client: </strong>“Just make it look like the site I showed you.  In fact, why don’t you go into their site and take the images?”</p>
<p><strong>Me: “</strong>Because that is illegal.”</p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“I want you to make it so people have to give us their email before they can look at the site. If they’re gonna look at our stuff, I want to be able to spam them afterwards.”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" /><strong>Client:</strong> I need video streaming, contact forms, a small database for customer comments and a new logo made and hosting for 3 years with a bit of a download option for the videos too</p>
<p><strong>Me:</strong> That all sounds reasonable, your original request terms this “Cheaply” what is your budget and I’ll advise as to what can be done realistically.</p>
<p><strong>Client:</strong> £20</p>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />
<h3>“I really like it. The thing is, I showed it to my uncle, and he didn’t like it at all &#8211; he though the ‘1’ looked like an ‘i’. He was a bit drunk at the time. Do you think you could you change it?”</h3>
<hr style="margin: 30px 30px; border-top: 1px solid #DDD;" />Read countless more at <a href="http://clientsfromhell.tumblr.com/">Clients From Hell</a>.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/E2yLyvkvPgg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/01/i-want-exactly-that-but-different-and-other-horror-stories/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/01/i-want-exactly-that-but-different-and-other-horror-stories/</feedburner:origLink></item>
		<item>
		<title>The Internet is killing your business, Part II</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/dmSJRbYBs3M/</link>
		<comments>http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-ii/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 18:02:45 +0000</pubDate>
		<dc:creator>Oliver Emberton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=761</guid>
		<description><![CDATA[Taking advantage of that Internet thing In Part I we looked at how the Internet changes everything. This is how you can take advantage of it. You probably underestimate what you can automate The Internet empowers you to reduce your marginal costs close to zero. This doesn’t happen by itself however. Automate everything you can. [...]]]></description>
			<content:encoded><![CDATA[<h3>Taking advantage of that Internet thing</h3>
<p>In <a href="http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-i/">Part I</a> we looked at <a href="http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-i/">how the Internet changes everything</a>. This is how you can take advantage of it.</p>
<p><span id="more-761"></span></p>
<h3>You probably underestimate what you can automate</h3>
<p>The Internet empowers you to reduce your <a href="http://en.wikipedia.org/wiki/Marginal_cost">marginal costs</a> close to zero. This doesn’t happen by itself however.</p>
<p>Automate everything you can. Relentlessly. Ideally, you don’t want to need people at all to make and complete a sale. From order to fulfilment should use as close to zero people as possible. You still need staff of course, but they’ll be focused on making that process as effective as possible, strategy and marketing.</p>
<p>A common objection is “but we need staff to do &#8230;”. A smart Internet business will find a way to circumvent that problem:</p>
<ul>
<li><strong>We need staff to quote<br />
</strong>Are you sure? How much business do you lose by not quoting fast enough? How much more would you make if quotes were 100% automated? What if you offered fixed price standard offerings, and sold them in volume? What if you had a questionnaire which asked your sales questions online, and emailed the customer a PDF quote – to a far higher standard than your manual ones – instantly?</li>
<li><strong>We need to call our supplier/customers</strong><br />
Could you email them instead? What if they could login and view your requests online, accept or decline them, query all the relevant details themselves? What if you automatically proxied between your customers and suppliers?</li>
<li><strong>We need a physical presence<br />
</strong>Sometimes this is true, for example with clothing or cars. How much of the remainder of your operation could be automated? Is the Internet getting people excited enough about what you do that they are coming to your physical locations to buy?</li>
</ul>
<p>Things that you can probably automate most include: accounts receivable, pre sales, order taking and after sales support. If you’re in the right industry: fulfilment.</p>
<h3>You probably have no idea what this costs</h3>
<p>The truth is some things you think are hard are ridiculously easy. A lot of things you probably don’t even know exist are very hard.</p>
<p>A college dropout could write code which sends you a text message in about 5 minutes.</p>
<p>Automatically sending an email? 2 minutes.</p>
<p>Automatically sending a graphical email that doesn’t get spam filtered, and works consistently for lots of different email software? Potentially a week, and several people. And your maintenance is <em>way</em> higher, as email changes all the time.</p>
<p>The danger with this is that if you don’t understand what makes things difficult, or what is important, you’ll pursue high cost paths without considering vastly lower cost alternatives. Startups have an advantage: they don’t have much money, so they optimise better. It’s no coincidence that most of them don’t use graphical emails, but that big lumbering corporations tend to insist on them.</p>
<p>You need smart people who understand the technology to guide you, and they need to be empowered enough to make decisions. The person <em>least qualified</em> is usually the technophobe at the top.</p>
<h3>What Internet businesses look like</h3>
<p>Internet companies are usually much smaller, spend less and earn higher margins. Many are profitable with only a handful of staff.</p>
<p>Because the technology is so important, a large portion of resources go into developing that technology. If you’re Google you need to write that search engine before you have a business. Amazon is nothing without a great website.</p>
<p>Conversely your traditional workers are likely far thinner on the ground. There’s much less need to have people answer the phone, handle accounts etc., as these processes should be automated.</p>
<p>Generally there will be more highly skilled workers, and their skills will be leveraged far greater than before. Improving a part of your process can result in huge gains for minimal manpower, but it takes real skill to know what to change.</p>
<p>Most successful Internet companies are lead by people with a technical understanding. People without these skills will struggle to compete against those with them. Just ask your granddad to race an 8 year old: find me something on the Internet.</p>
<p>Because highly skilled people are harder to find, they are usually <a href="http://carsonified.com/jobs/">treated well</a>. <a href="http://www.joelonsoftware.com/items/2008/12/29.html">Great offices</a> are a smart move to help keep them. Culture becomes far more important than ever. This is not indulgence. With information workers, flexible hours and other perks pay back more than they cost.</p>
<h3>What can you do right now?</h3>
<p>There are three options.</p>
<ol>
<li>Look at what you can change with your business</li>
<li>Fund a new spin-off business</li>
<li>Await extinction</li>
</ol>
<p>Sometimes small incremental changes to your own business are enough. If you’re an established bank, supporting online banking was a no brainer – essential for your survival. In these cases, the easiest strategy is to outsource to external talent.</p>
<p>Founding a spin-off is another approach. When British Airways realised they couldn’t compete with ‘no frills’ airlines like Ryanair without destroying their own business, they founded Go (now part of EasyJet). This allows you to circumvent what is probably your biggest liability – internal politics. For a lumbering giant to change their website can take <a href="http://dustincurtis.com/dear_american_airlines.html">12 months and 500 stakeholders</a>. A five man team can dance circles around them. They’ll take a fresh look at everything, and probably find a far better way than you will.</p>
<p>The best people tend to be highly entrepreneurial, and they thrive in an environment where they have high autonomy. A spin off gives you the chance to create that culture afresh. Right now, it’s likely they won’t even apply to work for you.</p>
<p>Done correctly, you can leverage your own strengths to this new company (experience, capital, brand recognition) and take full advantage of the Internet revolution.</p>
<p>Just don’t do nothing.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/dmSJRbYBs3M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-ii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-ii/</feedburner:origLink></item>
		<item>
		<title>The Internet is killing your business, Part I</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/0tuYc0dYlzI/</link>
		<comments>http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-i/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 21:45:20 +0000</pubDate>
		<dc:creator>Oliver Emberton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=755</guid>
		<description><![CDATA[We meet a lot of big, established companies who don’t ‘get’ the Internet. “We’ve got a guy looking at that.” “Most of our customers don&#8217;t use the Internet anyway.” “We’ve already got a website. I haven’t really used it, but it looks really nice.” Many businesspeople dismiss the Internet as a place for their website [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Luddites" src="http://nibbles.silktideblog.com/wp-content/uploads/2009/08/Luddites.png" alt="Luddites" width="378" height="313" /></p>
<p class="largetext">We meet a lot of big, established companies who don’t ‘get’ the Internet.</p>
<p style="padding-left: 30px;"><em>“We’ve got a guy looking at that.”</em></p>
<p style="padding-left: 30px;"><em>“Most of our customers don&#8217;t use the Internet anyway.”</em></p>
<p style="padding-left: 30px;"><em>“We’ve already got a website. I haven’t really used it, but it looks really nice.”</em></p>
<p>Many businesspeople dismiss the Internet as a place for their website and email. That’s equivalent to seeing the PC as a nicer looking typewriter, and about as dangerous. History is littered with the carcasses of once great companies that failed to embrace revolutions: from the combustion engine to the microchip. Just like these, the Internet changes the <em>whole game</em>.</p>
<p><span id="more-755"></span></p>
<h3>Why you’re not worried enough</h3>
<p>The most common mistake is to assume your customers don’t like or use the Internet, or that what you do isn’t affected by it.</p>
<p>Put ten random people in a room. Ask them:</p>
<ul>
<li>When was the last time they bought a holiday without using a website?</li>
<li>What about car insurance?</li>
<li>Who’s bought something from <a href="http://www.amazon.com/">Amazon.com</a>?</li>
<li>Have they used online banking? Would they switch to a bank that didn’t have it?</li>
<li>Who doesn’t read a newspaper anymore because of the Internet?</li>
<li>Do they own an iPod? Have they bought music for it?</li>
</ul>
<p>All of these are established multi-billion dollar industries (insurance, travel, finance, books, news, music) that have been utterly transformed within 10 years. <em>Almost all have seen new industry leaders start and take over within that same period. </em>Apple and Amazon are now the largest distributors of music worldwide. Google is the largest supplier of advertising, almost equal in revenue to the entire newspaper industry. Right now, the entire newspaper industry is fighting for its life, largely because of a company that was <a href="http://www.google.com/corporate/history.html">founded in 1998 by two fresh graduates in a garage</a>.</p>
<h2>How the world has changed</h2>
<h3>Marginal costs approach zero</h3>
<p>Marginal cost is what you have to spend to sell one additional unit.</p>
<p>To sell a holiday <em>offline</em>, you need a person to answer the phone, accept enquiries, prepare responses and process orders. To sell more holidays, you need more people, so your costs increase alongside your income. Because demand fluctuates, you’re always inefficient – there is either too much or too little capacity at any time.</p>
<p>On the Internet, your marginal costs approach zero. Once you’ve built your online holiday store, the cost of serving 10 customers or 100,000 is almost the same. For more orders, you just need a bit more electricity and computing power, and the odd person to handle issues that occur. Demand can fluctuate and you’re much more flexible.</p>
<p>This enables business models that couldn’t exist before. Ryanair can sell you a flight for £10 online and <em>make a profit</em>. Apple can sell songs for 79p each, earn a higher margin and employ a fraction of the staff of a traditional music retailer.</p>
<p>If you’re stuck with higher marginal costs than your competitors, you’re doomed to cost more, make less or go bust.</p>
<h3>Barriers to entry drop</h3>
<p>Increasingly it becomes easier to build a new online businesses:</p>
<ul>
<li>Technology is ubiquitous and cheap.</li>
<li>An online presence is affordable by <em>individuals</em>, nevermind companies.</li>
<li>Smart individuals can outdesign large companies.</li>
<li>Technology is getting better all the time.</li>
<li>Demand is increasing all the time.</li>
<li>Physical offices are not required.</li>
<li>Marginal costs are extremely low.</li>
<li>A 24/7 global presence is possible from a back-yard.</li>
</ul>
<p>Virtually every household Internet company started as a couple of people programming on their own computers, often without offices or staff. From these foundations, giants such as Google, Yahoo, Amazon, eBay and Facebook have risen. Typically these companies will secure modest funding around $100,000 early in their life to sustain themselves. Increasingly many are entirely self funded.</p>
<p>Right now there’s probably a guy in a bedroom working on how to do what you do better online, and what’s scariest is he has a chance of succeeding.</p>
<h3>Scalability approach infinity</h3>
<p>Internet business can scale very, very quickly. Internet companies have demonstrated the fastest growth rates ever seen by business. Google became “the most powerful brand in the world” with a market cap around $150 billion within 10 years.</p>
<p>Growth costs less as marginal costs are so low. Expanding into new territories doesn’t have to mean new offices or staff. The automated, electronic systems which power your business (such as your website) don’t sleep and can expand almost at will.</p>
<p>Note that is only applies if the technology and the design is right. If they’re not &#8211; say you didn’t plan for internationalising your product &#8211; then you’re stuck. But your competitors might not be.</p>
<h3>Globalisation becomes the norm</h3>
<p>As scalability increases, it becomes far easier to serve a global audience than before.</p>
<p>With the enormous opportunities this presents – of drastically increasing revenue at relatively low cost – the most successful companies almost invariably expand in this way. This means that unless you’re the best in the world at something, there’s a good chance someone better will expand into your turf eventually.</p>
<p>This creates incredible opportunities for the world’s best companies, but serious threats for the worst.</p>
<h3>Protectionism fails</h3>
<p>Traditional legal protections are relatively ineffective on the Internet. Regardless of the law, people will copy content you write, comment freely on your products and services and relentlessly duplicate anything you do which appears to be successful. On a global stage, combating this is an exercise in futility.</p>
<p>Some of the most powerful corporations in the world are either thriving in this environment, or being decimated by it. Most of the music and film industry has bemoaned how the Internet is destroying their livelihood through piracy and the ‘expectation of not paying’, and have spent a great deal of that time chasing criminals, instead of delivering a legal alternative. Meanwhile Apple spotted a new opportunity – people wanted their music over the Internet &#8211; developed iTunes and now is the largest music seller in the US with around 5 million songs sold a day.</p>
<h3>More transparency, less loyalty</h3>
<p>Your customers don’t care about you, or your website.</p>
<p>They probably have many alternatives. They are empowered like never before to research you, compare you and reject you at their whim. Consider how you buy car insurance or a holiday online, how much choice you have, and how long you’ll stick around if you get frustrated trying to use one provider.</p>
<p>If your business is based on hoodwinking, you probably won’t survive in the Internet marketplace. But if you offer genuine value, you’ll likely do better than ever.</p>
<h3>Awareness</h3>
<p>If you can grow very quickly &#8211; and so can your competitors – then your game changes.</p>
<p>You need awareness to succeed. Many insurance companies are at the mercy of brokers with more popular websites, like <a href="http://www.confused.com/">www.confused.com</a>, simply because they attract more business. Barnes &amp; Noble have their own website – launched just two years after Amazon’s – but it attracts only a fraction of the traffic Amazon gets, and even less business.</p>
<p>Whoever holds the majority of attention wins.</p>
<p>This has lead many Internet companies to go to incredible and ingenious lengths to make their presence known. Many Internet startups secure funding solely for this purpose. Internet Marketing may appear very alien to traditional marketers. In most cases, it no longer means getting people to type in your web address directly, instead you want them to find you via a Search Engine (like Google), social network or other sites.</p>
<p>If you don’t know your YouTube from a Tweet, you need someone who does. It’s not forgiving territory to the uninitiated. Know this: it doesn’t reward large spend like traditional <a href="http://www.angelofernando.com/Interruption.htm">interruption marketing</a>.</p>
<h3>Technology is a workforce</h3>
<p>Increasingly your website is what people see first, and possibly the only thing they see. As automation increases, think of your technology as much of your sales force, marketing material, fulfilment and after sales support. Just as in the real world, the quality of these is hugely important.</p>
<p>Many people struggle to evaluate how ‘good’ a website is, or they’re not sure how to make them better. It’s a lot more intuitive to say all your sales guys need to wear suits than to make an intelligent comment on drop-down menus. Hire at least one expert. Test your site endless on real people. At a minimum, <a href="http://www.amazon.co.uk/Dont-Make-Think-Usability-Circle-Com/dp/0789723107">read this book</a>.</p>
<p><strong>Continued in </strong><strong><a href="http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-ii/">Part II: Taking advantage of that Internet thing</a></strong></p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/0tuYc0dYlzI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/01/the-internet-is-killing-your-business-part-i/</feedburner:origLink></item>
		<item>
		<title>How to lose your empire to a guy in a garage</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/NlGbRStsY5I/</link>
		<comments>http://blog.silktide.com/2010/01/how-to-lose-your-empire-to-a-guy-in-a-garage/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 01:57:58 +0000</pubDate>
		<dc:creator>Oliver Emberton</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.silktide.com/?p=753</guid>
		<description><![CDATA[Year founded: 1995 Website launched: 1995 Revenue (2008): $19.9 billion Number of employees: 20,500 NASDAQ: AMZN Year founded: 1917 Website launched: 1997 Revenue (2008): $5.06 billion Number of employees: 37,000 NYSE: BKS Which pretty much says it all. For the full story, read this interview of Jeff Bezos, Amazon&#8217;s founder.]]></description>
			<content:encoded><![CDATA[<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width: 50%; padding-right: 40px; vertical-align: top;"><img class="alignnone size-full wp-image-29" title="Amazon logo" src="http://nibbles.silktideblog.com/wp-content/uploads/2009/08/Amazon-logo.png" alt="Amazon logo" width="250" height="93" /></p>
<p><strong>Year founded:</strong> 1995</p>
<p><strong>Website launched:</strong> 1995<br />
<strong>Revenue (2008): </strong>$19.9 billion<br />
<strong>Number of employees:</strong> 20,500</p>
<p>NASDAQ: <a href="http://www.google.co.uk/finance?client=ob&amp;q=NASDAQ:AMZN">AMZN</a></td>
<td style="vertical-align: top;"><img class="alignnone size-full wp-image-30" title="Barnes and Noble logo" src="http://nibbles.silktideblog.com/wp-content/uploads/2009/08/Barnes-and-Noble-logo.png" alt="Barnes and Noble logo" width="250" height="93" /></p>
<p><strong>Year founded:</strong> 1917</p>
<p><strong>Website launched: </strong>1997<strong> </strong><br />
<strong>Revenue (2008):</strong> $5.06 billion<br />
<strong>Number of employees:</strong> 37,000</p>
<p>NYSE: <a href="http://www.google.co.uk/finance?client=ob&amp;q=NYSE:BKS">BKS</a></td>
</tr>
</tbody>
</table>
<p>Which pretty much says it all.</p>
<p>For the full story, read this <a href="http://www.achievement.org/autodoc/page/bez0int-1">interview of Jeff Bezos</a>, Amazon&#8217;s founder.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/NlGbRStsY5I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2010/01/how-to-lose-your-empire-to-a-guy-in-a-garage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2010/01/how-to-lose-your-empire-to-a-guy-in-a-garage/</feedburner:origLink></item>
		<item>
		<title>10 signs your web writing sucks</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/flaDNPwTDpI/</link>
		<comments>http://blog.silktide.com/2009/11/10-signs-your-web-writing-sucks/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 21:58:30 +0000</pubDate>
		<dc:creator>Oliver Emberton</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Improving your website]]></category>

		<guid isPermaLink="false">http://blog.silktidestudios.com/?p=729</guid>
		<description><![CDATA[99.9% of writing on the Internet is utter crap. We’ve known £100 million companies with content that looks like it was excreted from the rear end of an illiterate baboon. The problem is common with websites, because usually the owner has to supply their own text. All too often, this role falls to the least [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-736" title="Child writing ABC" src="http://blog.silktide.com/wp-content/uploads/2009/11/Child-writing-ABC.jpg" alt="Child writing ABC" width="500" height="377" /></p>
<p class="largetext">99.9% of writing on the Internet is utter crap.</p>
<p>We’ve known £100 million companies with content that looks like it was excreted from the rear end of an illiterate baboon.</p>
<p><span id="more-729"></span></p>
<p><img title="More..." src="http://blog.silktidestudios.com/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />The problem is common with websites, because usually the owner has to supply their own text. All too often, this role falls to the least literate, most overworked person in the company – someone whose peak in their writing career consists of a <a href="http://www.guidespot.com/guides/facebook_status_funny_fail">particularly awesome Facebook post</a>.</p>
<p>Here are ten all-too commons signs of poor writing for the web:</p>
<ol>
<li><strong>Multiple exclamation marks!!!!!</strong><br />
You looks like an attention deficit teen writing a text message. Exclamation marks are only used one at a time, and judiciously. Two sentences in a row! Is not cool!</li>
<li><strong>I’m getting there</strong><br />
Imagine your audience is an angry mob about to set you on fire. Talk fast. Edit out anything you don’t need, <span style="text-decoration: line-through;">like this</span>.</li>
<li><strong>Clichés<br />
</strong>Their real meaning has long since given way to laziness. “No problem too big or small?” Please. That’s a euphemism for “we’ll take any work, we’re desperate!”<strong> </strong></li>
<li><strong>Wall of text<br />
</strong>Headings, paragraphs, bulleted lists: if you don’t have any, your content will scare people away before they’ve read it, and with good reason.<strong> </strong></li>
<li><strong>Spelling mistakes<br />
</strong>FOR THE LOVE OF GOD.</li>
<li><strong>Over-protective </strong><br />
Stop qualifying everything. “Almost”. “I guess”. “Probably”. Not every statement you write has to be undisputed fact, and your readers can handle this. Otherwise you’re just <em>boring</em>.</li>
<li><strong>Marketese</strong><br />
Don&#8217;t tell me you&#8217;re a &#8220;leading provider of synergistic vertical solutions&#8221;. No-one knows what that means, nor do they give a rat&#8217;s bottom. Write clearly, in a language we understand.</li>
<li><strong>Forgetting your poor reader<br />
</strong>They’re a real person too, and – suckered as they might be – they’re reading your text for a reason. Every sentence should be useful, entertaining, or both.</li>
<li><strong>Why use 5 words when I could use 50?<br />
</strong>‘Nuff said.</li>
<li><strong>I don’t know how to use an apostrophe</strong><br />
Stop. Walk away from the keyboard. If you’re a grown adult and you haven’t learnt basic grammar and punctuation by now, you never will. Writing just isn&#8217;t for you.</li>
</ol>
<h3>Why you should care</h3>
<p>We live in an age where people get bored reading a lengthy text message. People are quick to comment on what they can judge in a <a href="http://en.wikipedia.org/wiki/Blink_%28book%29">blink</a> – like the images on a page &#8211; but rarely criticise writing. Text isn’t sexy. Any doofus with a keyboard can <em>type</em>.</p>
<p>Sadly true.</p>
<p>Of course, any doofus can draw too. Fire that stupid graphic designer, buy yourself a pack of wax crayons – you’ll save a fortune!</p>
<p>Good writing is invaluable. Think of your copy as filling the role of your spokesperson, talking to anyone who stops at your website. Does your website sound like a master orator, an over enthusiastic snake-oil salesman, or a delinquent teenager?</p>
<p>If your organisation isn&#8217;t blessed with the time and expertise to write well, do yourself a favour and hire a professional. Good writing is good communication, and it pays for itself.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/flaDNPwTDpI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2009/11/10-signs-your-web-writing-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2009/11/10-signs-your-web-writing-sucks/</feedburner:origLink></item>
		<item>
		<title>If only your website was a nightclub</title>
		<link>http://feedproxy.google.com/~r/silktidestudios/~3/XQX0wCK3WY0/</link>
		<comments>http://blog.silktide.com/2009/11/if-only-your-website-was-a-nightclub/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 00:18:50 +0000</pubDate>
		<dc:creator>Oliver Emberton</dc:creator>
				<category><![CDATA[Fun Stuff]]></category>
		<category><![CDATA[Improving your website]]></category>

		<guid isPermaLink="false">http://blog.silktidestudios.com/?p=717</guid>
		<description><![CDATA[It’s the opening night of your dream nightclub. You’ve spent months picking out the right shade of pink for the carpet, the perfect umbrellas for your cocktails, the best bulldog statues for the toilets. It cost you every penny you have, but it’s perfect. You invited everyone you know – of course – and it’s [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-722" title="Dancing girl" src="http://blog.silktidestudios.com/wp-content/uploads/2009/11/Nightclub-dancer.jpg" alt="Dancing girl" width="500" height="500" /></p>
<p class="largetext">It’s the opening night of your dream nightclub. You’ve spent months picking out the right shade of pink for the carpet, the perfect umbrellas for your cocktails, the best bulldog statues for the toilets. It cost you every penny you have, but it’s <em>perfect</em>.</p>
<p>You invited everyone you know – of course – and it’s going pretty well. Word of mouth is sure to spread, and in a few weeks you’ll be packed.</p>
<p><span id="more-717"></span></p>
<p>If only.</p>
<p>A week passes and your go-go girls outnumber the punters. The few unfortunate deadbeats who do show up leave soon after. In desperation, you gamble what little you have left on a carpet bombing of indiscriminate ads and slash your prices. Having spent your money on the fitting, this is your last, best hope to attract customers.</p>
<p>It doesn’t work.</p>
<p>Turning on the lights, you decide to take one final stroll round, before the bailiff arrives for his keys. With a pained smile, you reflect on what remains of your creation. Looking at it now, was pink a good idea? Maybe the bulldog statues clashed with the neon cherubs? How could I have known?</p>
<p>This is the story of most websites, and the mistakes they make.</p>
<p>Firstly, their new owners spend most or all of their budget on the first build. They should hold as much – or more – back, to allow for promotion and development.</p>
<p>Secondly, they expect to be overnight successes. The expression “if you build it, they will come” is about as truthful as “if you bake it, it will taste good”. It takes time, and hard work to attract people, and your work here is <em>never done</em>.</p>
<p>Thirdly, they assume their original design is set in stone, and are slow to adapt – or don’t adapt at all. The best websites are always improving, measuring everything and refining every slight detail constantly. For your nightclub, you might watch the queues around the bar, and adjust your staffing to match. Are you paying equivalent attention to where your visitors go on your site? Do you know the most and least effective pages, and <a href="http://blog.silktidestudios.com/2009/08/increasing-web-conversions-by-20-and-more/">what have you done to improve them</a>?</p>
<p>Perhaps because a website isn’t a physical ‘thing’, people struggle to see how they work. So if it helps, think of your site like your dream nightclub.</p>
<p>Just avoid the <a href="http://www.agilitynut.com/07/12/bulldog2.jpg">bulldog statues</a>.</p>
<img src="http://feeds.feedburner.com/~r/silktidestudios/~4/XQX0wCK3WY0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.silktide.com/2009/11/if-only-your-website-was-a-nightclub/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.silktide.com/2009/11/if-only-your-website-was-a-nightclub/</feedburner:origLink></item>
	</channel>
</rss>
