<?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>WSI Blog &#187; Usability</title>
	<atom:link href="http://www.wsi-ebizsolutions.biz/blog/category/usability/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wsi-ebizsolutions.biz/blog</link>
	<description>Website Development and Internet Marketing Blog</description>
	<lastBuildDate>Fri, 23 Jul 2010 13:12:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Text Formatting in a CMS &#8211; CSS for Clients</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/text-formatting-cms-css-clients/2010/02/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/text-formatting-cms-css-clients/2010/02/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 12:27:48 +0000</pubDate>
		<dc:creator>Chrisi Reid</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[content management]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=748</guid>
		<description><![CDATA[Hold on just one moment... how much does your client know about CSS - and how long is the site content going to retain the look and feel they're so pleased with, if they're not confident with HTML?]]></description>
			<content:encoded><![CDATA[<p>So, you&#8217;ve designed and built a visually attractive website, uploaded the client&#8217;s content and you&#8217;re about to turn it over to the client to maintain themselves. You&#8217;ve used the latest in CSS to create a fantastic look and feel for the site, and you intend to add this site to your portfolio as a showpiece. The client is thrilled with how the site looks, and can&#8217;t wait to start search engine marketing or pay-per-click campaigns to get the traffic coming in.</p>
<p>Hold on just one moment&#8230; how much does your client know about CSS &#8211; and how long is the site content going to retain the look and feel they&#8217;re so pleased with if they&#8217;re not confident with HTML?</p>
<p><span id="more-748"></span></p>
<h2>Clients aren&#8217;t coders.</h2>
<p>Most of them, anyway &#8211; most clients know how to use Microsoft Word, but that might well be the extent of their design knowledge. And, if you&#8217;ve worked with Content Management Systems, you know that copying text from a Microsoft Word document into the CMS can cause some unexpected design complications, and can result in accessibility issues, including loss of W3C compliance. Inserting plain text into the editor helps, but what happens to the formatting?</p>
<p>Using inline formatting is certainly an option, and many clients will opt for this. It&#8217;s quite easy to highlight a segment of text, apply a font size and colour, then set the text alignment. This has the advantage of being truly WYSIWYG, as all changes will show up exactly as the user wants them to in the CMS editor window. There&#8217;s just one small problem.</p>
<p>If your client doesn&#8217;t know exactly what font sizes, colours and alignments are used in the content you set up for them &#8211; not to mention image spacing, table cell padding and other more advanced settings &#8211; it will be very difficult for them to replicate this when they upload their own content. An area of text that looks just about right in the content editor might not look like the rest of the page content when it&#8217;s saved and viewed on the front end.</p>
<h2>But they can apply CSS styles and classes, right?</h2>
<p>Of course, you could supply them with a list of the correct inline style codes or even classes to add for each formatted segment of text&#8230; it adds another page or two in the user manual, but it would ensure that they could produce new pages that look like the content you uploaded for them.  Some clients are quite happy to click on that little HTML button and enter an instruction like <em>class=&#8221;blah&#8221;</em> in the correct part of the page for the content they&#8217;re uploading.</p>
<p>But many content managers don&#8217;t have any web design experience &#8211; they&#8217;re working with the content editor on the basis of a &#8220;Microsoft Word-like&#8221; interface. Looking at the HTML version of a page can be daunting. Those <em>&lt;p&gt;</em> and <em>&lt;/tr&gt;</em> and <em>&lt;a class=&#8221;sausage&#8221; style=&#8221;margin: 5px; float: left; clear: both;&#8221; href=&#8221;/overthere.htm&#8221;&gt;</em> tags don&#8217;t make sense to anyone who doesn&#8217;t know that they&#8217;re looking at the start of a paragraph, the close of a table row or a styled link to a page.  In that respect, it may not be reasonable to expect your clients to be able to add classes or inline styling.</p>
<h2>What&#8217;s the solution?</h2>
<p>I use a combination of two approaches.</p>
<p>First,  in every CMS user guide that WSI Huddersfield produces, we include any applicable inline styling, particularly where <em>&lt;div&gt;</em> sections have been used to create columns or floating text areas, as standard CMS software doesn&#8217;t include an insert-DIV option. This is done by providing a block of code in the user manual with &#8220;your text goes here&#8221; sections in it.</p>
<p>Secondly, in the site creation process, we use CSS to define the appearance of a number of basic functions on the site, like paragraphs, headings and lists. Once this is done the customer can then use your styles with just a click or two to format their text and retain the same look and feel as the content you have uploaded.</p>
<p>For example, you may need a specific format for a Call-to-Action button. Trying to show a client how to do the Call-to-Action buttons with standard text and inline scripting could be quite problematic, even if you explain to your client exactly where to paste the appropriate styling text. But if you have set up the CSS so that using the Heading 5 option in the CMS will automatically make the text appear as a button with a fixed width, floated right and showing a background image and border, it simplifies things considerably.  A client could then enter their normal text, highlight it, and click &#8220;Heading 5&#8243; in the settings.</p>
<h2>Style test pages</h2>
<p>There is one down side to using the CSS styling in this way &#8211; the CMS is no longer quite so WYSIWYG if you&#8217;re using external style sheets, which do not show in the editor window. That formatted H5 wouldn&#8217;t have the styling applied to it, so it would simply appear as plain bold text in the CMS. This is why creating a<strong> </strong>Style Test page is important, so that a client can refer to what something looks like on the front end of the site, and click the right option in the CMS. This test page should show:</p>
<ul>
<li>Headings 1 &#8211;  6</li>
<li>Standard paragraph text</li>
<li>Links</li>
<li>Bullet and numbered lists</li>
<li>Any other formats applied to standard functions</li>
</ul>
<p>This way, your client can see what they need to do to replicate the style of pages already on the site. And helping your client to do that will also help you &#8211; so that the site you are so pleased about will remain a showcase piece once your clients are maintaining their content themselves.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/css-2-making-web-development-tools/2009/12/" rel="bookmark" class="crp_title">CSS 2: Making the Most of Web Development Tools</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/site-built-now-what/2009/11/" rel="bookmark" class="crp_title">The Site Is Built&#8230; Now What Do I Do With It?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/" rel="bookmark" class="crp_title">Product Pages &#8211; Don&#8217;t Forget Descriptions</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/typography-web/2009/11/" rel="bookmark" class="crp_title">Better Typography On The Web</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/css-3-tools-web-designers/2009/11/" rel="bookmark" class="crp_title">CSS 3: New Tools For Web Designers</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;bodytext=Hold%20on%20just%20one%20moment...%20how%20much%20does%20your%20client%20know%20about%20CSS%20-%20and%20how%20long%20is%20the%20site%20content%20going%20to%20retain%20the%20look%20and%20feel%20they%27re%20so%20pleased%20with%2C%20if%20they%27re%20not%20confident%20with%20HTML%3F" title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;notes=Hold%20on%20just%20one%20moment...%20how%20much%20does%20your%20client%20know%20about%20CSS%20-%20and%20how%20long%20is%20the%20site%20content%20going%20to%20retain%20the%20look%20and%20feel%20they%27re%20so%20pleased%20with%2C%20if%20they%27re%20not%20confident%20with%20HTML%3F" title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;t=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;annotation=Hold%20on%20just%20one%20moment...%20how%20much%20does%20your%20client%20know%20about%20CSS%20-%20and%20how%20long%20is%20the%20site%20content%20going%20to%20retain%20the%20look%20and%20feel%20they%27re%20so%20pleased%20with%2C%20if%20they%27re%20not%20confident%20with%20HTML%3F" title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=Hold%20on%20just%20one%20moment...%20how%20much%20does%20your%20client%20know%20about%20CSS%20-%20and%20how%20long%20is%20the%20site%20content%20going%20to%20retain%20the%20look%20and%20feel%20they%27re%20so%20pleased%20with%2C%20if%20they%27re%20not%20confident%20with%20HTML%3F" title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;t=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;body=Hold%20on%20just%20one%20moment...%20how%20much%20does%20your%20client%20know%20about%20CSS%20-%20and%20how%20long%20is%20the%20site%20content%20going%20to%20retain%20the%20look%20and%20feel%20they%27re%20so%20pleased%20with%2C%20if%20they%27re%20not%20confident%20with%20HTML%3F" title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F&amp;title=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Text%20Formatting%20in%20a%20CMS%20-%20CSS%20for%20Clients%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftext-formatting-cms-css-clients%2F2010%2F02%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/text-formatting-cms-css-clients/2010/02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Web to Listen, Learn and Engage</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/web-listen-learn-engage/2010/02/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/web-listen-learn-engage/2010/02/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 11:06:23 +0000</pubDate>
		<dc:creator>Lisa Chirgwin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[engaging Websites]]></category>
		<category><![CDATA[online behaviour]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=761</guid>
		<description><![CDATA[As web behaviour evolves, online and offline marketing need to evolve with it. The World Wide Web has not only brought everyone closer, it is also bringing about a significant shift in attitudes toward consumers, including the recognition of their value as customers. Brands that recognise this shift, and successfully engage with their customers will win the day.]]></description>
			<content:encoded><![CDATA[<p>As web behaviour evolves, online and offline marketing need to evolve with it. The World Wide Web has not only brought everyone closer, it is also bringing about a significant shift in attitudes toward consumers, including the recognition of their value as customers. Brands that recognise this shift, and successfully engage with their customers will win the day.<br />
<span id="more-761"></span><br />
 <br />
With this in mind, it may not come as a surprise that research conducted by the Society of Digital Agencies (SoDA), identified just over 45 percent of senior marketers (worldwide) who said developing their social networks and applications is their top priority for 2010. Their second priority is to improve their digital infrastructure. So what can you do to make your website more engaging?</p>
<p><strong>Five Website Tips for Engaging Consumers Today </strong><br />
The web is not a static medium: as technologies improve, user expectations increase. As they do, meeting customers&#8217; expectations will mean developing your marketing to be more appropriate, timely and relevant to what consumers want.</p>
<p>Here are five steps to develop your website to engage more effectively with your customers:</p>
<p>1. Study Customers&#8217; Online Behaviour<br />
Use your website analytics to learn from your intended audience – your customers – and give them what they want. Identify website hot spots that attract the most attention; understand when your email marketing messages will be best received; discover which social platforms are leading them to you.</p>
<p>If used well, your web analytics are a key component in understanding and fulfilling your customers&#8217; expectations.</p>
<p>2. Consider Your Content Presentation<br />
The first step in engaging customers is not only the quality of your content, but also the ease with which it can be read and its user-friendliness. A professional web design and carefully thought out content arrangement will help you make a great first impression – and draw your website visitors in.</p>
<p>3. Creative Content Formats<br />
The web is no longer a text-based medium, and hasn&#8217;t been for a while. Even the less frequent web user will be used to animated imagery and video content. Be creative with your content to engage your visitors&#8217; senses and get your message across dynamically, but ensure the technology doesn&#8217;t distract visitors from your pitch.</p>
<p>4. Emphasise Social Media Connections<br />
Make it easy to share your content across multiple social networks, such as Digg, StumbleUpon, Twitter, Reddit, Facebook and many more. Including an easy-to-use &#8216;Share&#8217; widget with your content makes content sharing a breeze and demonstrates your intention to be engaging.</p>
<p>5. Make it Easy to Correspond – No Jumping Through Hoops<br />
If you want to encourage correspondence, show it. Make it a simple process for site visitors to leave comments or get in touch to take &#8216;social conversation&#8217; to the next level. Streamline your forms and have multiple points of contact through which visitors can leave comments.</p>
<p>Finally, with all the above, adapt your marketing mix to incorporate a coordinated, consistent approach. Developing a coherent online marketing campaign can be done very effectively at a fraction of the cost of traditional promotional activities.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/email-campaigns-click/2010/01/" rel="bookmark" class="crp_title">Email Campaigns that Really Click</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/essential-email-marketing-tips-today-part-1/2010/06/" rel="bookmark" class="crp_title">Essential Email Marketing Tips For Today – Part 1</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/tweet-your-way-to-success/2010/02/" rel="bookmark" class="crp_title">Tweet Your Way to Success!</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/5-tips-converting-online-leads/2010/02/" rel="bookmark" class="crp_title">5 Tips for Converting Online Leads</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/joining-your-first-social-media-site/2009/12/" rel="bookmark" class="crp_title">5 Basic Tips For Joining Your First Social Media Site</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;bodytext=As%20web%20behaviour%20evolves%2C%20online%20and%20offline%20marketing%20need%20to%20evolve%20with%20it.%20The%20World%20Wide%20Web%20has%20not%20only%20brought%20everyone%20closer%2C%20it%20is%20also%20bringing%20about%20a%20significant%20shift%20in%20attitudes%20toward%20consumers%2C%20including%20the%20recognition%20of%20their%20value%20as%20customers.%20Brands%20that%20recognise%20this%20shift%2C%20and%20successfully%20engage%20with%20their%20customers%20will%20win%20the%20day." title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;notes=As%20web%20behaviour%20evolves%2C%20online%20and%20offline%20marketing%20need%20to%20evolve%20with%20it.%20The%20World%20Wide%20Web%20has%20not%20only%20brought%20everyone%20closer%2C%20it%20is%20also%20bringing%20about%20a%20significant%20shift%20in%20attitudes%20toward%20consumers%2C%20including%20the%20recognition%20of%20their%20value%20as%20customers.%20Brands%20that%20recognise%20this%20shift%2C%20and%20successfully%20engage%20with%20their%20customers%20will%20win%20the%20day." title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;t=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;annotation=As%20web%20behaviour%20evolves%2C%20online%20and%20offline%20marketing%20need%20to%20evolve%20with%20it.%20The%20World%20Wide%20Web%20has%20not%20only%20brought%20everyone%20closer%2C%20it%20is%20also%20bringing%20about%20a%20significant%20shift%20in%20attitudes%20toward%20consumers%2C%20including%20the%20recognition%20of%20their%20value%20as%20customers.%20Brands%20that%20recognise%20this%20shift%2C%20and%20successfully%20engage%20with%20their%20customers%20will%20win%20the%20day." title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=As%20web%20behaviour%20evolves%2C%20online%20and%20offline%20marketing%20need%20to%20evolve%20with%20it.%20The%20World%20Wide%20Web%20has%20not%20only%20brought%20everyone%20closer%2C%20it%20is%20also%20bringing%20about%20a%20significant%20shift%20in%20attitudes%20toward%20consumers%2C%20including%20the%20recognition%20of%20their%20value%20as%20customers.%20Brands%20that%20recognise%20this%20shift%2C%20and%20successfully%20engage%20with%20their%20customers%20will%20win%20the%20day." title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;t=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;body=As%20web%20behaviour%20evolves%2C%20online%20and%20offline%20marketing%20need%20to%20evolve%20with%20it.%20The%20World%20Wide%20Web%20has%20not%20only%20brought%20everyone%20closer%2C%20it%20is%20also%20bringing%20about%20a%20significant%20shift%20in%20attitudes%20toward%20consumers%2C%20including%20the%20recognition%20of%20their%20value%20as%20customers.%20Brands%20that%20recognise%20this%20shift%2C%20and%20successfully%20engage%20with%20their%20customers%20will%20win%20the%20day." title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F&amp;title=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Using%20the%20Web%20to%20Listen%2C%20Learn%20and%20Engage%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fweb-listen-learn-engage%2F2010%2F02%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/web-listen-learn-engage/2010/02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>January Sales and Poor Landing Pages&#8230;.</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/january-sales-poor-landing-pages/2009/12/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/january-sales-poor-landing-pages/2009/12/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 11:38:55 +0000</pubDate>
		<dc:creator>Lisa Chirgwin</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[calls to action]]></category>
		<category><![CDATA[landing page]]></category>
		<category><![CDATA[On-line Sales]]></category>
		<category><![CDATA[page navigation]]></category>
		<category><![CDATA[ROI]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=548</guid>
		<description><![CDATA[And so the January sales have started, after trawling round shops during Christmas I have decided to look for bargains on-line in the January Sales.  Being an avid climber I started looking for the best deals on Climbing Boots and was surprised at the number of website that had very poor landing pages or links to the correct product page.  ]]></description>
			<content:encoded><![CDATA[<p>And so the January sales have started, after trawling round shops during Christmas I have decided to look for bargains on-line in the January Sales. Being an avid climber I started looking for the best deals on Climbing Boots and was surprised at the number of website that had very poor landing pages or links to the correct product page.<br />
<span id="more-548"></span></p>
<p>The number of times I found a site within Google saying that they had a sale on boots, only to click on the site and land on a completely irrelevant page which only made be close the page and continue looking for another site that would actually land me on a page showing Climbing Boots.</p>
<p>With this in mind here are some tips on the best practices for landing pages, which should engage the user and be able to show higher ROI.</p>
<p><img class="alignnone size-full wp-image-549" title="Climbing Shoe" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/12/VCR.JPG" alt="Climbing Shoe" width="304" height="205" /></p>
<ul>
<li>Unify the aim – Landing pages perform best when the content is promotion-based. The content should be concise and focused on one message.</li>
</ul>
<ul>
<li>Engage the Visitor – Tell a story or sell a product using impactful imagery.</li>
</ul>
<ul>
<li>Focus Visitor Experience – Landing pages should be used as a teaser to easily point the customer to the desired action.</li>
</ul>
<ul>
<li>Direct Headline – Make a good first impression. A clear and direct headline should be the first thing the user sees when viewing the page.</li>
</ul>
<ul>
<li>Leave Plenty of Space — Visitors tend to scan the page rather than read bulky text. Good use of space allows visitors to scan and understand the key messages.</li>
</ul>
<ul>
<li>Call to Action Buttons – Attracting attention is what the main action buttons are all about. Make the button is above the fold on the page. Also, don’t skimp on button size.</li>
</ul>
<ul>
<li>Convey Trust and Security &#8211; Branding, trust/security icons can provide credibility and give confidence to the visitor.</li>
</ul>
<ul>
<li>Provide a Compelling Message — Think of your landing page as your online salesperson. Make sure you have one compelling message directly above the call to action.</li>
</ul>
<p> </p>
<p>Understanding what visitors want and how the interact with your site is essential to get the best ROI, continually monitor your analytics and modify your pages. Just some minor tweaks could really reduce your bounce rate and increase visitor interaction and stop people like me leaving your site within 3 seconds of arriving on it!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/online-marketing-optimising-christmas-web-design-seo-ppc/2009/11/" rel="bookmark" class="crp_title">Online Marketing &#038; Optimising for Christmas: Web Design, SEO and PPC</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/bounce-rate-bounce-rate-important/2010/02/" rel="bookmark" class="crp_title">What is bounce rate? Why is bounce rate important?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/email-campaigns-click/2010/01/" rel="bookmark" class="crp_title">Email Campaigns that Really Click</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/writing-text-sells/2009/11/" rel="bookmark" class="crp_title">Writing Text That Sells</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/10-ways-boost-sales-video-content/2010/05/" rel="bookmark" class="crp_title">10 Ways to Boost Sales Using Video Content</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;bodytext=And%20so%20the%20January%20sales%20have%20started%2C%20after%20trawling%20round%20shops%20during%20Christmas%20I%20have%20decided%20to%20look%20for%20bargains%20on-line%20in%20the%20January%20Sales.%20%20Being%20an%20avid%20climber%20I%20started%20looking%20for%20the%20best%20deals%20on%20Climbing%20Boots%20and%20was%20surprised%20at%20the%20number%20of%20website%20that%20had%20very%20poor%20landing%20pages%20or%20links%20to%20the%20correct%20product%20page.%20%20" title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;notes=And%20so%20the%20January%20sales%20have%20started%2C%20after%20trawling%20round%20shops%20during%20Christmas%20I%20have%20decided%20to%20look%20for%20bargains%20on-line%20in%20the%20January%20Sales.%20%20Being%20an%20avid%20climber%20I%20started%20looking%20for%20the%20best%20deals%20on%20Climbing%20Boots%20and%20was%20surprised%20at%20the%20number%20of%20website%20that%20had%20very%20poor%20landing%20pages%20or%20links%20to%20the%20correct%20product%20page.%20%20" title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;t=January%20Sales%20and%20Poor%20Landing%20Pages...." title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;annotation=And%20so%20the%20January%20sales%20have%20started%2C%20after%20trawling%20round%20shops%20during%20Christmas%20I%20have%20decided%20to%20look%20for%20bargains%20on-line%20in%20the%20January%20Sales.%20%20Being%20an%20avid%20climber%20I%20started%20looking%20for%20the%20best%20deals%20on%20Climbing%20Boots%20and%20was%20surprised%20at%20the%20number%20of%20website%20that%20had%20very%20poor%20landing%20pages%20or%20links%20to%20the%20correct%20product%20page.%20%20" title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=And%20so%20the%20January%20sales%20have%20started%2C%20after%20trawling%20round%20shops%20during%20Christmas%20I%20have%20decided%20to%20look%20for%20bargains%20on-line%20in%20the%20January%20Sales.%20%20Being%20an%20avid%20climber%20I%20started%20looking%20for%20the%20best%20deals%20on%20Climbing%20Boots%20and%20was%20surprised%20at%20the%20number%20of%20website%20that%20had%20very%20poor%20landing%20pages%20or%20links%20to%20the%20correct%20product%20page.%20%20" title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;t=January%20Sales%20and%20Poor%20Landing%20Pages...." title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;body=And%20so%20the%20January%20sales%20have%20started%2C%20after%20trawling%20round%20shops%20during%20Christmas%20I%20have%20decided%20to%20look%20for%20bargains%20on-line%20in%20the%20January%20Sales.%20%20Being%20an%20avid%20climber%20I%20started%20looking%20for%20the%20best%20deals%20on%20Climbing%20Boots%20and%20was%20surprised%20at%20the%20number%20of%20website%20that%20had%20very%20poor%20landing%20pages%20or%20links%20to%20the%20correct%20product%20page.%20%20" title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages...." title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=January%20Sales%20and%20Poor%20Landing%20Pages....&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F&amp;title=January%20Sales%20and%20Poor%20Landing%20Pages...." title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=January%20Sales%20and%20Poor%20Landing%20Pages....%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fjanuary-sales-poor-landing-pages%2F2009%2F12%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/january-sales-poor-landing-pages/2009/12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopping Online for the Holidays</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/shopping-online-holidays/2009/12/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/shopping-online-holidays/2009/12/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:48:53 +0000</pubDate>
		<dc:creator>Chrisi Reid</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[e-commerce]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=455</guid>
		<description><![CDATA[Making it easy to shop online - and making sure you show what your customers need to know -  will get your customers to come back, and to recommend your site to others, too.]]></description>
			<content:encoded><![CDATA[<p>This year I&#8217;m trying to make things easier for myself by doing my <strong>Christmas shopping online</strong>.  It has a lot to recommend it &#8211; I don&#8217;t have to fight my way through a busy town centre to get to the shops, nor do I have to carry heavy parcels home with me.</p>
<p>But there are things any e-commerce website should do to give its customers the best possible online experience, especially when you&#8217;re talking about busy shopping times.<br />
<span id="more-455"></span></p>
<h2>Positive Online Shopping Experiences -<br />
How to Get Customers To Come Back</h2>
<p>For me, the biggest concern when I&#8217;m shopping online for the holidays is &#8220;Will my gifts get to me on time?&#8221;</p>
<p>The best of the websites I&#8217;ve used this year have done the following things to <strong>increase my confidence in shopping</strong> with them:</p>
<ul>
<li><strong>Delivery times clearly stated</strong> on the website, and not just when I&#8217;m checking out. Dynamic delivery times specific to each product and/or supplier are even better.</li>
<li><strong>Named delivery services</strong> &#8211; and the choice of courier type. I&#8217;m one of those people who, if next working day delivery is available and not<em> too </em>expensive, will go for that instead of a standard Royal Mail service.</li>
<li><strong>E-mailed confirmation of my order</strong> including an expected delivery date.</li>
<li><strong>Tracking numbers &#8211; when possible</strong> &#8211; also provided through e-mail or by logging in to a customer account on the website.</li>
<li><strong>Contact details</strong> &#8211; including a real-world physical address and telephone number &#8211; are clearly displayed on the website and in the order confirmation e-mails.</li>
</ul>
<h2>Negative Online Shopping Experiences -<br />
How to Scare Your Customers</h2>
<p>Unfortunately, not all of the shops I&#8217;ve used have been quite so helpful this year. Shopping online can be a bit stressful if a customer doesn&#8217;t have enough information.</p>
<p>If you&#8217;re an e-commerce site and you <strong>want to </strong><strong>scare off a potential customer</strong>:</p>
<ul>
<li><strong>Don&#8217;t talk about your delivery policies</strong> &#8211;  your customers don&#8217;t need to know how you deliver their goods or when they&#8217;re going to get them, do they?</li>
<li><strong>Don&#8217;t confirm your company details in order confirmation e-mails</strong> &#8211; send a list of the products the customer bought, but don&#8217;t include any contact details if things go wrong.</li>
<li><strong>Don&#8217;t show your company registration or VAT information</strong> anywhere on the website.  Speaking of the Electronic Commerce Regulations 2002 &#8230; surely they don&#8217;t mean <em>your </em>company is legally required to include that information?</li>
<li><strong>Make the customer register before they can place an order with you</strong> &#8211; but make sure that registration is a white elephant, of no practical use in future. Customers don&#8217;t really want to know if their order has shipped yet, even if they&#8217;re logging in to check.  In addition, your registration system should be awkward, intrusive and impossible for your customer to avoid.</li>
</ul>
<p>And a minor issue, which might not apply to all e-commerce sites&#8230;</p>
<p>If you have a <strong>physical shop as well</strong> as an online presence, keep in mind that your customers may see a product in your shop that they like&#8230; but not the right size or colour. Do you stock the same products in your online shop?</p>
<p>Making it easy to shop online &#8211; and making sure you show what your customers need to know &#8211;  will get your customers to come back, and to recommend your site to others, too.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/" rel="bookmark" class="crp_title">Product Pages &#8211; Don&#8217;t Forget Descriptions</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/e-commercewebsites/2010/07/" rel="bookmark" class="crp_title">5 Tips for Improving the e-Commerce Experience</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/frequently-asked-questions/2010/07/" rel="bookmark" class="crp_title">Are they really Frequently Asked Questions?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/e-commerce-web-design-yorkshire/2010/02/" rel="bookmark" class="crp_title">E-Commerce Web Design 12 Quick Pointers</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/ecommerce-website-considerations/2010/02/" rel="bookmark" class="crp_title">E-Commerce Website Considerations</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays&amp;bodytext=Making%20it%20easy%20to%20shop%20online%20-%20and%20making%20sure%20you%20show%20what%20your%20customers%20need%20to%20know%20-%20%20will%20get%20your%20customers%20to%20come%20back%2C%20and%20to%20recommend%20your%20site%20to%20others%2C%20too." title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays&amp;notes=Making%20it%20easy%20to%20shop%20online%20-%20and%20making%20sure%20you%20show%20what%20your%20customers%20need%20to%20know%20-%20%20will%20get%20your%20customers%20to%20come%20back%2C%20and%20to%20recommend%20your%20site%20to%20others%2C%20too." title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;t=Shopping%20Online%20for%20the%20Holidays" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays&amp;annotation=Making%20it%20easy%20to%20shop%20online%20-%20and%20making%20sure%20you%20show%20what%20your%20customers%20need%20to%20know%20-%20%20will%20get%20your%20customers%20to%20come%20back%2C%20and%20to%20recommend%20your%20site%20to%20others%2C%20too." title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Shopping%20Online%20for%20the%20Holidays&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=Making%20it%20easy%20to%20shop%20online%20-%20and%20making%20sure%20you%20show%20what%20your%20customers%20need%20to%20know%20-%20%20will%20get%20your%20customers%20to%20come%20back%2C%20and%20to%20recommend%20your%20site%20to%20others%2C%20too." title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;t=Shopping%20Online%20for%20the%20Holidays" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays&amp;body=Making%20it%20easy%20to%20shop%20online%20-%20and%20making%20sure%20you%20show%20what%20your%20customers%20need%20to%20know%20-%20%20will%20get%20your%20customers%20to%20come%20back%2C%20and%20to%20recommend%20your%20site%20to%20others%2C%20too." title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Shopping%20Online%20for%20the%20Holidays&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F&amp;title=Shopping%20Online%20for%20the%20Holidays" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Shopping%20Online%20for%20the%20Holidays%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fshopping-online-holidays%2F2009%2F12%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/shopping-online-holidays/2009/12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Future of the Web: Brief intro to HTML 5</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/future-web-intro-html-5/2009/11/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/future-web-intro-html-5/2009/11/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 17:01:47 +0000</pubDate>
		<dc:creator>Neil Stewart</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=444</guid>
		<description><![CDATA[Some designers will embrace its arrival, others will simply dismiss its existence but the fact of the matter is that new technology in the web arena is becoming ever more apparent. “It’s too far in the future” some may scream, but either way we have all heard the hype around the next best thing in [...]]]></description>
			<content:encoded><![CDATA[<p>Some designers will embrace its arrival, others will simply dismiss its existence but the fact of the matter is that new technology in the web arena is becoming ever more apparent. “It’s too far in the future” some may scream, but either way we have all heard the hype around the next best thing in web development HTML 5.</p>
<p>Although it’s a big leap in what many designers are used to, it is something that all designers must accept will happen in the future. So why not learn the ins and outs of mark up such as HTML 5? Knowing something of this kind will not hinder your progress as a designer, simply give you the upper hand when “d day “ does come around and XHTML is something of the past.<span id="more-444"></span></p>
<p>Things like jQuery plugins, formatting techniques and design trends change all the time across the web. We accept that what we learn in this area today will change tomorrow. If this is the case with other coding techniques then why should we not accept this with the mark up we use everyday? Well, people become very comfortable with the techniques they learn in XHTML, the little tricks and tips that speed their design to build ratio. But from what I will describe in this blog HTML 5 may be worth the change over, if it’s time and tidiness we require. Transitioning from one syntax to another can be complicated or even make you feel that what you have learnt before was a waste, hopefully this blog can ease that change.</p>
<p><strong>The Basics</strong></p>
<p>The first main change is the doc type which every web site has the doc type code is</p>
<p><code><strong>&lt;!DOCTYPE html&gt;</strong></code></p>
<p><code> </code></p>
<p><code>TO say the least this is not what we expected from a new syntax, but apparently…</code></p>
<p><code> </code></p>
<p><code><strong>&lt;!DOCTYPE html5&gt;</strong></code></p>
<p><code> </code></p>
<p><code>Triggers various problems in, yes you’ve guessed it IE6, but we must take backwards compatibility into consideration in most cases.</code></p>
<p><code> </code></p>
<p><code>With HTML 5 this is as long as the new doc type gets, it’s small, its meaningful and for once in any designers working life including myself we might just remember this one, I feel that this improvement will banish the need for us to open up previous XHTML builds and copy and paste the doc type forever.</code></p>
<p><code> </code></p>
<p><code> </code></p>
<p><code><strong>New Elements to get to grips with</strong></code></p>
<p><code><strong> </strong></code></p>
<p><code>Straight away new elements strike your retinas and in many ways make the sense of designing seem easier. In many ways the WC3 community has opened its ears and listened to what it is designers need. New elements that style the structure such as &lt;header&gt; and &lt;footer&gt; are now apparent along with &lt;canvas&gt; and &lt;audio&gt;. These simple looking structural elements seem to tap into an already powerful API - which in the long run allows us to create user friendly applications. We can now sleep at night knowing that our site’s audio doesn’t need to rely on copious amounts of flash work to seemingly stream an audio file. So let’s get to grips with the elements.</code></p>
<p><code> </code></p>
<p><code><strong>The new Structural elements</strong></code></p>
<p><code><strong> </strong></code></p>
<ul>
<li><code><strong>&lt;header&gt;</strong></code><br />
The header element contains introductory information to a section or page.      This can involve anything from our normal document’s headers (branding      information) to an entire <strong>table of contents</strong>.</li>
<li><code><strong>&lt;nav&gt;</strong></code><br />
The nav element is reserved for a section of a document that contains      links to other pages or links to sections of the same page. Not all link      groups need to be contained within the &lt;nav&gt; element, just <strong>primary      navigation</strong>.</li>
<li><code><strong>&lt;section&gt;</strong></code><br />
The section element represents a <strong>generic document or application      section</strong>. It acts much the same way a <code>&lt;div&gt;</code> does by separating off      a portion of the document.</li>
<li><code><strong>&lt;article&gt;</strong></code><br />
The article element represents a portion of a page which can stand alone      such as: a blog post, a forum entry, user submitted comments or any <strong>independent      item of content</strong>.</li>
<li><code><strong>&lt;aside&gt;</strong></code><br />
Aside, represents content related to the main area of the document. This      is usually expressed in sidebars that contain elements like related posts,      tag clouds, etc. They can also be used for <strong>pull quotes</strong>.</li>
<li><code><strong>&lt;footer&gt;</strong></code><br />
The footer element is for marking up the footer of, not only the current      page, but each section contained in the page. So, it’s very likely that      you’ll be using the &lt;footer&gt; element multiple times within one page.</li>
</ul>
<p><code>With one glance at these elements we can see no need for “div id=”mydiv”&gt;&lt;/div&gt;, it would appear that the gold old div id is being forced into retirement. Much more than this elements like &lt;header&gt; or &lt;footer&gt; can be used multiple times on one page, something that was unheard of with div IDs. In this example the elements act more like classes and normal HTML that can be exhausted while style retaining a semantic structure.</code></p>
<p><code> </code></p>
<p><code>One thing is apparent while looking at the elements in HTML5 and that is its ease and simplicity in creating a final goal. Like with any industry this is apparent, aerodynamics experts have one goal - to create something that reacts in a streamlined fashion to its environment. This also relates to design, if we can create something that overall reacts resourcefully to the net then why can’t we do it in far shorter steps than XHTML? HTML5 can do the above in a far more streamlined fashion than that of XHTML. When I look at the new mark up, I think <strong>faster, cleaner.</strong></code></p>
<p><code> </code></p>
<p><code> </code></p>
<p><code><strong>Easing the transition from good old XHTML</strong></code></p>
<p><code> </code></p>
<p><code>We can see that HTML, XHTML and HTML5 are similar in syntax, some small differences however can slip into your code and we can be faced with that dreaded “Document does not validate” in the official “failure red” colour. But on the plus side HTML 5 has some built in slack to let designers off a little bit, for example when marking up a form in HTML 5 </code></p>
<p><code> </code></p>
<p><code>For example , when marking up in HTML5 the proper syntax would be..</code></p>
<p><code> </code></p>
<p><code><strong>&lt;input</strong></code><strong> <code>type="text"</code> <code>id="name"&gt;</code></strong></p>
<p><code><strong> </strong></code></p>
<p><code>But this is also accepted as valid code in an attempt to ease the pain for avid XHTML coders who in many cases are used to the “/”&gt; elements. So even though we are using HTML5 we can still self close our elements like so.</code></p>
<p><code> </code></p>
<p><code><strong>&lt;input</strong></code><strong> <code>type="text"</code> <code>id="name"/&gt;</code></strong></p>
<p><code><strong> </strong></code></p>
<p><code>These rules will apply to &lt;meta&gt; &lt;b&gt; and &lt;i&gt;, these elements being left in makes the change far more easier to come around to.</code></p>
<p><code> </code></p>
<p><code><strong>What are some of the benefits?</strong></code></p>
<p><code><strong> </strong></code></p>
<p><code>People do not upgrade anything unless it has something to offer or at least one new feature. If your old code works just as well if not better than the new syntax mark up then why do you need to change over? Well, with HTML 5 a lot of new features are making their way onto the scene and changing the way we handle our online presence. Below are a number of new features..</code></p>
<p><code> </code></p>
<p><code>Offline data Storage – With anything that’s web related that can be followed by offline storage we suddenly prick our ears up and listen. In this case HTML 5’s offline capabilities are amazing. Programs like Thunderbird, Outlook allow you to browse your data while offline, with HTML 5 you can have this feature function in the same manner but simply in your browser, some say this could be the first serious step in connecting both the desktop and web.</code></p>
<p><code> </code></p>
<p>Video and Audio- The audio &amp; video APIs are massive upgrades in media embedding. Although support is limited right now, something like video embedding has never been easier:</p>
<p><code> </code></p>
<p><code><strong>&lt;video</strong></code><strong> <code>width="400"</code> <code>height="360"</code> <code>src="vid.mp4"&gt;</code></strong></p>
<p><code><strong> </strong></code></p>
<p><code>We can see from all of the above that HTML 5 is not at first glance evil but rather pleasing to use for a designer, for years we have complained about time management, and ease of coding. Here we are faced with a syntax that allows us to speed up our production and add elements that previously would have given us a headache. Further more we can see that is being kind to us who are XHTML savvy, by allowing us to ease into this new step in our design careers.</code></p>
<p><code> </code></p>
<p><code><strong>To Conclude</strong></code></p>
<p><code><strong> </strong></code></p>
<p><code>HTML 5 wants to help us, it wants to simplify the way we code in a way that can benefit both clients and the designer. But in most cases one thing is standing firmly in the way of evolution in the web arena and this is the foundations set up around XHTML, communities are rife with support for this syntax and this does not look to burn out anytime soon. But hopefully with HTML5 the expectations are being set up with strong intentions to become a very powerful mark up language, could this sway the masses?</code></p>
<p><code> </code></p>
<p><code>With so many great features from new elements to API’s with enough power to change the way we view the net. We can make data available offline, easily combine technologies and create intricate animations all within a familiar landscape. We must as designers embrace the future, in doing so we can build stronger and richer web apps that do the internet justice.</code></p>
<p><code> </code></p>
<p><code> </code></p>
<p><code><strong> </strong></code></p>
<p><code><strong> </strong></code></p>
<p><code> </code></p>
<p><code> </code></p>
<p><code><strong> </strong></code></p>
<p><code><strong> </strong></code></p>
<p><code><strong> </strong></code></p>
<p><code><strong> </strong></code></p>
<p><code> </code></p>
<p><code> </code></p>
<p><code><strong> </strong></code></p>
<p><strong> </strong></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/special-characters-html-php-htmlspecialchars/2009/12/" rel="bookmark" class="crp_title">Special Characters in HTML with PHP&#8217;s htmlspecialchars() Function</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/stopped-internet-explorer/2010/01/" rel="bookmark" class="crp_title">Why I stopped using Internet Explorer</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/website-redirects-on-lamp-hosting/2009/11/" rel="bookmark" class="crp_title">Website Redirects on LAMP Hosting</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/introduction-apache-modrewrite/2010/01/" rel="bookmark" class="crp_title">Introduction to Apache mod_rewrite</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/ban-bad-bots-global_asa-classic-asp/2009/10/" rel="bookmark" class="crp_title">Banning Bad Bots Using The global.asa File In Classic ASP</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;bodytext=Some%20designers%20will%20embrace%20its%20arrival%2C%20others%20will%20simply%20dismiss%20its%20existence%20but%20the%20fact%20of%20the%20matter%20is%20that%20new%20technology%20in%20the%20web%20arena%20is%20becoming%20ever%20more%20apparent.%20%E2%80%9CIt%E2%80%99s%20too%20far%20in%20the%20future%E2%80%9D%20some%20may%20scream%2C%20but%20either%20way%20we" title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;notes=Some%20designers%20will%20embrace%20its%20arrival%2C%20others%20will%20simply%20dismiss%20its%20existence%20but%20the%20fact%20of%20the%20matter%20is%20that%20new%20technology%20in%20the%20web%20arena%20is%20becoming%20ever%20more%20apparent.%20%E2%80%9CIt%E2%80%99s%20too%20far%20in%20the%20future%E2%80%9D%20some%20may%20scream%2C%20but%20either%20way%20we" title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;t=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;annotation=Some%20designers%20will%20embrace%20its%20arrival%2C%20others%20will%20simply%20dismiss%20its%20existence%20but%20the%20fact%20of%20the%20matter%20is%20that%20new%20technology%20in%20the%20web%20arena%20is%20becoming%20ever%20more%20apparent.%20%E2%80%9CIt%E2%80%99s%20too%20far%20in%20the%20future%E2%80%9D%20some%20may%20scream%2C%20but%20either%20way%20we" title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=Some%20designers%20will%20embrace%20its%20arrival%2C%20others%20will%20simply%20dismiss%20its%20existence%20but%20the%20fact%20of%20the%20matter%20is%20that%20new%20technology%20in%20the%20web%20arena%20is%20becoming%20ever%20more%20apparent.%20%E2%80%9CIt%E2%80%99s%20too%20far%20in%20the%20future%E2%80%9D%20some%20may%20scream%2C%20but%20either%20way%20we" title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;t=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;body=Some%20designers%20will%20embrace%20its%20arrival%2C%20others%20will%20simply%20dismiss%20its%20existence%20but%20the%20fact%20of%20the%20matter%20is%20that%20new%20technology%20in%20the%20web%20arena%20is%20becoming%20ever%20more%20apparent.%20%E2%80%9CIt%E2%80%99s%20too%20far%20in%20the%20future%E2%80%9D%20some%20may%20scream%2C%20but%20either%20way%20we" title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F&amp;title=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=The%20Future%20of%20the%20Web%3A%20Brief%20intro%20to%20HTML%205%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ffuture-web-intro-html-5%2F2009%2F11%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/future-web-intro-html-5/2009/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3: New Tools For Web Designers</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/css-3-tools-web-designers/2009/11/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/css-3-tools-web-designers/2009/11/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 16:04:11 +0000</pubDate>
		<dc:creator>Daniel Fielding</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=403</guid>
		<description><![CDATA[CSS is used in web design to define the way your pages are presented. It’s a styling language first standardised in 1996 as a way to give designers more power and reduce the complexity of HTML documents. Before its creation, all aspects of page appearance such as colours, sizes, borders and spacing were part of [...]]]></description>
			<content:encoded><![CDATA[<p>CSS is used in web design to define the way your pages are presented. It’s a styling language first standardised in 1996 as a way to give designers more power and reduce the complexity of HTML documents. Before its creation, all aspects of page appearance such as colours, sizes, borders and spacing were part of the HTML mark-up. This meant that even simple pages quickly became a large mess of code and the same statements had to be repeated over and over throughout a website.</p>
<p>The idea behind CSS is that it separates the presentational code from the content, so that HTML documents can remain clean and simple with multiple documents all pulling their styles from a single CSS file. This allows pages to be built quicker, with less repetition, and makes any future maintenance or design changes much easier.<span id="more-403"></span></p>
<p>The current standard is CSS 2.1 which has mostly been in use since 2004, but a big update is around the corner in the form of CSS 3. It’s going to be a while before browser adoption catches up but this post is going to cover some of the exciting new tools that designers will be able to take advantage of, some of which can even be used today.</p>
<h2>Multi-Column Layouts</h2>
<p><img class="aligncenter size-full wp-image-404" title="Multi Column Layouts" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/11/css3-columns.jpg" alt="Multi Column Layouts" width="500" height="200" /></p>
<p>Placing your text into multiple columns is technically possible today using multiple DIVs but CSS 3 will make this much easier allowing you full control over the number of columns, their widths and the spacing between them.</p>
<pre><span style="color: #ff0000;">#content-main{</span></pre>
<pre><span style="color: #ff0000;">text-align: left;</span></pre>
<pre><span style="color: #ff0000;">width: 920px;</span></pre>
<pre><span style="color: #ff0000;">font-size: 1.2em;</span></pre>
<pre><span style="color: #ff0000;">-webkit-column-count : 3;</span></pre>
<pre><span style="color: #ff0000;">-webkit-column-gap : 50px;</span></pre>
<pre><span style="color: #ff0000;">}</span></pre>
<pre><span style="color: #ff0000;">
</span></pre>
<h2>Multiple Background Images</h2>
<p><img class="aligncenter size-full wp-image-405" title="Multiple Background Images" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/11/css3-multi-back.jpg" alt="Multiple Background Images" width="500" height="200" /></p>
<p>Again, giving an area multiple background images is possible today but it means cluttering up your page with unnecessary DIVs. With CSS 3 you’ll be able to assign more than one image to an element, in the example above I created a single DIV with two separate background images:</p>
<p>1.       The main blue graphic locked to the top right hand corner.</p>
<p>2.       The white WSI logo (as a transparent PNG) locked to the bottom left.</p>
<p>The logos would stay in their assigned corners no matter what the size of the DIV, giving designers a lot of flexibility when working with dynamic content.</p>
<pre><span style="color: #ff0000;">#multibg{</span></pre>
<pre><span style="color: #ff0000;">width: 500px;</span></pre>
<pre><span style="color: #ff0000;">height: 200px;</span></pre>
<pre><span style="color: #ff0000;">background: url(../images/bg2.png) bottom left no-repeat,</span></pre>
<pre><span style="color: #ff0000;">url(../images/bg1.jpg) top right no-repeat;</span></pre>
<pre><span style="color: #ff0000;">}</span></pre>
<pre><span style="color: #ff0000;">
</span></pre>
<h2>Rounded Corners</h2>
<p><img class="aligncenter size-full wp-image-406" title="Rounded Corners" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/11/css3-borderradius.jpg" alt="Rounded Corners" width="500" height="200" /></p>
<p>CSS 3 allows you to place rounded corners on any element without having to use images or JavaScript to fake it. You have full control over which corners are affected and the amount of rounding.</p>
<pre><span style="color: #ff0000;">#outer{</span></pre>
<pre><span style="color: #ff0000;">width: 475px;</span></pre>
<pre><span style="color: #ff0000;">height: 100px;</span></pre>
<pre><span style="color: #ff0000;">padding: 50px;</span></pre>
<pre><span style="color: #ff0000;">background: url(../images/bg1.jpg) bottom left no-repeat;</span></pre>
<pre><span style="color: #ff0000;">-webkit-border-radius: 10px;</span></pre>
<pre><span style="color: #ff0000;">}</span></pre>
<pre><span style="color: #ff0000;">
</span></pre>
<h2>Drop Shadows</h2>
<p><img class="aligncenter size-full wp-image-407" title="Drop Shadows" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/11/css3-dropshadows.jpg" alt="Drop Shadows" width="500" height="200" /></p>
<p>Drop shadows could easily be used badly and ruin a site but in the hands of a good designer could also add that something to make it stand out. It’s another effect that can be faked at the moment using images or JavaScript but CSS 3 will streamline your code with shadows natively rendered by the browser.</p>
<pre><span style="color: #ff0000;">#dropshadow{</span></pre>
<pre><span style="color: #ff0000;">width: 450px;</span></pre>
<pre><span style="color: #ff0000;">height: 170px;</span></pre>
<pre><span style="color: #ff0000;">background: url(../images/bg1.jpg) bottom left no-repeat;</span></pre>
<pre><span style="color: #ff0000;">-webkit-border-radius: 10px;</span></pre>
<pre><span style="color: #ff0000;">-moz-border-radius: 10px;</span></pre>
<pre><span style="color: #ff0000;">-webkit-box-shadow: 0 0 5px #111;</span></pre>
<pre><span style="color: #ff0000;">}</span></pre>
<pre><span style="color: #ff0000;">h1{</span></pre>
<pre><span style="color: #ff0000;">font-size: 2.5em;</span></pre>
<pre><span style="color: #ff0000;">font-weight: bold;</span></pre>
<pre><span style="color: #ff0000;">margin-bottom: 15px;</span></pre>
<pre><span style="color: #ff0000;">color: #003767;</span></pre>
<pre><span style="color: #ff0000;">text-shadow: #ccc 4px 4px 2px;</span></pre>
<pre><span style="color: #ff0000;">}</span></pre>
<pre><span style="color: #ff0000;">
</span></pre>
<h2>Element Opacity</h2>
<p><img class="aligncenter size-full wp-image-408" title="Transparency" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/11/css3-opacity.jpg" alt="Transparency" width="500" height="200" /></p>
<p>The opacity controls in CSS 3 are flexible enough that you can control the exact value for any single element as well as deciding whether the opacity of child elements is effected.</p>
<pre><span style="color: #ff0000;">#opacity{</span></pre>
<pre><span style="color: #ff0000;">width: 450px;</span></pre>
<pre><span style="color: #ff0000;">height: 150px;</span></pre>
<pre><span style="color: #ff0000;">padding: 25px;</span></pre>
<pre><span style="color: #ff0000;">background: rgba(255, 255, 255, .40);</span></pre>
<pre><span style="color: #ff0000;">}</span></pre>
<pre><span style="color: #ff0000;">
</span></pre>
<h2>@Font-Face</h2>
<p>The @font-face attribute allows you to embed a custom font, hosted somewhere online allowing you to venture out of the safety of traditional web fonts. A slightly less useful version has been available in Internet Explorer for years but it’s now starting to gain support from both browser developers and font foundries. We discussed @font-face in more details <strong><a href="http://www.wsi-ebizsolutions.biz/blog/typography-web/2009/11/">in a previous post</a></strong>.</p>
<h2>So can I start using these right away?</h2>
<p>Unfortunately the answer is yes and no. The last 6 months has seen a huge improvement in CSS 3 support from most of the major browsers but you’ll still have to use browser specific attributes (“-moz-“ or “-webkit-“ before the attribute name, as in some of the examples above) to get many of these new techniques working right now. The latest versions of Opera, Safari and Chrome all have excellent CSS 3 support right now with Firefox close behind. As usual though, Internet Explorer is dragging its heels with almost no support even in IE8. This is hopefully set to change whenever IE9 launches according to a recent discussion with Microsoft developers.</p>
<p>There are many site designs and blogs already taking advantage of these new techniques and there’s nothing to stop you from experimenting too. Browser support is going to improve over time and as long as the design doesn’t look broken in IE, those visitors would never even realise anything was different for them. There are a lot of designers pushing the idea that a website doesn’t have to look identical in every browser. It’s important to make sure that everyone receives a good browsing experience but why deprive the modern browsers of those more advanced features?</p>
<p>This is obviously something that needs to be discussed at the beginning of a project but if you’re lucky enough to be working with a forward thinking, tech savvy client, why not suggest that they join you leading the charge into the next stage of web design?</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/css-2-making-web-development-tools/2009/12/" rel="bookmark" class="crp_title">CSS 2: Making the Most of Web Development Tools</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/content-management-system/2009/10/" rel="bookmark" class="crp_title">What do you want from a Content Management System?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/wsi-in-huddersfield-is-now-a-designated-wsi-solution-centre/2009/05/" rel="bookmark" class="crp_title">WSI in Huddersfield is now a designated WSI Solution Centre</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/wsi-visits-google/2009/07/" rel="bookmark" class="crp_title">WSI Yorkshire Visits Google</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/did-you-write-that/2010/02/" rel="bookmark" class="crp_title">Did You Really Write That?</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;bodytext=CSS%20is%20used%20in%20web%20design%20to%20define%20the%20way%20your%20pages%20are%20presented.%20It%E2%80%99s%20a%20styling%20language%20first%20standardised%20in%201996%20as%20a%20way%20to%20give%20designers%20more%20power%20and%20reduce%20the%20complexity%20of%20HTML%20documents.%20Before%20its%20creation%2C%20all%20aspects%20of%20page%20app" title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;notes=CSS%20is%20used%20in%20web%20design%20to%20define%20the%20way%20your%20pages%20are%20presented.%20It%E2%80%99s%20a%20styling%20language%20first%20standardised%20in%201996%20as%20a%20way%20to%20give%20designers%20more%20power%20and%20reduce%20the%20complexity%20of%20HTML%20documents.%20Before%20its%20creation%2C%20all%20aspects%20of%20page%20app" title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;t=CSS%203%3A%20New%20Tools%20For%20Web%20Designers" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;annotation=CSS%20is%20used%20in%20web%20design%20to%20define%20the%20way%20your%20pages%20are%20presented.%20It%E2%80%99s%20a%20styling%20language%20first%20standardised%20in%201996%20as%20a%20way%20to%20give%20designers%20more%20power%20and%20reduce%20the%20complexity%20of%20HTML%20documents.%20Before%20its%20creation%2C%20all%20aspects%20of%20page%20app" title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=CSS%20is%20used%20in%20web%20design%20to%20define%20the%20way%20your%20pages%20are%20presented.%20It%E2%80%99s%20a%20styling%20language%20first%20standardised%20in%201996%20as%20a%20way%20to%20give%20designers%20more%20power%20and%20reduce%20the%20complexity%20of%20HTML%20documents.%20Before%20its%20creation%2C%20all%20aspects%20of%20page%20app" title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;t=CSS%203%3A%20New%20Tools%20For%20Web%20Designers" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;body=CSS%20is%20used%20in%20web%20design%20to%20define%20the%20way%20your%20pages%20are%20presented.%20It%E2%80%99s%20a%20styling%20language%20first%20standardised%20in%201996%20as%20a%20way%20to%20give%20designers%20more%20power%20and%20reduce%20the%20complexity%20of%20HTML%20documents.%20Before%20its%20creation%2C%20all%20aspects%20of%20page%20app" title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F&amp;title=CSS%203%3A%20New%20Tools%20For%20Web%20Designers" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=CSS%203%3A%20New%20Tools%20For%20Web%20Designers%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fcss-3-tools-web-designers%2F2009%2F11%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/css-3-tools-web-designers/2009/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing Text That Sells</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/writing-text-sells/2009/11/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/writing-text-sells/2009/11/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 13:25:05 +0000</pubDate>
		<dc:creator>Chrisi Reid</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[copy writing]]></category>
		<category><![CDATA[search engine optimisation]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=401</guid>
		<description><![CDATA[There is a critical balance for web page copy - between hard sales techniques and providing straightforward navigation options on a website. Of course, your product and service pages should make use of the best practices to write text that sells.]]></description>
			<content:encoded><![CDATA[<p>Trying to write the copy for product or service pages can be confusing at times.</p>
<p>You might not always know whether a specific section should be a hard-hitting sales pitch &#8211; or simple and direct, something to help your reader navigate through your site. Knowing how to use headlines and body text &#8211; and when to ease up on the sales speech &#8211; can help you create much more helpful product text.</p>
<p><span id="more-401"></span><br />
Not all website text should be aimed at sales. <strong>Navigation</strong> should be simple, making it easy for your viewers to find what they want, instead of trying to sell them on something they don&#8217;t know they need yet. Content areas that are designed as <strong>&#8220;signposts&#8221; to find further information</strong> elsewhere on the site should be summarised. Don&#8217;t overwhelm the viewer with too much information if what you really want them to do is click the link to your product page, for example. Of course, your product and service pages should <strong>make use of the best practices to write text that sells</strong>.</p>
<h2>Headings and Headlines</h2>
<p>A good <strong>headline will tempt the reader</strong> and make them want to read more. Keep in mind the following principles of great headlines:</p>
<ul>
<li>People like &#8220;<strong>How To&#8230;</strong>&#8220;  and if you can promise them simple instructions, they&#8217;re likely to read more.</li>
<li>Give a <strong>quotation or testimonial</strong> from a real, trustworthy person.</li>
<li>Do you have a<strong> guarantee</strong>? Shout about it!</li>
<li>Provide <strong>fast facts</strong> about your product or service.</li>
<li><strong>Tell them what they need</strong> &#8211; and how you can provide that.</li>
<li><strong>Ask a question</strong> your reader wants the answer to.</li>
<li>Use the Three P&#8217;s &#8211; <strong>Product, Price and where to Purchase</strong>.</li>
<li>Are you running a current <strong>special offer or sale</strong>?</li>
</ul>
<h2>Below the Headlines</h2>
<p>Once you&#8217;ve worked out your headlines, look over the body text for the product or service.</p>
<ul>
<li><strong>Simplify your text</strong> &#8211; make sure you aren&#8217;t creating large blocks that can&#8217;t be scanned.</li>
<li><strong>Get to the point</strong> &#8211; don&#8217;t hide your offers or use jargon to hide what you really mean.</li>
<li><strong>Important info goes above the fold</strong> &#8211; although you can make creative use of graphics that are stretching beyond the fold to draw your viewer&#8217;s eyes down the page, make sure the critical sales points are visible at the top of the page without scrolling.</li>
<li><strong>Speak to your reader</strong> &#8211; try to edit the copy so that it addresses your target audience.</li>
</ul>
<p>Using these principles when you are <a href="http://www.wsi-ebizsolutions.biz/seo-copywriting_38.html">writing copy</a> for products and services &#8211; or editing the copy for a client &#8211; will help create eye-catching content that stands out.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/do-you-have-the-time/2009/11/" rel="bookmark" class="crp_title">Do you have the time?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/site-built-now-what/2009/11/" rel="bookmark" class="crp_title">The Site Is Built&#8230; Now What Do I Do With It?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/5-top-seo-tips-writing-press-release/2010/03/" rel="bookmark" class="crp_title">5 Top SEO Tips for Writing a Press Release</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/" rel="bookmark" class="crp_title">Product Pages &#8211; Don&#8217;t Forget Descriptions</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/frequently-asked-questions/2010/07/" rel="bookmark" class="crp_title">Are they really Frequently Asked Questions?</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells&amp;bodytext=There%20is%20a%20critical%20balance%20for%20web%20page%20copy%20-%20between%20hard%20sales%20techniques%20and%20providing%20straightforward%20navigation%20options%20on%20a%20website.%20Of%20course%2C%20your%20product%20and%20service%20pages%20should%20make%20use%20of%20the%20best%20practices%20to%20write%20text%20that%20sells." title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells&amp;notes=There%20is%20a%20critical%20balance%20for%20web%20page%20copy%20-%20between%20hard%20sales%20techniques%20and%20providing%20straightforward%20navigation%20options%20on%20a%20website.%20Of%20course%2C%20your%20product%20and%20service%20pages%20should%20make%20use%20of%20the%20best%20practices%20to%20write%20text%20that%20sells." title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;t=Writing%20Text%20That%20Sells" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells&amp;annotation=There%20is%20a%20critical%20balance%20for%20web%20page%20copy%20-%20between%20hard%20sales%20techniques%20and%20providing%20straightforward%20navigation%20options%20on%20a%20website.%20Of%20course%2C%20your%20product%20and%20service%20pages%20should%20make%20use%20of%20the%20best%20practices%20to%20write%20text%20that%20sells." title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Writing%20Text%20That%20Sells&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=There%20is%20a%20critical%20balance%20for%20web%20page%20copy%20-%20between%20hard%20sales%20techniques%20and%20providing%20straightforward%20navigation%20options%20on%20a%20website.%20Of%20course%2C%20your%20product%20and%20service%20pages%20should%20make%20use%20of%20the%20best%20practices%20to%20write%20text%20that%20sells." title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;t=Writing%20Text%20That%20Sells" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells&amp;body=There%20is%20a%20critical%20balance%20for%20web%20page%20copy%20-%20between%20hard%20sales%20techniques%20and%20providing%20straightforward%20navigation%20options%20on%20a%20website.%20Of%20course%2C%20your%20product%20and%20service%20pages%20should%20make%20use%20of%20the%20best%20practices%20to%20write%20text%20that%20sells." title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Writing%20Text%20That%20Sells&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F&amp;title=Writing%20Text%20That%20Sells" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Writing%20Text%20That%20Sells%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fwriting-text-sells%2F2009%2F11%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/writing-text-sells/2009/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Typography On The Web</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/typography-web/2009/11/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/typography-web/2009/11/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 16:10:28 +0000</pubDate>
		<dc:creator>Daniel Fielding</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Interface Design]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=360</guid>
		<description><![CDATA[Websites have always had to make use of a pretty limited set of fonts and while there’s still no perfect solution, there are alternatives appearing all of the time. Well chosen typefaces can bring a design to life and give a designer another tool to make their creation stand out. Of course, it also works [...]]]></description>
			<content:encoded><![CDATA[<p>Websites have always had to make use of a pretty limited set of fonts and while there’s still no perfect solution, there are alternatives appearing all of the time. Well chosen typefaces can bring a design to life and give a designer another tool to make their creation stand out. Of course, it also works the other way, badly chosen fonts can make text difficult to understand and impact the usability of a site.</p>
<p>In this post I’m going to discuss some of the popular techniques used to allow more flexibility with online fonts as well as newer solutions that could be on the horizon<span id="more-360"></span></p>
<h2>Web-safe fonts</h2>
<p>For reasons both technical and legal, web browsers have really only been able to make use of fonts already installed on a visitor’s computer. That means that for the most part we’re left with the following list of fonts which are common to both Windows and Mac machines (or at least have a close Mac equivalent):</p>
<ul>
<li>Arial</li>
<li>Courier New</li>
<li>Georgia</li>
<li>Impact</li>
<li>Lucida Sans Unicode (or Lucida Grande on the Mac)</li>
<li>Tahoma (or Geneva on the Mac)</li>
<li>Times New Roman (or Times on the Mac)</li>
<li>Trebuchet MS (or Helvetica on the Mac)</li>
<li>Verdana</li>
</ul>
<p><strong> Font Stacks</strong></p>
<p>When CSS became the standard for styling your website it brought with it greatly improved tools for defining and transforming text. One of these tools was Font Stacks, a prioritised list of fonts to be used by a particular part of your site. To list multiple fonts in this way you use the “font-family” property, for example:</p>
<blockquote><p><em>p<br />
{<br />
font-family:&#8221;Times New Roman&#8221;,Times,Serif;<br />
}</em></p></blockquote>
<p>This would instruct all of the text in your paragraph tags to use Times New Roman, if that font isn’t available on a user’s machine it would check for Times (the Mac equivalent) and if it can’t find either it would fall back to whatever generic “serif” font was available. This also means that designers can be a little more adventurous, for example adding a relatively rare font at the front of the queue, there’s always a fall back option that everyone else could use. The downside to this being that the majority of your visitors will be seeing a different version of the site, something that a lot of clients may not be happy with.</p>
<h2>Font Replacement Techniques</h2>
<p>If you’re familiar with the web-safe fonts listed above you may be thinking they all look a little tame. They’ve generally been selected because they are easy to read on screen and so work well as the font for your main body text, but what if you’d like to try something a little more adventurous for your headings? Headings are usually going to be just a few words and rendered in a larger font size which means readability becomes less of an issue, they can be the perfect place to inject a bit of creative flare and give some personality to your design. Over the last few years several options have been developed:</p>
<p><strong>sIFR (Scalable Inman Flash Replacement)</strong></p>
<p>sIFR uses Javascript and Flash to convert your plain text into any font you would like. It was first developed in 2005 and has been open sourced so anybody can use it free of charge. You can find out more about it here &#8211; <a href="http://www.mikeindustries.com/blog/sifr/">http://www.mikeindustries.com/blog/sifr/</a></p>
<p>Because the switch is made by the Javascript after the page has loaded, you don’t have to make any sacrifices in terms of search engine optimisation or accessibility. The downsides to sIFR are that it requires that both Javascript and Flash being installed, the text may not show up if the visitor is using ad-blocking software and some browsers can have problems with selecting/deselecting sIFR text.</p>
<p><strong>Cufón</strong></p>
<p>Cufón is an alternative to sIFR which doesn’t involve Flash. It uses a specially created font generator which converts standard fonts into the necessary format, then Javascript to render the finished font on the page. You can find out more here &#8211; <a href="http://cufon.shoqolate.com/generate/">http://cufon.shoqolate.com/generate/</a></p>
<p>It has the same benefits as sIFR but doesn’t need Flash which means more people will see the results and the page should load slightly quicker. On the other hand there can be more work involved in getting it set up and it doesn’t have complete browser support, there are still problems stopping it from working in some versions of Firefox and Chrome. It also has show-stopping problems in some screen readers which would make your site almost useless to visually impaired visitors.</p>
<p><strong>Typekit</strong></p>
<p>So while there are options out there for swapping more adventurous fonts into your websites, they all come with their own drawbacks which is why they’ve not achieved mainstream success. Typekit is a new service which was announced earlier this year and promised to change the way type is handled on the web. It uses a previously available but underutilised CSS property called @font-face which is starting to be implemented by more browsers.</p>
<p>The Typekit founders have made deals with various typographic foundries to offer hundreds of custom fonts specifically for use on the web. The service launched this week allowing website owners to sign up for one of various payment plans. I’ve been testing the service myself with mixed results, you can take a look here although depending on your browser you may or may not see the results &#8211; <a href="http://www.wsi-ebizsolutions.biz/typekit/">http://www.wsi-ebizsolutions.biz/typekit/</a></p>
<div id="attachment_361" class="wp-caption aligncenter" style="width: 410px"><img class="size-full wp-image-361" title="A comparison of my Typekit test between two modern browsers." src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/11/typekit-browsers.jpg" alt="A comparison of my Typekit test between two modern browsers." width="400" height="292" /><p class="wp-caption-text">A comparison of my Typekit test between two modern browsers.</p></div>
<p>The Typekit founders claim the service works in Internet Explorer and recent versions of Firefox and Safari although I’ve not been able to get it to work under IE. There is no support for Chrome or Opera until those browser manufacturers include support for the @font-face property, however for now these browsers will simply fall back to the next font in the stack.</p>
<p>The service itself is easy to use and the collection of fonts available is impressive. I’d have to recommend against using it on client sites until the browser support improves but it’s definitely a technology to keep your eye on.</p>
<p>There’s definitely a bright future for typography on the web, there are many other companies working on similar products and the amount of buzz around Typekit shows just how much demand is out there for better fonts! Once the bugs are worked out and the browsers catch, up I’d be very surprised if custom typefaces don’t become commonplace on the web.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/cross-browser-compatibility-browsers-design/2009/10/" rel="bookmark" class="crp_title">Testing Your Website In Multiple Browsers</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/css-3-tools-web-designers/2009/11/" rel="bookmark" class="crp_title">CSS 3: New Tools For Web Designers</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/web-browser-wars-hot/2008/10/" rel="bookmark" class="crp_title">Web Browser Wars Hot Up</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/stopped-internet-explorer/2010/01/" rel="bookmark" class="crp_title">Why I stopped using Internet Explorer</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/making-impression-flash-animation/2008/11/" rel="bookmark" class="crp_title">Making an Impression with Flash Animation</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web&amp;bodytext=Websites%20have%20always%20had%20to%20make%20use%20of%20a%20pretty%20limited%20set%20of%20fonts%20and%20while%20there%E2%80%99s%20still%20no%20perfect%20solution%2C%20there%20are%20alternatives%20appearing%20all%20of%20the%20time.%20Well%20chosen%20typefaces%20can%20bring%20a%20design%20to%20life%20and%20give%20a%20designer%20another%20tool%20t" title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web&amp;notes=Websites%20have%20always%20had%20to%20make%20use%20of%20a%20pretty%20limited%20set%20of%20fonts%20and%20while%20there%E2%80%99s%20still%20no%20perfect%20solution%2C%20there%20are%20alternatives%20appearing%20all%20of%20the%20time.%20Well%20chosen%20typefaces%20can%20bring%20a%20design%20to%20life%20and%20give%20a%20designer%20another%20tool%20t" title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;t=Better%20Typography%20On%20The%20Web" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web&amp;annotation=Websites%20have%20always%20had%20to%20make%20use%20of%20a%20pretty%20limited%20set%20of%20fonts%20and%20while%20there%E2%80%99s%20still%20no%20perfect%20solution%2C%20there%20are%20alternatives%20appearing%20all%20of%20the%20time.%20Well%20chosen%20typefaces%20can%20bring%20a%20design%20to%20life%20and%20give%20a%20designer%20another%20tool%20t" title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Better%20Typography%20On%20The%20Web&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=Websites%20have%20always%20had%20to%20make%20use%20of%20a%20pretty%20limited%20set%20of%20fonts%20and%20while%20there%E2%80%99s%20still%20no%20perfect%20solution%2C%20there%20are%20alternatives%20appearing%20all%20of%20the%20time.%20Well%20chosen%20typefaces%20can%20bring%20a%20design%20to%20life%20and%20give%20a%20designer%20another%20tool%20t" title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;t=Better%20Typography%20On%20The%20Web" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web&amp;body=Websites%20have%20always%20had%20to%20make%20use%20of%20a%20pretty%20limited%20set%20of%20fonts%20and%20while%20there%E2%80%99s%20still%20no%20perfect%20solution%2C%20there%20are%20alternatives%20appearing%20all%20of%20the%20time.%20Well%20chosen%20typefaces%20can%20bring%20a%20design%20to%20life%20and%20give%20a%20designer%20another%20tool%20t" title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Better%20Typography%20On%20The%20Web&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F&amp;title=Better%20Typography%20On%20The%20Web" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Better%20Typography%20On%20The%20Web%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Ftypography-web%2F2009%2F11%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/typography-web/2009/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you have the time?</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/do-you-have-the-time/2009/11/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/do-you-have-the-time/2009/11/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 15:07:17 +0000</pubDate>
		<dc:creator>Chrisi Reid</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[copy writing]]></category>
		<category><![CDATA[user time scales]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=269</guid>
		<description><![CDATA[Keep user time scales in mind when writing your website copy and building forms - knowing how long users are willing to spend on your pages will benefit you, the search engines and your customers!]]></description>
			<content:encoded><![CDATA[<p>Unlike traditional printed media, most websites are visited by people in a hurry; each individual page has very little time to make an impression on a user. Those users have a specific goal in mind, and little patience for a site that doesn&#8217;t make it as easy as possible to achieve it.</p>
<p>When building your site and writing your copy, be aware of the following time scales:<span id="more-269"></span></p>
<h2>Writing for Skimming Readers</h2>
<p>The majority of <strong>readers online spend less than half a second</strong> looking at any single element on the page. Eyetracking studies have revealed that a user will look at most webpage elements for approximately 0.1 seconds. Graphics and <strong>headlines should be clear and easy to read</strong> in one brief glance.</p>
<p>Use of headings and emphasis will make text easier to scan &#8211; and has the bonus effect of <a href="http://www.wsi-ebizsolutions.biz/seo-copywriting_38.html">creating optimised content</a> for search engines as well. Highlight critical information - but don&#8217;t be tempted to emphasise the whole of your text. Your goal is to <strong>create text that can be scanned for key phrases</strong>.</p>
<h2>Download Times and User Control</h2>
<p>Your <strong>site navigation also needs to react quickly</strong>, particularly if you have expanding menu items &#8211; site users want to feel as though they are in control of their actions and causing something to happen on the screen.  <strong>Optimise your menus to react within half a second</strong> to retain your user&#8217;s sense of control. However, if you&#8217;re creating menus that react on a &#8220;hover&#8221; of the mouse, <strong>don&#8217;t make things happen too quickly</strong> &#8211; flickering menus can disorient your users, and if the menu disappears before your user can click on the option they want, they are not likely to try again.</p>
<p>Be aware of page sizes and dynamic elements, too &#8211; your <strong>pages should load content within one second</strong> whenever possible.</p>
<h2>Bounce Rates &#8211; the Ten Second Rule</h2>
<p>The longer a visitor has to wait for a page to load, the less likely they are to stay on the page. The majority of<strong> users will leave a site that takes more than 10 seconds</strong> to load. Using tables for layout can slow down your page loading times &#8211; <strong>replace tables with CSS elements when possible</strong> to ensure that page text will load as quickly as possible.</p>
<h2>How Long Does It Take?</h2>
<p>Simplify the basic tasks on your site. <strong>If it takes a new user longer than a minute</strong> to complete a straightforward task, they are unlikely to finish it. Registering for a new user account, watching an instructional video or completing an enquiry form should be quick and painless for your customers. <strong>Don&#8217;t overcomplicate forms</strong> &#8211; make sure they only ask for what you really need, and that processing that form provides feedback confirming the successful enquiry immediately.</p>
<p>Keep the user time scales in mind when writing copy and building forms &#8211; it will benefit the search engines as well as your customers!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/writing-text-sells/2009/11/" rel="bookmark" class="crp_title">Writing Text That Sells</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/frequently-asked-questions/2010/07/" rel="bookmark" class="crp_title">Are they really Frequently Asked Questions?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/hunting-rogue-apostrophe-proofreading-web-copy/2010/04/" rel="bookmark" class="crp_title">Hunting the Rogue Apostrophe &#8211; Proofreading in Web Copy</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/site-built-now-what/2009/11/" rel="bookmark" class="crp_title">The Site Is Built&#8230; Now What Do I Do With It?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/e-commercewebsites/2010/07/" rel="bookmark" class="crp_title">5 Tips for Improving the e-Commerce Experience</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20&amp;bodytext=Keep%20user%20time%20scales%20in%20mind%20when%20writing%20your%20website%20copy%20and%20building%20forms%20-%20knowing%20how%20long%20users%20are%20willing%20to%20spend%20on%20your%20pages%20will%20benefit%20you%2C%20the%20search%20engines%20and%20your%20customers%21" title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20&amp;notes=Keep%20user%20time%20scales%20in%20mind%20when%20writing%20your%20website%20copy%20and%20building%20forms%20-%20knowing%20how%20long%20users%20are%20willing%20to%20spend%20on%20your%20pages%20will%20benefit%20you%2C%20the%20search%20engines%20and%20your%20customers%21" title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;t=Do%20you%20have%20the%20time%3F%20" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20&amp;annotation=Keep%20user%20time%20scales%20in%20mind%20when%20writing%20your%20website%20copy%20and%20building%20forms%20-%20knowing%20how%20long%20users%20are%20willing%20to%20spend%20on%20your%20pages%20will%20benefit%20you%2C%20the%20search%20engines%20and%20your%20customers%21" title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Do%20you%20have%20the%20time%3F%20&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=Keep%20user%20time%20scales%20in%20mind%20when%20writing%20your%20website%20copy%20and%20building%20forms%20-%20knowing%20how%20long%20users%20are%20willing%20to%20spend%20on%20your%20pages%20will%20benefit%20you%2C%20the%20search%20engines%20and%20your%20customers%21" title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;t=Do%20you%20have%20the%20time%3F%20" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20&amp;body=Keep%20user%20time%20scales%20in%20mind%20when%20writing%20your%20website%20copy%20and%20building%20forms%20-%20knowing%20how%20long%20users%20are%20willing%20to%20spend%20on%20your%20pages%20will%20benefit%20you%2C%20the%20search%20engines%20and%20your%20customers%21" title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Do%20you%20have%20the%20time%3F%20&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F&amp;title=Do%20you%20have%20the%20time%3F%20" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Do%20you%20have%20the%20time%3F%20%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fdo-you-have-the-time%2F2009%2F11%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/do-you-have-the-time/2009/11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Product Pages &#8211; Don&#8217;t Forget Descriptions</title>
		<link>http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/</link>
		<comments>http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 15:44:10 +0000</pubDate>
		<dc:creator>Chrisi Reid</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[product maintenance]]></category>
		<category><![CDATA[product management]]></category>
		<category><![CDATA[product pages]]></category>

		<guid isPermaLink="false">http://www.wsi-ebizsolutions.biz/blog/?p=173</guid>
		<description><![CDATA[Detailed descriptions and product photos can improve your customers' experience on an e-commerce shop. Make sure you have the tools to provide the information and images those customers will need.]]></description>
			<content:encoded><![CDATA[<p>Having an online store that can be open all day, every day to take advantage of customers who want to shop from the comfort of their couch can open up new marketing possibilities for many businesses. But when designing that store, it pays to remember that the products must generally sell themselves. As a website developer, you should always ensure that the tools site owners need are available in your site&#8217;s product management system.<span id="more-173"></span></p>
<h2>Make detailed descriptions and specifications easy.</h2>
<p>People shopping online can&#8217;t physically pick up the products listed to read the label, or ask a shop attendant for help. It&#8217;s up to the website to provide the information that would normally be on product packaging to the customer &#8211; and in a way that makes it easy for the customer to find the information that is most useful to them.  Customers often skim rather than reading long blocks of text &#8211; <strong>highlight important information</strong> by using headings, bold emphasis and lists rather than concealing it in a long paragraph.</p>
<p>This, of course, requires a product management system that makes it easy to create formatted content - especially when site owners would like to be able to add and update products themselves. Although rich text and WYSIWYG editors are commonplace on standard pages, some off-the-shelf e-commerce packages fail to provide the same functionality in the product manager.  <strong>Add a WYSIWYG editor to the product management page</strong> to make it much easier to create detailed descriptions geared towards the scanning behaviour of website customers.</p>
<p>Editors we&#8217;d recommend include:</p>
<ul>
<li><a href="http://tinymce.moxiecode.com/" target="_blank">TinyMCE</a> (and there&#8217;s a useful add-on for this, <a href="http://www.lunarvis.com/products/tinymcefilebrowserwithupload.php" target="_blank">TinyBrowser</a>, which extends the toolkit available)</li>
<li><a href="http://ckeditor.com/" target="_blank">CKeditor</a></li>
</ul>
<h2>Pictures speak a thousand words.</h2>
<p>Be aware of what the pictures say about the products.</p>
<p>A tiny and distorted product thumbnail is unlikely to convince a customer to click through to a product page. When uploading pictures, it&#8217;s always helpful if the product management software can resize images gracefully to <strong>create clear, sharp thumbnail images </strong>- or allows the site owner to upload a separate, smaller image for the thumbnail.</p>
<p>Adding multiple images &#8211; and the ability to view much larger detail images - to the main product page will help customers get a better idea of what your product is &#8211; the virtual equivalent of picking it up to check out the label.</p>
<h3>Product pages that get it right&#8230;</h3>

<a href='http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/skimreading/' title='skimreading'><img width="150" height="150" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/10/skimreading-150x150.jpg" class="attachment-thumbnail" alt="skimreading" title="skimreading" /></a>
<a href='http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/productphotos/' title='productphotos'><img width="150" height="150" src="http://www.wsi-ebizsolutions.biz/blog/wp-content/uploads/2009/10/productphotos-150x150.jpg" class="attachment-thumbnail" alt="productphotos" title="productphotos" /></a>

<p><a href="http://www.thewritersbureau.com" target="_blank">The Writers Bureau</a> makes it easy on each of their writing course pages to find out crucial information about their guarantee for each individual course. This is an often-overlooked piece of description that increases customer confidence in a product.</p>
<p><a href="http://www.farmercopleys.co.uk" target="_blank">Farmer Copleys</a> has product detail pages that make use of clean resized thumbnails, medium product images and click-throughs to larger images, which display their farm produce to best advantage. In addition, the product description does not omit details like weight and number of servings  &#8211; important for a customer who is shopping online.</p>
<p>Making it easy to maintain the products on an e-commerce site can help keep a site&#8217;s content fresh and help with search engine optimisation, too &#8211; so don&#8217;t forget the descriptions and the people adding them!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.wsi-ebizsolutions.biz/blog/shopping-online-holidays/2009/12/" rel="bookmark" class="crp_title">Shopping Online for the Holidays</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/writing-text-sells/2009/11/" rel="bookmark" class="crp_title">Writing Text That Sells</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/e-commercewebsites/2010/07/" rel="bookmark" class="crp_title">5 Tips for Improving the e-Commerce Experience</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/frequently-asked-questions/2010/07/" rel="bookmark" class="crp_title">Are they really Frequently Asked Questions?</a></li><li><a href="http://www.wsi-ebizsolutions.biz/blog/site-built-now-what/2009/11/" rel="bookmark" class="crp_title">The Site Is Built&#8230; Now What Do I Do With It?</a></li></ul></div>
<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;bodytext=Detailed%20descriptions%20and%20product%20photos%20can%20improve%20your%20customers%27%20experience%20on%20an%20e-commerce%20shop.%20Make%20sure%20you%20have%20the%20tools%20to%20provide%20the%20information%20and%20images%20those%20customers%20will%20need." title="Digg"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F" title="Sphinn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;notes=Detailed%20descriptions%20and%20product%20photos%20can%20improve%20your%20customers%27%20experience%20on%20an%20e-commerce%20shop.%20Make%20sure%20you%20have%20the%20tools%20to%20provide%20the%20information%20and%20images%20those%20customers%20will%20need." title="del.icio.us"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;t=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions" title="Facebook"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;annotation=Detailed%20descriptions%20and%20product%20photos%20can%20improve%20your%20customers%27%20experience%20on%20an%20e-commerce%20shop.%20Make%20sure%20you%20have%20the%20tools%20to%20provide%20the%20information%20and%20images%20those%20customers%20will%20need." title="Google Bookmarks"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F" title="FriendFeed"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;source=WSI+Blog+Website+Development+and+Internet+Marketing+Blog&amp;summary=Detailed%20descriptions%20and%20product%20photos%20can%20improve%20your%20customers%27%20experience%20on%20an%20e-commerce%20shop.%20Make%20sure%20you%20have%20the%20tools%20to%20provide%20the%20information%20and%20images%20those%20customers%20will%20need." title="LinkedIn"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;t=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions" title="MySpace"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://ping.fm/ref/?link=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;body=Detailed%20descriptions%20and%20product%20photos%20can%20improve%20your%20customers%27%20experience%20on%20an%20e-commerce%20shop.%20Make%20sure%20you%20have%20the%20tools%20to%20provide%20the%20information%20and%20images%20those%20customers%20will%20need." title="Ping.fm"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions" title="Reddit"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions&amp;url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F" title="Slashdot"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F&amp;title=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions" title="StumbleUpon"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
	<li><a rel="nofollow"  target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F" title="Technorati"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  target="_blank" href="http://twitter.com/home?status=Product%20Pages%20-%20Don%27t%20Forget%20Descriptions%20-%20http%3A%2F%2Fwww.wsi-ebizsolutions.biz%2Fblog%2Fproduct-pages-forget-descriptions%2F2009%2F10%2F" title="Twitter"><img src="http://www.wsi-ebizsolutions.biz/blog/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.wsi-ebizsolutions.biz/blog/product-pages-forget-descriptions/2009/10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
