<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Resound Design Blog</title>
<link>http://www.resounddesign.co.uk/blog</link>
<language>en</language>
<description>Resound Design's blog, thoughts and inspiration on websites, web design and web development.</description>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/resounddesignblog" /><feedburner:info uri="resounddesignblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>resounddesignblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
<title>How to get Active Directory and PHP talking</title>
<description>&lt;p&gt;If you're unfamiliar with Active Directory (usually referred to as AD), it is the service which Microsoft Windows networks generally use to organise, manage and authenticate network users.&amp;nbsp;The protocol used to access and query AD is called Lightweight Directory Access Protocol (or LDAP if you're in a hurry).&lt;/p&gt;
&lt;p&gt;It's possible, and very useful, to be able to integrate AD into PHP applications. This tends to be most useful for intranets and internally used web apps - allowing users to authenticate using their AD credentials (rather than having to remember another set of login details) and allowing the application to grab user data, contact details, permissions, etc.&lt;/p&gt;
&lt;p&gt;To get PHP talking to AD we highly recommend a freely available PHP class called &lt;a rel="nofollow" href="http://adldap.sourceforge.net/" target="_blank"&gt;adLDAP&lt;/a&gt;. adLDAP describes itself as "a PHP class that provides LDAP authentication and integration with Active Directory".&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There's lots you can do with adLDAP, but to get you started, here's how you can allow your users to log in with their AD details.&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;Log in users with Active Directory via PHP&lt;/h2&gt;
&lt;p style="text-align: center;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span&gt;First off, adLDAP required PHP's LDAP extension so check your phpInfo() to see if you have that installed. You'll also need the details of the AD you wish to connect to.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Download and install the latest version of the adLDAP class.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Configure it - open up adLDAP.php in your favourite editor. In most cases you'll simply need to find and change the following lines to match your details...&lt;/span&gt;
&lt;pre&gt;&lt;p&gt;protected $accountSuffix = "@&lt;em&gt;my-server&lt;/em&gt;.local";&lt;/p&gt;&lt;p&gt;protected $baseDn = "DC= &lt;em&gt;my-server&lt;/em&gt;,DC=local";&amp;nbsp;&lt;/p&gt;&lt;p&gt;protected $domainControllers = array("dc1.&lt;em&gt;my-server&lt;/em&gt;.local");&lt;/p&gt;&lt;p&gt;protected $adminUsername = "&lt;em&gt;jeff.jefferson&lt;/em&gt;";&lt;/p&gt;&lt;p&gt;protected $adminPassword = "&lt;em&gt;jeff's-password&lt;/em&gt;";&lt;/p&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Next, create your form. This simply needs to be an HTML form which receives the username and password of the user.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Now write the script. Here we assume the username and password are passed to this script as the variables $username and $password&lt;br /&gt;&lt;br /&gt;First, connect to AD, setting up a new instance of adLDAP. Or if that fails, display an error.&lt;/span&gt;
&lt;pre&gt;&lt;p&gt;try
{
    $adldap = new adLDAP();
}
catch(adLDAPException $e)
{
&lt;span style="white-space:pre"&gt;	&lt;/span&gt;echo $e;
&lt;span style="white-space:pre"&gt;	&lt;/span&gt;exit();   
}&lt;/p&gt;&lt;/pre&gt;
&lt;span&gt;Next, call the authenticate method of adLDAP and pass it the username and password received from the form. If the details match those in AD, then the function returns true.&lt;br /&gt;&lt;br /&gt;Here we've set the result of the authentication into the variable $valid, you'll see why in a moment.&lt;/span&gt;
&lt;pre&gt;&lt;p&gt;$valid = $adldap -&amp;gt; authenticate($username, $password);&lt;/p&gt;&lt;/pre&gt;
&lt;span&gt;Now, we can use $valid to get the script to respond appropriately. You can do what you like here - e.g. set a cookie to say they're logged in, or return a friendly error message.&lt;/span&gt;
&lt;pre&gt;&lt;p&gt;
if($valid)
{
&lt;span style="white-space:pre"&gt;	&lt;/span&gt;//authenticated successfully
}
else
{
&lt;span style="white-space:pre"&gt;	&lt;/span&gt;//authentication failed
}&lt;/p&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;That's just the start of what this powerful little class can do!&lt;/p&gt;
&lt;p&gt;A quick note on security - if you are passing network credentials over the web, make sure these are encrypted with an SSL certificate!&lt;/p&gt;
&lt;p&gt;There are plenty more examples included in &lt;a rel="nofollow" href="http://adldap.sourceforge.net/wiki/doku.php?id=documentation." target="_blank"&gt;adLDAP's excellent documentation&lt;/a&gt;.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=smts9LZ0T6E:WyjGbTDMMPg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=smts9LZ0T6E:WyjGbTDMMPg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/smts9LZ0T6E" height="1" width="1"/&gt;</description>
<pubDate>Tue, 08 May 2012 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/smts9LZ0T6E/how-to-get-active-directory-and-php-talking</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/how-to-get-active-directory-and-php-talking</feedburner:origLink></item>
<item>
<title>Our first visit to the DIBI Conference</title>
<description>&lt;p&gt;&lt;img class="float_right" src="imagefile104/0" alt="DIBI 2012" /&gt;First,  I thought I should answer the question everyone seems to ask. Is it  worth it and would I go again? Yes, and I hope that this article will  explain why. &lt;br /&gt;&lt;br /&gt;Ok,  so waking up at 5am is never any fun unless you're going on holiday but  that's what we did. We headed to the train station and caught the 6.30  am train to Newcastle. Two hours and a 20 minute walk in the rain later,  we arrived at The Sage Gateshead!!! &lt;br /&gt;&lt;br /&gt;What better way to be greeted out of the rain and cold than a cup of tea... Perfect start!&lt;br /&gt;&lt;br /&gt;As  you may know, the conference is a two track day, in that in one room  everyone talks about Design and the other is dedicated to Build. You can  pick and choose which speakers you would like to listen to and the guys  at DIBI made it very easy not to miss anything. &lt;br /&gt;&lt;br /&gt;There  were some fantastic speeches specifically from Paul Boag, Dan Rubin,  Cameron Moll and Seb Lee-Delisle. All of which I am really glad I chose  to listen to. Altogether they were thought provoking, encouraging,  impressive, amusing, motivating, engaging, inspiring and much more.&lt;br /&gt;&lt;br /&gt;Seb  Lee-Delisle impressed me with his live programming and enthusiasm for  learning something new. If you are a designer, try and code something  and vice versa. There are not enough hybrids out there and good things  can come out of trying something new.&lt;br /&gt;&lt;br /&gt;Paul  Boag's speech on "Client Centric Web Design" encouraged me to see  things from a different perspective. He gave some good real life  examples of how we can work well with clients and controversially stated  that Web Design is about the client first and the user second!&lt;br /&gt;&lt;br /&gt;Dan  Rubin and Cameron Moll were both thought provoking and inspiring. Dan  Rubin, mainly pointing out that we do not do enough! As developers and  designers we need to push ourselves and strive to be better.  Interestingly he spoke about how thought and language affect how we work  and how we live. The words we use and the way we perceive a certain  situation affects how we react to it.&lt;br /&gt;&lt;br /&gt;Cameron  Moll spoke about "The Burden of Being Creative" and the conclusion  manifested an impressive equation which, he feels, can define  creativity. &lt;br /&gt;&lt;br /&gt;We  came out of each speech with notes on recommended readings, new ideas,  important facts and how to generally strive for better and push  ourselves as developers and designers.&lt;br /&gt;&lt;br /&gt;They  allowed time, mostly, for people to ask questions using the "Question  Ball" and gave random giveaways in between speeches, when time  permitted.&lt;br /&gt;&lt;br /&gt;Not only did we learn a lot and listen to some amazing people, but the food was great!... very important :)&lt;br /&gt;&lt;br /&gt;We  were served lunch in chinese takeaway boxes, with chopsticks, with a  choice of two mains, with drinks and even a dessert. We also had sweet  snacks and fruit in the afternoon and as much tea and coffee as we wanted. &lt;br /&gt;&lt;br /&gt;Overall,  a good day out of the office and I walked away inspired by people who  choose to push the boundaries in their work and personal lives. &lt;br /&gt;&lt;br /&gt;Image courtesy of &lt;a title="The Sage - Newcastle" href="http://www.flickr.com/photos/adactio/" target="_blank"&gt;adactio&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=4RkisoXcxsE:AnVYSjTHXVA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=4RkisoXcxsE:AnVYSjTHXVA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/4RkisoXcxsE" height="1" width="1"/&gt;</description>
<pubDate>Fri, 27 Apr 2012 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/4RkisoXcxsE/our-first-visit-to-the-dibi-conference</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/our-first-visit-to-the-dibi-conference</feedburner:origLink></item>
<item>
<title>Tracking small business success</title>
<description>&lt;p&gt;&lt;img class="float_right" src="http://resounddesign.co.uk/imagefile102/0" alt="Success!" /&gt;&lt;/p&gt;
&lt;p&gt;It can be tricky to succeed in running a small business - it can even be tricky knowing whether or not you are succeeding! We've come up with a few tips to help you see how your business is going...&lt;/p&gt;
&lt;p&gt;Simply, you need to start by deciding where you're going. This can be as simple as a quick mission statement that sums you up.&lt;/p&gt;
&lt;p&gt;Once you know what makes you tick - you need to translate that into something you can measure. What's success to you?&amp;nbsp;Having a high turnover?&amp;nbsp;Taking on new clients?&amp;nbsp;Doing lots of billable hours?&amp;nbsp;Great customer service?&amp;nbsp;Projects delivered quickly?&lt;/p&gt;
&lt;p&gt;The possibilities go on. Choose the indicators which are most important to you and your mission - and get tracking them!&lt;/p&gt;
&lt;p&gt;Knowing how your business is progressing is really important. Now you know what to look at, there are different ways of tracking your business health. You might just want to keep it in a spreadsheet, jot it on a piece of paper, or a whiteboard for everyone to see.&lt;/p&gt;
&lt;p&gt;Or even better, you might want to consider &lt;a href="http://www.successdesk.co.uk" target="_blank"&gt;our handy free web-based KPI tracking system,&amp;nbsp;Success Desk&lt;/a&gt;. We love helping businesses reach their goals and this a great way to keep an eye on your aims...&lt;/p&gt;
&lt;p&gt;Using Success Desk to track your KPIs has a number of benefits...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;img class="float_right" src="http://resounddesign.co.uk/imagefile101/350" alt="Success Desk KPI Dashboard" /&gt;You can set up multiple users - so your whole team can log in and see the stats&lt;/li&gt;
&lt;li&gt;It helps you keep the stats up-to-date - if you forget you'll get reminded by email!&lt;/li&gt;
&lt;li&gt;Automatically takes your stats and makes them into handy graphs&lt;/li&gt;
&lt;li&gt;Throw your most important KPIs onto your dashboard - you can then see your business health at a&amp;nbsp;quick glance, spot warning signs and celebrate successes!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Aim high! Knowing where you stand can help you push to meet your aims, or motivate you knowing you've smashed your targets!&lt;/p&gt;
&lt;p&gt;Success Desk is still in beta, &lt;a href="http://www.successdesk.co.uk" target="_blank"&gt;so please do sign up and get involved&lt;/a&gt; - we'd love to hear your&amp;nbsp;feedback on how we can make it better and more useful to your business.&lt;/p&gt;
&lt;p&gt;Success Desk is currently a contender for Heart Internet's website of the month competition! If you like it we'd be grateful if you voted for Success Desk...&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.heartinternet.co.uk/wotm/"&gt;&lt;img src="http://www.heartinternet.co.uk/images/wotm/vote_btn_lrg.png" border="0" alt="Heart Internet Reseller Hosting" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=VHFzCbgsgKw:Pq4iSIfTmUE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=VHFzCbgsgKw:Pq4iSIfTmUE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/VHFzCbgsgKw" height="1" width="1"/&gt;</description>
<pubDate>Wed, 11 Apr 2012 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/VHFzCbgsgKw/tracking-small-business-success</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/tracking-small-business-success</feedburner:origLink></item>
<item>
<title>A Helpful List of UK Conferences</title>
<description>&lt;p&gt;Web  design and development conferences are currently at the forefront of  our minds. &amp;nbsp;We have been searching for conferences happening around the  UK this year and I have been slightly surprised not to find a full list  somewhere to help. So here is one I made earlier!&lt;br /&gt;&lt;br /&gt;The list below is of all the web related conferences that I thought were most  interesting and most relevant. If you know of any which are not listed below, please feel free to contribute via the comments box below. &lt;br /&gt;&lt;br /&gt;I  know it is nearly April, however, I thought it would be useful to start  from the beginning of the year, to show what we have missed and what we  hope will be back soon.&lt;/p&gt;
&lt;h3&gt;UK Web Conferences 2012&lt;/h3&gt;
&lt;table style="height: 224px; width: 800px;" border="0" align="center"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;h4&gt;&amp;nbsp;Date&lt;/h4&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;h4&gt;&amp;nbsp;Conference&lt;/h4&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;h4&gt;&amp;nbsp;Location&lt;/h4&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;January 18th-19th&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;a title="New Adventures in Web Design Conference" href="http://2012.newadventuresconf.com/" target="_blank"&gt;New Adventures in Web Design&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Nottingham&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;February 10th&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;a title="jQuery Conference" href="http://events.jquery.org/2012/uk/" target="_blank"&gt;jQuery Conference&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Oxford&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;February 24th-25th&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;a title="PHP Conference" href="http://www.phpconference.co.uk/" target="_blank"&gt;PHP Conference&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;London&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;March 19th-23rd&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;a title="The Usability Week 2012" href="http://www.nngroup.com/events/edinburgh/agenda.html" target="_blank"&gt;The Usability Week 2012 Conference&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Edinburgh&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;April 18th-20th&lt;br /&gt;&lt;/td&gt;
&lt;td&gt;&lt;a title="UX London" href="http://2012.uxlondon.com/" target="_blank"&gt;UX London&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;London&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;April 16th-17th&lt;/td&gt;
&lt;td&gt;&lt;a title="Design It Build It" href="http://www.dibiconference.com/" target="_blank"&gt;Design It. Build It.&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Newcastle&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;May 14th-16th&lt;/td&gt;
&lt;td&gt;&lt;a title="Future of Web Design" href="http://www.futureofwebdesign.com/" target="_blank"&gt;Future Of Web Design&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;London&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;May 24th-27th&lt;/td&gt;
&lt;td&gt;&lt;a title="@media Conference" href="http://atmedia11.webdirections.org/" target="_blank"&gt;@media&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;London&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;June 15th&lt;/td&gt;
&lt;td&gt;&lt;a title="Ampersand" href="http://2012.ampersandconf.com/" target="_blank"&gt;Ampersand&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Brighton&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;September 7th&lt;/td&gt;
&lt;td&gt;&lt;a title="dConstruct" href="http://2012.dconstruct.org/" target="_blank"&gt;dConstruct&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Brighton&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;October&lt;/td&gt;
&lt;td&gt;&lt;a title="Future of Web Apps" href="http://futureofwebapps.com/landing-page" target="_blank"&gt;Future Of Web Apps&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;London&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;October&lt;/td&gt;
&lt;td&gt;&lt;a title="Future of Mobile" href="http://future-of-mobile.com/landing-page" target="_blank"&gt;Future of Mobile&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;London&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;nbsp;November&lt;/td&gt;
&lt;td&gt;&lt;a title="Heart and Sole" href="http://www.heartandsole.org.uk/" target="_blank"&gt;Heart and sole&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&amp;nbsp;Portsmouth&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=B_DJImcNNbs:rChcs0Zf66w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=B_DJImcNNbs:rChcs0Zf66w:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/B_DJImcNNbs" height="1" width="1"/&gt;</description>
<pubDate>Wed, 28 Mar 2012 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/B_DJImcNNbs/a-helpful-list-of-uk-conferences</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/a-helpful-list-of-uk-conferences</feedburner:origLink></item>
<item>
<title>Nominated for website of the month again</title>
<description>&lt;p&gt;&lt;img class="float_right" src="http://resounddesign.co.uk/imagefile98/0" alt="Vote Matt Lollar" /&gt;Our friend Matt Lollar's website has made it through to the final round of Heart Internet's website of the month awards for March 2012.&lt;/p&gt;
&lt;p&gt;This is the second month in a row we've had a website nominated for an award, with Make Your City Shine winning special recognition with second place last month.&lt;/p&gt;
&lt;p&gt;We originally designed Matt's site back in 2009, and have been supporting and helping Matt make the best of it since then. Matt Lollar Photography offers fantastic wedding and portrait photography services, as well as one-on-one tuition. We really love Matt's photography and did our best to make this center stage on his site, as it really does speak for itself. We hope you like it too!&lt;/p&gt;
&lt;p&gt;The final round is all down to public vote, so &lt;a rel="nofollow" href="http://www.heartinternet.co.uk/wotm/" target="new"&gt;please do vote for us&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.heartinternet.co.uk/wotm/" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile95/0" alt="Vote Button" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=t0SWZRyoYOQ:99jI57iGUYE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=t0SWZRyoYOQ:99jI57iGUYE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/t0SWZRyoYOQ" height="1" width="1"/&gt;</description>
<pubDate>Thu, 15 Mar 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/t0SWZRyoYOQ/nominated-for-website-of-the-month-again</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/nominated-for-website-of-the-month-again</feedburner:origLink></item>
<item>
<title>Is Pinterest of any interest?</title>
<description>&lt;p&gt;&lt;img class="float_right" src="http://resounddesign.co.uk/imagefile97/0" alt="Pinterest" /&gt;&lt;/p&gt;
&lt;p&gt;Pinterest, a virtual, social pinboard, has recently gained a lot of attention and popularity, but what's it all about?&lt;/p&gt;
&lt;h2&gt;So what is it?&lt;/h2&gt;
&lt;p&gt;Essentially, Pinterest is an online pinboard, to which anyone can pin anything to, you can curate your own lists, and browse others too.&lt;/p&gt;
&lt;p&gt;You categorise you pins into boards - popular examples include - &lt;em&gt;Products I Love&lt;/em&gt;, &lt;em&gt;Places to Visit&lt;/em&gt;, &lt;em&gt;Craft Ideas&lt;/em&gt; and more than often &lt;em&gt;Cute Kittens&lt;/em&gt;!&lt;/p&gt;
&lt;p&gt;You can spend your days following your friends' boards and pins, browsing through popular pins or categories, and even set up collaborative pinboards.&lt;/p&gt;
&lt;p&gt;If you see a 'pin' you like, you can always choose to 'like' or even repin it to one of your own boards.&lt;/p&gt;
&lt;h2&gt;How is it different?&lt;/h2&gt;
&lt;p&gt;We've seen sites gain hype like this in the past, some stick around but some don't. What makes Pinterest different?&lt;/p&gt;
&lt;p&gt;Firstly, Pinterest is really visual. If your content can't be summed up in a single image, it won't work here. This makes Pinterest really suited to more visual genres such as home decor and again, kittens.&lt;/p&gt;
&lt;p&gt;Additionally, it's been said that it gives a better, or at least more exciting, picture of yourself. Perhaps due to the fact it reflects aspirations (such as hobbies, your dream home, or cute kittens).&lt;/p&gt;
&lt;p&gt;Finally, Pintereset is really nicely designed. It feels to me that they've put effort into planning and creating a beautiful looking site which is a pleasure to use.&lt;/p&gt;
&lt;h2&gt;What do I care?&lt;/h2&gt;
&lt;p&gt;As with all hyped social network sites, I imagine you're wondering how it could benefit you, or your business.&lt;/p&gt;
&lt;p&gt;It's always important to consider your particular industry before jumping on the bandwagon. If you're a plumber or a lawyer it's probably not a brilliant idea, but if you're a photographer, or someone who makes awesome looking cakes, then there could be something in it for you.&lt;/p&gt;
&lt;p&gt;I've already seen sites pick up some significant traffic from Pinterest, so get it right and maybe it could work for you?&lt;/p&gt;
&lt;h2&gt;Get in on the action&lt;/h2&gt;
&lt;p&gt;To start out on Pinterest you need to 'Request an invite', but don't worry that usually comes through within a day or so.&lt;/p&gt;
&lt;p&gt;Then get following some great people!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://pinterest.com/resounddesign/"&gt;&lt;img src="https://a248.e.akamai.net/passets.pinterest.com.s3.amazonaws.com/images/follow-on-pinterest-button.png" alt="Follow Me on Pinterest" width="156" height="26" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=qOXAgVDLeQk:-scUovz8pxY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=qOXAgVDLeQk:-scUovz8pxY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/qOXAgVDLeQk" height="1" width="1"/&gt;</description>
<pubDate>Wed, 14 Mar 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/qOXAgVDLeQk/is-pinterest-of-any-interest</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/is-pinterest-of-any-interest</feedburner:origLink></item>
<item>
<title>The Dreaded IE6</title>
<description>&lt;p&gt;&lt;a title="IE6 Funeral" href="http://ie6funeral.com/" target="_blank"&gt;&lt;img class="float_right" src="imagefile96/0" alt="RIP IE6" /&gt;&lt;/a&gt;Even though, here at Resound, we have not been building websites for IE6 for a long while now, we thought we should make it official and post it here on our blog.&lt;/p&gt;
&lt;p&gt;We still here about people using IE6 and it makes us sad. Using IE6 in 2012, is like watching TV in black and white... in fact, it's worse. You don&amp;rsquo;t get the full experience and not only that but the security has gone through some dramatic changes over the years. It&amp;rsquo;s time to say goodbye.&lt;/p&gt;
&lt;p&gt;We would like to encourage all IE6 users out there to upgrade. Please consider the following &lt;a title="IE6 Countdown" href="http://www.ie6countdown.com/" target="_blank"&gt;IE6 countdown&lt;/a&gt;. Currently at 7.7% worldwide, this is a great improvement to previous years however, it is still 7.7% too many.&lt;/p&gt;
&lt;p&gt;If you are worried about upgrading then please read the following page on &lt;a title="Why move off of IE 6" href="http://www.ie6countdown.com/educate-others.aspx" target="_blank"&gt;why to upgrade and how&lt;/a&gt; and to help you say goodbye properly here is a link to the &lt;a title="IE6 Funeral" href="http://ie6funeral.com/" target="_blank"&gt;funeral of IE6&lt;/a&gt;, which took place on the 1st of March 2010.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=8xYcQ93gM0o:1t1UxoaTUTs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=8xYcQ93gM0o:1t1UxoaTUTs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/8xYcQ93gM0o" height="1" width="1"/&gt;</description>
<pubDate>Wed, 29 Feb 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/8xYcQ93gM0o/the-dreaded-ie6</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/the-dreaded-ie6</feedburner:origLink></item>
<item>
<title>Make Your City Shine nominated for award</title>
<description>&lt;p&gt;This month one of our recent website projects has made it through to the final round of Heart Internet's Website of the Month competition.&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;What's Make Your City Shine all about?&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_right" src="http://resounddesign.co.uk/imagefile94/0" alt="MYCS Cards" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="web-design/make-your-city-shine-sheffield-website"&gt;Make Your City Shine&lt;/a&gt; is a project aiming to make the world a better place, starting with the city of Sheffield.&lt;/p&gt;
&lt;p&gt;The site aims to turn the tide on anti-social behaviour, negativity and hopelessness many experience today by encouraging people to get involved in making a difference to someone's world - simply by showing kindness, and using little acts of kindness to transform their community.&lt;/p&gt;
&lt;p&gt;You can sign up to the site in order to tell your story - how someone's act of kindness made your day, or how you got involved and helped make your city shine.&lt;/p&gt;
&lt;p&gt;So, if you like the sound of that, why not &lt;a rel="nofollow" href="http://www.makeyourcityshine.com/page/tell-your-story" target="new"&gt;get involved&lt;/a&gt; with the project?&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;Show your support with a vote&lt;/h2&gt;
&lt;p&gt;If you like the site, we'd love for you to head on over to Heart Internet's website, and &lt;a rel="nofollow" href="http://www.heartinternet.co.uk/wotm/" target="new"&gt;vote for Make Your City Shine&lt;/a&gt; by rating it out of 5. You have until the end of the month to do so, and the winner will be announced at the beginning of March. Your vote would be greatly appreciated!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.heartinternet.co.uk/wotm/" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile95/0" alt="Vote Button" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=JcSkh-ObBCo:dajb0RU_OLE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=JcSkh-ObBCo:dajb0RU_OLE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/JcSkh-ObBCo" height="1" width="1"/&gt;</description>
<pubDate>Wed, 15 Feb 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/JcSkh-ObBCo/make-your-city-shine-nominated-for-award</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/make-your-city-shine-nominated-for-award</feedburner:origLink></item>
<item>
<title>Our MD in The Star Business Monthly</title>
<description>&lt;p&gt;&lt;img class="float_right" src="imagefile93/0" alt="Andrew Seaton - Star Business Monthly" /&gt;Our managing director, Andrew Seaton, also managing director for &lt;a title="Resolve IT Solutions" href="http://www.resolveitsolutions.co.uk" target="_blank"&gt;Resolve IT Solutions&lt;/a&gt;, was in The Star Business Montly (page 15) yesterday, the 1st of February 2012. He was recently interviewed for the Business Monthly Q&amp;amp;A and answered some interesting questions including "What was your best decision in business?" and "What's the best piece of advice you have ever received".&lt;/p&gt;
&lt;p&gt;Head over to &lt;a title="The Star Business Monthly" href="http://www.starbusinessmonthly.co.uk/index.asp" target="_blank"&gt;The Star Business Monthly&lt;/a&gt; website to read the full Q&amp;amp;A.&lt;/p&gt;
&lt;p&gt;Photo courtesy of &lt;a title="Jodi Hinds Photography" href="http://www.jodihinds.com" target="_blank"&gt;Jodi Hinds&lt;/a&gt;.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=37O3rM30YBY:kyssoSK_ols:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=37O3rM30YBY:kyssoSK_ols:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/37O3rM30YBY" height="1" width="1"/&gt;</description>
<pubDate>Thu, 02 Feb 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/37O3rM30YBY/our-md-in-the-star-business-monthly</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/our-md-in-the-star-business-monthly</feedburner:origLink></item>
<item>
<title>Look what 2012 has in store for us and the web</title>
<description>&lt;p&gt;&lt;img class="float_right" src="imagefile92/0" alt="2012" /&gt;&lt;/p&gt;
&lt;p&gt;In my last post I wrote about &lt;a href="blog/4-things-our-little-web-design-company-learnt-in-2011"&gt;what we've learnt over the last year&lt;/a&gt;. This time I thought I'd look ahead at what 2012 has in store for our little web design company, as well as for the bigger picture of web design.&lt;/p&gt;
&lt;div class="spacer"&gt;&amp;nbsp;&lt;/div&gt;
&lt;h2&gt;1) Always Improve&lt;/h2&gt;
&lt;p&gt;We're getting better at what we do. We're now taking time regularly to invest into our skills. We&amp;rsquo;ve been racking up badges on the fantastic resouce that is &lt;a rel="nofollow" href="http://www.teamtreehouse.com" target="_blank"&gt;Treehouse&lt;/a&gt;, as well as growing a number of other more specific skills via a few other resources.&lt;/p&gt;
&lt;p&gt;And we&amp;rsquo;re improving by reviewing the way we code, and working towards a more organised and efficient code base, and the possibility of taking advantage of a framework - ultimately producing a groundbreaking next generation of the Resound CMS by the end of the year.&lt;/p&gt;
&lt;h2&gt;2) We want to grow&lt;/h2&gt;
&lt;p&gt;We're growing in number already, and we're looking forward to taking on bigger projects. We're currently in the midst of recruiting an extra developer to a our little team. It&amp;rsquo;ll be exciting to see how our &amp;lsquo;&lt;a href="page/about-us"&gt;meet the team&lt;/a&gt;&amp;rsquo; page has changed come 2013!&lt;/p&gt;
&lt;h2&gt;3) One size fits all&lt;/h2&gt;
&lt;p&gt;I think we&amp;rsquo;ll see responsive design take off for the little guys this year - it&amp;rsquo;s been big talk in the web design industry for a long while now, and really has emerged as the best solution for adapting a site to work on handheld devices such as the iPhone and iPad.&lt;/p&gt;
&lt;p&gt;We think it&amp;rsquo;s about time this became a standard, and hope we get to see this advancement filter through to the likes of small business websites.&lt;/p&gt;
&lt;h2&gt;4) Get the full benefit of the web&lt;/h2&gt;
&lt;p&gt;We&amp;rsquo;ve already seen the rise of the web app. I currently use web-based apps for my email client, calendar, time tracking, task list and keeping an eye on social media, and I&amp;rsquo;m sure many of you are starting to do similarly.&lt;/p&gt;
&lt;p&gt;Twin this with the realisation that your website is way more than a sales tool - but can revolutionise the way you run your business and organise your time - and you can start to see the real advantages custom web apps can have to a small business.&lt;/p&gt;
&lt;h2&gt;In conclusion...&lt;/h2&gt;
&lt;p&gt;So there&amp;rsquo;s a snapshot of what we think 2012 will look like from where we&amp;rsquo;re sat. I&amp;rsquo;m sure the year will throw some curveballs, but I&amp;rsquo;m excited to see how it turns out!&lt;/p&gt;
&lt;p&gt;&lt;small&gt;Image courtesy of&amp;nbsp;&lt;a rel="nofollow" href="http://www.flickr.com/photos/notionscapital/" target="new"&gt;notionscapital&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=IehLDWwbGLQ:O7HR3yf2qYM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=IehLDWwbGLQ:O7HR3yf2qYM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/IehLDWwbGLQ" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jan 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/IehLDWwbGLQ/look-what-2012-has-in-store-for-us-and-the-web</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/look-what-2012-has-in-store-for-us-and-the-web</feedburner:origLink></item>
<item>
<title>Resound Design are a Recommended Agency!</title>
<description>&lt;p&gt;&lt;a href="http://www.recommendedagencies.com/" target="_blank"&gt;&lt;img class="float_right" src="imagefile91/0" alt="Recommended Agency Register" /&gt;&lt;/a&gt;Happy  New Year everyone! We hope you had a wonderful Christmas and you are  filled with new energy and excitement for the year ahead. &lt;br /&gt;&lt;br /&gt;The  new year brings new exciting times for Resound and there is one  particular development which we can't wait to share. We are so pleased  to say that we are now a &lt;a title="Resound Design - Recommended Agency" href="http://www.recommendedagencies.com/profile/3201/" target="_blank"&gt;Recommended Agency on RAR+&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;What is RAR+?&lt;/h2&gt;
&lt;p&gt;The  Recommended Agency Register has been gathering client feedback and  recommendations since 2004 in order to identify the best agencies to  work with. They now have a bespoke online tool to show which companies  have been recommended and for what. Resound Design being a Recommended  Agency means that our clients have recommended us as a good Web Design  Agency. &lt;br /&gt;&lt;br /&gt;This  is brilliant! What more do we need to motivate us to be creative in  design and development. Knowing that are clients are happy and achieving  this status makes all the hard work worth it and we can't wait to do  more. &lt;br /&gt;&lt;br /&gt;Thank you so much to our clients who recommended us!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=8xfR_GX0AHM:Uq8tK5YGUAI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=8xfR_GX0AHM:Uq8tK5YGUAI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/8xfR_GX0AHM" height="1" width="1"/&gt;</description>
<pubDate>Wed, 04 Jan 2012 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/8xfR_GX0AHM/resound-design-are-a-recommended-agency</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/resound-design-are-a-recommended-agency</feedburner:origLink></item>
<item>
<title>4 things our little web design company learnt in 2011</title>
<description>&lt;p&gt;It's been a great year for us, and both the web and our little web design company have really grown throughout 2011. Here's 4 things our web design crew have learned this year...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;1) @font-face is awesome&lt;/h2&gt;
&lt;p&gt;In the past year use of techniques like @font-face have really taken off - it seems we're finally reaching the tipping point where most web browsers support such features. We like @font-face so much &lt;a href="blog/in-your-font-face"&gt;we blogged about it back in May&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;@font-face allows us to choose from among thousands of different typefaces when designing websites. This along with CSS3 has vastly expanded the possibilities and removed the limitations on how beautiful the web can look.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;2) Don't be afraid of frameworks &amp;amp; libraries&lt;/h2&gt;
&lt;p&gt;Early this year we expanded our toolkit to include jQuery, moving beyond basic Javascript, to include some more advanced and asynchronous interaction, as well as display and animation techniques.&lt;/p&gt;
&lt;p&gt;jQuery has enabled us to do some pretty nifty things really quickly. I fondly remember the eureka moment when I realised the convoluted 10 to 20 lines of code used to make an AJAX call could be done in one line with jQuery (and it was a short line!).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;3) Project process is important&lt;/h2&gt;
&lt;p&gt;I&amp;rsquo;d say this is the most important thing we&amp;rsquo;ve learnt as a business - having a firm idea of your standard process, and how your project should progress. &lt;a href="blog/our-web-design-project-process-in-5-easy-steps"&gt;We blogged about our process back in June&lt;/a&gt;, and since then we&amp;rsquo;ve seen a large number of benefits from having a standard process...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It helps us give good customer service - it sets the expectations of clients, keeps the number of changes under control, and allows us to set more definite deadlines, and meet them too!&lt;/li&gt;
&lt;li&gt;It aids teamwork - it&amp;rsquo;s helped us know what we each need to do and to focus on our specific parts of a project.&lt;/li&gt;
&lt;li&gt;It&amp;rsquo;s shown me that design is important - our process has helped us focus on the design stage of projects and get things looking spot on&lt;/li&gt;
&lt;li&gt;Having a standard process means we can change it! It&amp;rsquo;s helped us see where bottlenecks are and ultimately helps us work more efficiently.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;4) Think about hosting&lt;/h2&gt;
&lt;p&gt;And be prepared to grow too! We&amp;rsquo;ve seen a number of projects take off in a big way this year, outgrowing shared and even dedicated server hosting.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ve also worked with a number of projects requiring us to work with some very specific hosting setups to achieve some clever things for our clients, for example, getting Active Directory talking to PHP hosted on an IIS server.&lt;/p&gt;
&lt;p&gt;Even if you have the most beautiful, professional, effective website - if the speed of the website is lacking, or the hosting space or specs are inadequate, then you&amp;rsquo;ll be missing out!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;So, what about next year?&lt;/h2&gt;
&lt;p&gt;At Resound, we&amp;rsquo;re really looking forward to what 2012 holds, and we&amp;rsquo;re sure there&amp;rsquo;ll be plenty to learn!&lt;/p&gt;
&lt;p&gt;To mention but a few, we&amp;rsquo;re looking forward to responsive design really taking off, HTML5 being taken up even more, experimenting with more frameworks to help us provide a more efficient service, and continuing to grow our little company in number, knowledge and experience!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=xrVMbQbfLKE:xperMFDfVrQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=xrVMbQbfLKE:xperMFDfVrQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/xrVMbQbfLKE" height="1" width="1"/&gt;</description>
<pubDate>Wed, 21 Dec 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/xrVMbQbfLKE/4-things-our-little-web-design-company-learnt-in-2011</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/4-things-our-little-web-design-company-learnt-in-2011</feedburner:origLink></item>
<item>
<title>URL Rewriting</title>
<description>&lt;p&gt;&lt;img class="float_right" src="imagefile90/0" alt="Diversion" /&gt;URL  rewriting has been around for some time now and has become standard  practice when building a new website. Do you know if your website is  rewriting your URLs? Let's first clarify what this means.&lt;/p&gt;
&lt;h2&gt;What is URL rewriting?&lt;/h2&gt;
&lt;p&gt;No  matter how simple your website is in terms of content and  functionality, it should be built around a database and a Content  Management System. This means that you are able to add, edit or delete  any content yourself, keeping your website up to date without having to  give your web developers a call and more money. If this is so then it is  possible that you would end up with URLs looking like the one below:&lt;/p&gt;
&lt;p dir="ltr"&gt;&lt;a href="http://www.mywebsite.co.uk/section.php?id=8"&gt;www.yourdomain.co.uk/section.php?id=8&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;If  this looks familiar, then we may safely say that your website is not  rewriting your URLs. The aim of URL rewriting is to turn the above into  something more meaningful. &amp;nbsp;From looking at the above URL, no one can  tell what the page is about. However, if we rewrite this into something  like the following, we instantly know that this page is about your  portfolio.&lt;/p&gt;
&lt;p dir="ltr"&gt;&lt;a href="http://www.yourdomain.co.uk/our-portfolio"&gt;www.yourdomain.co.uk/our-portfolio&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;This  is so much more welcoming, useful and interesting, and it becomes even  more so when we are talking about e-commerce websites, categories and  products. Imagine the following:&lt;/p&gt;
&lt;p dir="ltr"&gt;&lt;a href="http://www.yourdomain.co.uk/products.php?id=10"&gt;www.yourdomain.co.uk/products.php?cat_id=3&amp;amp;id=10&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;The  above URL does not tell us much about the product apart from that it is  a product. It would be much better to have something like this:&lt;/p&gt;
&lt;p dir="ltr"&gt;&lt;a href="http://www.yourdomain.co.uk/books/url-rewriting"&gt;www.yourdomain.co.uk/books/url-rewritin&lt;/a&gt;g&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Why should we bother?&lt;/h2&gt;
&lt;p&gt;This  is all great, but why should we bother? There are a few reason why this  makes a massive difference and why it should be standard practice.&lt;br /&gt;&lt;br /&gt;1. Readability&lt;br /&gt;First  and foremost, we are building websites that we want everyone to be able  to read. Making our URLs more meaningful means that it will improve the  experience for those using assistive technologies such as screen  readers. Having URLs filled with random letters and numbers will not  mean anything to those who cannot see the actual page. However, if the  URL describes what is on the page then the visitor will know from early  on whether this page will interest them or not. Help your visitors out  and give them as much readable content and as you can. &lt;br /&gt;&lt;br /&gt;2. Hide Web Technologies&lt;br /&gt;Another  very important reason to rewrite your URLs is to make it harder for  malicious users to execute an SQL injection. You can tell a malicious  user a lot by presenting them with a URL full of numbers and letters. We  are in no way saying that by rewriting your URLs, you will prevent them  from trying or even from succeeding however we want to deter them as  much as we can. &lt;br /&gt; &lt;br /&gt;3. Improved SEO&lt;br /&gt;By  rewriting your URLs there is a better chance that your website/page  will be ranked higher than those who have not. Giving search engines a  URL that means something and that is relevant to the content on the  page, encourages them to think that your page is more relevant to the  search term than a webpage with a URL which does not say much. &lt;br /&gt;&lt;br /&gt;Are you getting the best out of your website?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=LJ2n04PFmMs:WV6wEfxfoVw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=LJ2n04PFmMs:WV6wEfxfoVw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/LJ2n04PFmMs" height="1" width="1"/&gt;</description>
<pubDate>Wed, 07 Dec 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/LJ2n04PFmMs/url-rewriting</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/url-rewriting</feedburner:origLink></item>
<item>
<title>Some of our favourite tweets</title>
<description>&lt;p&gt;Like most techies, we've often got one ear to the twittersphere. We thought we'd share a few of our favourite tweets, and tweeters, with you...&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.twitter.com/boagworld" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile85/0" alt="Tweet - Boagworld" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Boagworld is a fantastic resource and community for web designers and developers, headed up by a nice chap called Paul Boag. We tend to agree with this quote!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.twitter.com/teaboxonline" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile88/0" alt="Tweet - TeaBox" /&gt;&lt;/a&gt;Tea Box are a Sheffield-based purveyor of yummy teas. We love tea and we like quotes, so this one ticks all the boxes!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.twitter.com/serafinowicz" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile87/0" alt="Tweet - Peter Serafinowicz" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Peter Serafinowicz is a funny man who was responsible for the BBC's Look Around You comedy series, and quite oddly also voiced Darth Maul in the Phantom Menace. We definitely like humour and word play at Resound.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.twitter.com/resolveits" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile86/0" alt="Tweet - Resolve IT" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Resolve IT are our friends, and if you didn't notice their new website (lovingly created by us) has been live for a month or two now - we've even managed to iron out some of the imperfections now!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.twitter.com/resounddesign" target="new"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile89/0" alt="Tweet - Resound Design" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Resound Design are a fantastic little web design company from Sheffield... Ok, it's us! Follow &lt;a rel="nofollow" href="http://www.twitter.com/resounddesign" target="new"&gt;us on twitter&lt;/a&gt; to see what we're up to, and as you can see, right now there's still chance to &lt;a href="jobs"&gt;come join us!&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=FZM_zeQghJw:d6ojeRebTCI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=FZM_zeQghJw:d6ojeRebTCI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/FZM_zeQghJw" height="1" width="1"/&gt;</description>
<pubDate>Wed, 23 Nov 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/FZM_zeQghJw/some-of-our-favourite-tweets</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/some-of-our-favourite-tweets</feedburner:origLink></item>
<item>
<title>Come and work with us!</title>
<description>&lt;p&gt;&lt;img class="float_none" src="imagefile84/0" alt="The Team 2011" /&gt;This is us! We are friendly, hard working and love food and, of course, the web. We are hoping to find some one to add to our team who will fit in well with how we work.&lt;br /&gt;&lt;br /&gt;A typical day. Arrive between 8.30-9:00am and make a good hot cup of tea to warm the belly and prepare for the work ahead.&lt;span&gt; &lt;/span&gt;Spend some time reading through twitter updates and emails, aiming to learn something new and be aware of any urgent client work.&lt;/p&gt;
&lt;p&gt;Plan the day ahead and work hard, usually working on 2-3 projects a day, this helps to make sure the projects are always on the move and in time for their deadlines. 11:00am is banana time, a slow release energy fruit that will keep me focused until lunch.&lt;/p&gt;
&lt;p&gt;Try to spend an hour away from the screen for lunch to rest the eyes and stay fresh (this does not always work). Check emails 2-3 times a day, trying not to be too distracted by them but to always be around to answer any urgent client queries. Finish at 5.30pm.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Hot Drinks: 3-4 cups of tea and maybe a coffee&lt;/li&gt;
&lt;li&gt;Cold Drinks: 2 glasses of water&lt;/li&gt;
&lt;li&gt;Pieces Fruit: At least 2&lt;/li&gt;
&lt;li&gt;Sweet: Most of the time there is cake, biscuits or some kind of temptation that I cannot resist&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Does this sound like you? We would love to find someone to join our team who is like us. We are looking for a Web Designer and Developer to help us out with our ever-growing list of projects.&lt;/p&gt;
&lt;p&gt;Have a read through our &lt;a title="Job Description" href="files/Web-Designer-&amp;amp;-Developer-Job-Description-Oct-2011.pdf" target="_blank"&gt;job description&lt;/a&gt; and &lt;a title="Application form" href="https://resolve.wufoo.com/forms/resound-design-web-designer-developer/" target="_blank"&gt;apply online&lt;/a&gt;. We are really looking forward to meeting our new team member!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=nWvDwW7Numc:R73UdeaNgsk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=nWvDwW7Numc:R73UdeaNgsk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/nWvDwW7Numc" height="1" width="1"/&gt;</description>
<pubDate>Wed, 09 Nov 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/nWvDwW7Numc/come-and-work-with-us</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/come-and-work-with-us</feedburner:origLink></item>
<item>
<title>How to make your site behave for everyone - Part 1</title>
<description>&lt;p&gt;There  are many, many web browsers out there, and I mean a lot - from the  Microsoft's Internet Explorer (and it's many version numbers) to Apple's  Safari (both Mac and Windows versions) to Firefox, Chrome, Opera and  more (not to mention mobile browsers such as Safari Mobile, Android  Chrome and Opera Mini).&lt;br /&gt;&lt;br /&gt;So,  when building a website, you just have to build it and it will appear  to work the same regardless of the browser your using, right? Sadly not. As you can see in the following image, which shows the acid test (which was created to test web standards across browsers), the same code produces violently different results between Internet Explorer 7 (on the left) and Safari 5 for Windows (on the right).&lt;/p&gt;
&lt;h2&gt;&lt;img class="float_none" src="imagefile82/0" alt="Acid Test 2 in IE7 vs Safari 5" /&gt;Why does this problem exist?&lt;/h2&gt;
&lt;p&gt;A  nice bunch of people called the Worldwide Web Consortium (or W3C for  short) decide standards for the web. These help browsers to know how to  interpret the code that makes up a website. While without their guidance  the web would be a very incoherent mess, you can see that it's not all  plain sailing!&lt;br /&gt;&lt;br /&gt;Even  with these standards, the web moves fast - leaving leeway in how these  rules should be interpreted. Newer sites adopt features not supported by  older browsers, and too many end users don't update their browser for  one reason or another, while some browsers just plain ignore parts of  the standards. All of which results in a fine mess.&lt;/p&gt;
&lt;h2&gt;I'm glad that's all the problems we have!&lt;/h2&gt;
&lt;p&gt;Oh,  but that's not the only thing we have to deal with when building and  testing a site. Although we'll mostly be focussing on cross browser  specifics here, there other such overlapping factors which we need to  bear in mind...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Device capabilities - e.g. will your menu work on a touch screen tablet?&lt;/li&gt;
&lt;li&gt;Screen size - is the user on a tiny mobile phone screen, or a 32" widescreen monitor?&lt;/li&gt;
&lt;li&gt;Accessibility - e.g. is the user browsing using an audio assisted browser? What if a colour blind user views your site?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As  you can see there are big challenges ahead when developing a website  for today's web - especially if you want your site to behave for  everyone. You'll be glad to hear there are a number of techniques and  suggestions that go towards solving these cross browser woes - many of  which we'll be outlining and exploring in the next article of this  series.&lt;br /&gt;&lt;br /&gt;Stay tuned!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=CGX5imV75-U:iIK4f9eQrkk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=CGX5imV75-U:iIK4f9eQrkk:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/CGX5imV75-U" height="1" width="1"/&gt;</description>
<pubDate>Tue, 25 Oct 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/CGX5imV75-U/how-to-make-your-site-behave-for-everyone---part-1</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/how-to-make-your-site-behave-for-everyone---part-1</feedburner:origLink></item>
<item>
<title>Discoveries Part 5 - Obsessed with tea</title>
<description>&lt;p&gt;You may already know but Resound Design loves tea!! We try our best to keep ourselves hydrated and thus keep our creative and technical juices flowing with a freshly brewed, warm cup of tea as often as we can. We like all sorts of tea and always like to try new flavours (hint! hint! If you are a tea based company, we would be happy to sample some of your new teas)&lt;/p&gt;
&lt;p&gt;Why am I telling you this? Firstly because it means you know a little bit more about us than you may have known before and secondly so you can see the hidden meaning behind my discovery this week. Whilst having my usual browse through &lt;a title="Site Inspire" href="http://siteinspire.com" target="_blank"&gt;Site Inspire&lt;/a&gt;&lt;a href="http://siteinspire.com/"&gt;&lt;/a&gt;, I came across a gorgeous website based around tea. So I stopped, to have a proper look round.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_none" src="imagefile81/0" alt="This is leaf" /&gt;&lt;/p&gt;
&lt;p&gt;The website is &lt;a title="This is Leaf" href="http://www.thisisleaf.co.uk" target="_blank"&gt;thisisleaf.co.uk&lt;/a&gt; and I am glad I took the time to have a browse through. Not only is it about something we really enjoy but the website is smooth, welcoming and easy to use and read. The photography is great and really welcomes you into their world of tea and good quality food and drink. The jQuery transitions between background images, pages and menus are just right for setting the mood and give the website an overall good vibe. All in all, a great web experience.&lt;/p&gt;
&lt;p&gt;Shame there isn't a Leaf in Sheffield!&lt;/p&gt;
&lt;p&gt;Know of any other tea based websites worth experiencing? Post your favourites below, we would love to see more.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=iAqhCvzYQSY:sAcll28nqgg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=iAqhCvzYQSY:sAcll28nqgg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/iAqhCvzYQSY" height="1" width="1"/&gt;</description>
<pubDate>Wed, 12 Oct 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/iAqhCvzYQSY/obsessed-with-tea</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/obsessed-with-tea</feedburner:origLink></item>
<item>
<title>How to make favicons and why they're my favourite!</title>
<description>&lt;h2&gt;So, what is a favicon?&lt;/h2&gt;
&lt;p&gt;Favicon, short for 'favourites icon', is the little icon you see next to a website's URL at the top of your browser, or when you bookmark a website. Here's a few examples to set the scene...&lt;br /&gt;&lt;img class="float_none" src="imagefile78/0" alt="Favicons" /&gt;It's a really little ouch, but for 16 pixels square, we think it really helps bring a level of quality to a site. Here&amp;rsquo;s how to go about making an effective little icon...&lt;/p&gt;
&lt;h2 style="text-align: center;"&gt;How to make a favicon&lt;br /&gt;&lt;br /&gt;&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span&gt;First of all choose an appropriate image. Remember this has to work at really small sizes, so it may be best to use an emblem, initial or part of your logo.&lt;br /&gt;&lt;br /&gt;Take a look at our logo below - the full thing scaled down to 16 pixels just looks a mess! Take the &amp;lsquo;R&amp;rsquo; emblem and scale it down and it works a treat - still reflecting the brand and looking lovely too.&lt;/span&gt;&lt;span&gt;&lt;img class="float_none" src="imagefile79/0" alt="Logo Favicons Compared" /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Once you&amp;rsquo;ve got your image - make sure you have a copy as big as 256 pixels square - this because an icon (.ico) file can actually contain multiple sizes. You can also make use of transparency in your icon - so you&amp;rsquo;re best saving this image as a PNG-24 graphic with transparency.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;You&amp;rsquo;re not done just yet. You need to turn your icon into the right format. Some say you can simply take your file and rename it to favicon.ico, but for many reasons that&amp;rsquo;s not a good idea! It must be a .ico file through and through!&lt;br /&gt;&lt;br /&gt;We use a tool called &lt;a rel="nofollow" href="http://www.icofx.ro" target="_blank"&gt;IcoFX&lt;/a&gt; for this.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Take your pre-prepared PNG file and open it up in IcoFX. Choose &amp;lsquo;True Color + Alpha Channel (32 Bits)&amp;rsquo; and &amp;lsquo;256 x 256&amp;rsquo;. Hit &amp;lsquo;okay&amp;rsquo; until you end up on the main editing page.&lt;br /&gt;&lt;img class="float_none" src="imagefile80/0" alt="IcoFX New Image Options" /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Now right-click in the left-hand pane under the thumbnail of your  icon and hit &amp;lsquo;New Image&amp;rsquo;. Now click &amp;lsquo;48 x 48&amp;rsquo; and &amp;lsquo;OK&amp;rsquo;. Then repeat for  &amp;lsquo;32 x 32&amp;rsquo; and again all the way down to &amp;lsquo;16 x 16&amp;rsquo;. This means your icon  file now contains several sizes of your icon!&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;All that&amp;rsquo;s left to do is &amp;lsquo;File&amp;rsquo; and &amp;lsquo;Save as&amp;rsquo; to create your .ico file.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Now, upload the favicon.ico file to your web server. Crack open your HTML and throw this into the  tags...&lt;br /&gt;&lt;/span&gt;
&lt;pre&gt;&lt;span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;And that&amp;rsquo;s it! Just a note to say it doesn&amp;rsquo;t always show up straight away in Internet Explorer - hit that F5 key lots!&lt;/p&gt;
&lt;h2&gt;Bonus tip!&lt;/h2&gt;
&lt;p&gt;If you also save your icon as a PNG file 114px square, and add the additional HTML into the  tag, your icon will also come up on shortcuts on Apple iPhones, iPads and Android devices too!&lt;/p&gt;
&lt;pre&gt;&lt;br /&gt;&lt;/pre&gt;
&lt;p&gt;Swap apple-touch-icon-precomposed for apple-touch-icon and Apple devices will automatically add their default shininess!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=CTVCD8WB5gw:BlRNveoWvCQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=CTVCD8WB5gw:BlRNveoWvCQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/CTVCD8WB5gw" height="1" width="1"/&gt;</description>
<pubDate>Wed, 28 Sep 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/CTVCD8WB5gw/how-to-make-a-favicon-and-why-theyre-my-favourite</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/how-to-make-a-favicon-and-why-theyre-my-favourite</feedburner:origLink></item>
<item>
<title>HTML Emails for Mobile Web</title>
<description>&lt;p style="text-align: left;"&gt;&lt;strong&gt;Mobile vs Desktop&lt;/strong&gt;&lt;br /&gt; We recently spent some time looking through the global statistics shared by StatCounter and they provide interesting results on browser versions, screen resolutions and social media. The one we are most interested in, however, is mobile versus desktop users.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;We are all aware that the number of mobile users is increasing, but by how much? We hear that mobile will outdo desktop soon and the future of the web will be just mobile, but how realistic is this and how soon? The global statistics show that the increase is not as rapid as we may first assume. &amp;nbsp;Looking at the table of statistics on StatsCounter we can see that the number of mobile users from August 2009 to August 2011 has increased by only 6.02%. This explains why the graph below seems uneventful. Having said that, these statistics are important and the fact that the graph is uneventful does not mean we should discard it and think about it later.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;img class="float_none" src="imagefile77/0" alt="StatCounter" /&gt;&lt;/p&gt;
&lt;!-- You may change the values of width and height above to resize the chart --&gt;
&lt;p style="text-align: left;"&gt;Source: &lt;a rel="nofollow" href="http://gs.statcounter.com/#mobile_vs_desktop-ww-monthly-200908-201108" target="new"&gt;StatCounter Global Stats - Mobile vs. Desktop Market Share&lt;/a&gt;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;There is one area of mobile web which has drawn us to look into these statistics and that is the development of email campaigns. Email campaigns are a really effective tool if they are done well and making sure that the future of the web includes them is important.&amp;nbsp;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;strong&gt;Mobile Email&lt;/strong&gt;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;The above statistics show the number of desktop users versus mobile users, but where do they check their email? Since 2009 Campaign Monitor has been tracking &lt;a rel="nofollow" href="http://www.campaignmonitor.com/stats/email-clients/" target="new"&gt;these exact statistics&lt;/a&gt; for the emails sent out via their service.  The market share for June 2011 shows that mobile devices are second in the list, overtaking Hotmail, Gmail and Thunderbird. &amp;nbsp;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;Are your email campaigns developed with mobiles in mind? If not, then they should be, according to the above stats. This is not all bad news - it doesn't just mean changing the way you develop your email campaigns, it also means you can start developing better emails. A large amount of users read their emails on an iOS operating system which means they can render CSS3 animations and more. We think this is great as it's giving email campaigns a push into the future and, fingers crossed, other mobile and desktop email clients will follow suit.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;Images and stats courtesy of &lt;a rel="nofollow" href="http://gs.statcounter.com/#mobile_vs_desktop-ww-monthly-200908-201108" target="_blank"&gt;StatCounter&lt;/a&gt; and &lt;a title="Campaign Monitor" rel="nofollow" href="http://www.campaignmonitor.com/stats/email-clients/" target="_blank"&gt;CampaignMonitor&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=4p59JUACka4:aImGncv7shg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=4p59JUACka4:aImGncv7shg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/4p59JUACka4" height="1" width="1"/&gt;</description>
<pubDate>Mon, 05 Sep 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/4p59JUACka4/html-emails-for-mobile-web</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/html-emails-for-mobile-web</feedburner:origLink></item>
<item>
<title>'Meet the Team' Pages</title>
<description>&lt;p style="text-align: left;"&gt;An increasing number of websites, especially in creative industries, feature a &amp;lsquo;meet the team&amp;rsquo; page of some sort. We&amp;rsquo;ve seen these done well, and we&amp;rsquo;ve seen them done not so well - I thought it was about time we took a look at reasons for having a &amp;lsquo;meet the team&amp;rsquo;, a few examples, and few lessons to learn!&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile76/0" alt="Meet The Team Pages" /&gt;&lt;/p&gt;
&lt;h2&gt;So, why have a &amp;lsquo;meet the team&amp;rsquo; page?&lt;/h2&gt;
&lt;p style="text-align: left;"&gt;A &amp;lsquo;meet the team&amp;rsquo; page can help you by...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Demystifying your company, showing the world that you&amp;rsquo;re real and approachable.&lt;/li&gt;
&lt;li&gt;It adds an in invaluable human touch, showing that you&amp;rsquo;re not just corporate robots, and you&amp;rsquo;re not going to rip them off - it improves trust.&lt;/li&gt;
&lt;li&gt;Helping clients put names to faces and know who they&amp;rsquo;re really talking to!&lt;/li&gt;
&lt;li&gt;Adding a personal as well as a human touch, helps clients identify with you and get to know you better, you may even find you have some shared interests!&lt;/li&gt;
&lt;li&gt;Communicating who does what and who they&amp;rsquo;ll need to talk to in certain circumstances.&lt;/li&gt;
&lt;li&gt;Sharing your unique flare - done well this can communicate your unique selling points and your individual brand very successfully.&lt;/li&gt;
&lt;li&gt;Showing off your numbers, whether you&amp;rsquo;re big or small - you can use it to show off your 500-strong workforce, or you&amp;rsquo;re a small but effective 2 person team!&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Some &amp;lsquo;meet the team&amp;rsquo; pages that we like&lt;/h2&gt;
&lt;p style="text-align: left;"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile74/0" alt="Amazee Meet the team" /&gt;&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;a rel="nofollow" href="http://www.amazeelabs.com/en/team" target="_blank"&gt;Amazee Labs&lt;/a&gt; shows a colourful and characterful round-up of their staff, complete with contact and social media details.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile73/0" alt="Arc90 Meet the team" /&gt;&lt;a rel="nofollow" href="http://arc90.com/people/" target="_blank"&gt;Arc90&lt;/a&gt; shows a quick overview page of their crew, along with an individual profile for each. I really like the way they've split theirs up by department, and enjoyed the quirky little image changes that occur when you hover of a photo.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile75/0" alt="Resound Meet the team" /&gt;And, if we can blow our own trumpet for a second, I quite like our &lt;a href="page/about-us"&gt;meet the team&lt;/a&gt; pages! We encorporated our team into our 'about us' page - this is likely to change as the team grows though! This then links off to an individual page for each of us, with a quick burst of information and fun facts about us all.&lt;/p&gt;
&lt;p style="text-align: left;"&gt;What are your favourite 'meet the team' pages or conventions?&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=Se6iBKSKJqQ:X83U15w4TPU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=Se6iBKSKJqQ:X83U15w4TPU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/Se6iBKSKJqQ" height="1" width="1"/&gt;</description>
<pubDate>Wed, 31 Aug 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/Se6iBKSKJqQ/meet-the-team-pages</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/meet-the-team-pages</feedburner:origLink></item>
<item>
<title>Discoveries Part 4 - Andrew Zuckermans Bird Book</title>
<description>&lt;p style="text-align: justify;"&gt;Andrew Zuckerman, an American film maker and photographer, has put together a fantastic portfolio of birds. Once on the website, we were hooked for some time. As humans, we are naturally intrigued by other creatures and for this reason we browsed for quite a while however it is not just about the creatures. Attracting people to your website and having them stick around is also down to how your content is presented.&lt;br /&gt;&lt;img class="float_none" src="imagefile72/350" alt="Blue Fronted Amazon Large" /&gt;&lt;br /&gt;Andrew Zuckerman, being a skilled photograpger, captures great detail; this plus the design of the website encourages visitors to keep looking. The website is clean, simple and easy to use and the main content is the photography which makes Andrews creativity stand out. There is no fuss and the website does not try too hard to impress, it does not need to.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;See more of Andrews work at &lt;a title="Creature Book" href="http://www.creaturebook.com/" target="_blank"&gt;www.creaturebook.com&lt;/a&gt;.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;Have you discovered any brilliant websites recently? We would love to hear about them.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=cOrGdQ_S-c4:-g0hlvkIHsc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=cOrGdQ_S-c4:-g0hlvkIHsc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/cOrGdQ_S-c4" height="1" width="1"/&gt;</description>
<pubDate>Fri, 05 Aug 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/cOrGdQ_S-c4/discoveries-part-4-andrew-zuckermans-bird-book</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/discoveries-part-4-andrew-zuckermans-bird-book</feedburner:origLink></item>
<item>
<title>How to clear Internet Explorer's Temporary Internet Files</title>
<description>&lt;p&gt;To make browsing the web a little faster, web browsers like Internet Explorer (IE) often use what's known as a cache or &amp;lsquo;temporary internet files&amp;rsquo;.&lt;/p&gt;
&lt;p&gt;The browser stores a temporary copy of any websites you visit frequently on your computer, so it doesn&amp;rsquo;t have to download the files every time you want them - making it a little quicker for you.&lt;/p&gt;
&lt;p&gt;We often have problems such as clients not being able to see changes we&amp;rsquo;ve made to their site, the answer to which is quite often that they&amp;rsquo;re still viewing a cached version of the website in question.&lt;/p&gt;
&lt;p style="text-align: center;"&gt;&lt;img class="float_none" src="http://resounddesign.co.uk/imagefile70/0" alt="Internet Explorer" /&gt;&lt;/p&gt;
&lt;p&gt;With this being such a common task, we thought it&amp;rsquo;d be useful to outline how to empty the cache of the most common browser - Microsoft Internet Explorer.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span&gt;In IE click 'Tools' and then select 'Internet Options'&lt;/span&gt;&lt;img class="float_right" src="http://resounddesign.co.uk/imagefile71/0" alt="IE9 Delete Browsing History" /&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;In the box that opens up select the 'General' tab&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Under the 'Browsing History' heading click the 'Delete...' button (or 'Delete Files...' in older versions)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;In the box that opens make sure that 'Temporary Internet files' is ticked, then click the Delete button (You may not get this option in older versions)&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;IE's cache is now emptied, and you should be able to see any changes afresh!&lt;/p&gt;
&lt;p&gt;And here's a bonus tip which might save you some time - if you press Ctrl and F5 then this will refresh the page regardless of any cached version on your computer!&lt;/p&gt;
&lt;p&gt;Image courtesy of &lt;a href="http://www.flickr.com/people/volantra/" target="_blank"&gt;volantra&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=SeyHeIYjZgA:9Ps7-Qnzgxo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=SeyHeIYjZgA:9Ps7-Qnzgxo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/SeyHeIYjZgA" height="1" width="1"/&gt;</description>
<pubDate>Wed, 03 Aug 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/SeyHeIYjZgA/how-to-clear-internet-explorers-temporary-cache</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/how-to-clear-internet-explorers-temporary-cache</feedburner:origLink></item>
<item>
<title>Is article writing really that easy?</title>
<description>&lt;p style="text-align: justify;"&gt;It can be deceiving. There are so many blogs and articles on the web today that it seems like anyone can do it. So you set up your blog, easy enough, and sit down to write; it's not long before you decide that you've got writer's block. Anyone &lt;em&gt;can &lt;/em&gt;do it; There is a rational thinking process behind the whole thing that can help you write new content for your site without copywriting experience. Why, What, When, How...&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong&gt;Why &lt;/strong&gt;&lt;br /&gt; First you need to identify why you have the blog in the first place. What is the aim of having your blog? Do you want to tell the world something in particular? Are you aiming to drive people to your new fab site? Is it just to remind people that you still exist? To show off your thorough knowledge of a specific subject? Or all of the above? Define a list of reasons for it and what you hope to achieve from having this new blog. If you're not scribbling down some notes already, then really, you shouldn't have one.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong&gt;What &lt;/strong&gt;&lt;br /&gt; Once you have defined your reasons and your ideal results, the next step is to consider your topics. I know this is the hard part, but having finished the 'Why', you are now more prepared to come up with the 'What'. The subject largely depends on the reason for it being there in the first place. If you have a specific subject which you need to base it on, then you have a good head start. Either way, you need to think about what people look for in an article.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;What do we hope to gain from reading articles? Don't forget to look at it from the receivers point of view; use your experience to help you out. What were you searching for? Did you find what you wanted, if not why? Generally, we hope to gain knowledge from articles, we don't want to spend ages reading them, but pick up ideas/answers/reasons quickly.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong&gt;When&lt;br /&gt; &lt;/strong&gt;Another major factor to consider is the 'When'. Not so much the when to write it or even when to publish it but how up-to-date the topic is. Does your chosen topic need to be current? If you are trying to draw people into your site then this is an important aspect. The more current your topic the more likely that people are searching for new found knowledge on the subject, answers or ideas.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;&lt;strong&gt;How &lt;br /&gt; &lt;/strong&gt;Don't forget the structure of the article. You could have chosen the best topic in the world but no one is going to read it if it is hard to read. Be sure to break it down into easy to read paragraphs and include keywords. Be aware that most people are likely to skim through paragraphs looking for relevant words. Bullet points are a great way to keep it simple but effective.&lt;/p&gt;
&lt;p style="text-align: justify;"&gt;Good luck!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=O5qM8RmZhWE:3mvMmyhbd0s:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=O5qM8RmZhWE:3mvMmyhbd0s:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/O5qM8RmZhWE" height="1" width="1"/&gt;</description>
<pubDate>Mon, 18 Jul 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/O5qM8RmZhWE/is-article-writing-really-that-easy</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/is-article-writing-really-that-easy</feedburner:origLink></item>
<item>
<title>3 of our favourite web apps for small businesses</title>
<description>&lt;p&gt;In recent years, the world of the web has been the rise of the web app - a piece of software built using web-based technologies. And although they haven&amp;rsquo;t been around that long, it&amp;rsquo;s difficult to see how we could live without them now!&lt;/p&gt;
&lt;p&gt;We thought we&amp;rsquo;d share a few apps that we find useful here at Resound. We hope other small businesses come to find them indispensable too!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.toggl.com" target="_blank"&gt;&lt;img class="float_none blog_logo" src="http://resounddesign.co.uk/imagefile68/0" alt="Toggl Logo" /&gt;&lt;/a&gt;We use Toggl to track the time we spend on projects and other day-to-day tasks. Toggl is really easy to use, simply based around a start/stop button.&lt;/p&gt;
&lt;p&gt;Toggl boasts a desktop version, mobile web version (which works fantastically), a mobile app (although the Android version is a bit iffy), and offers plenty of useful reports too. Plus it&amp;rsquo;s free for basic use.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://docs.google.com" target="_blank"&gt;&lt;img class="float_none blog_logo" src="http://resounddesign.co.uk/imagefile67/0" alt="Google Docs Logo" /&gt;&lt;/a&gt;To call Google Docs a web-based version of Microsoft Office would be to undersell it. In my opinion Google Docs is superior to Office for a number of reasons...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;You can access your documents from anywhere at any time.&lt;/li&gt;
&lt;li&gt;You can easily collaborate and share with others&lt;/li&gt;
&lt;li&gt;It&amp;rsquo;s free!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That said, it isn&amp;rsquo;t as familiar or as fully-featured as Microsoft Office... yet!.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://www.wufoo.com" target="_blank"&gt;&lt;img class="float_none blog_logo" src="http://resounddesign.co.uk/imagefile69/0" alt="Wufoo Logo" /&gt;&lt;/a&gt;Wufoo is an incredibly easy-to-use and generally very well made app for building web forms and collecting data. Wufoo are so good that they were bought for $35 million earlier this year! We use Wufoo for a number of things, collecting requirements for projects, getting feedback from clients and has even been a key part of our recruitment process.&lt;/p&gt;
&lt;p&gt;I hope you find those as useful as we do. Are there any web-based tools that you couldn&amp;rsquo;t live without?&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=aFtB8ocQ4as:MBMVaCHs6zY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=aFtB8ocQ4as:MBMVaCHs6zY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/aFtB8ocQ4as" height="1" width="1"/&gt;</description>
<pubDate>Tue, 05 Jul 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/aFtB8ocQ4as/3-of-our-favourite-web-apps-for-small-businesses</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/3-of-our-favourite-web-apps-for-small-businesses</feedburner:origLink></item>
<item>
<title>Discoveries Part 3</title>
<description>&lt;h1&gt;A Flash Discovery&lt;br /&gt;&lt;/h1&gt;
&lt;p&gt;&lt;a title="Flash CS5" href="http://www.adobe.com/products/flash.html" target="_blank"&gt;&lt;img class="float_right" src="http://www.resounddesign.co.uk/imagefile61/150" alt="Flash CS5" /&gt;&lt;/a&gt;Yes, that's right, &lt;a title="Flash CS5" href="http://www.adobe.com/products/flash.html" target="_blank"&gt;Flash&lt;/a&gt; is still being used as a web development tool and flash developers still exist but it's not all bad. Google has been improving their indexing for flash files since 2008 and it is this that has saved the Flash loving community.&lt;/p&gt;
&lt;p&gt;We have to admit that there are some pretty good flash websites around and we have come across some really good examples.&lt;/p&gt;
&lt;h2&gt;4 Great Flash Websites&lt;/h2&gt;
&lt;p&gt;&lt;a href="http://www.griplimited.com/" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile62/0" alt="Grip Limited" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.griplimited.com/" target="_blank"&gt;Grip Limited&lt;/a&gt;&lt;br /&gt;Grip Limited are an advertising agency aiming to do things a little differently to everyone else. The site has been created in such a way to fit a lot of information in to a limited amount of space. The column layout combined with the easy navigation system is brilliant.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.worklifebalancecentre.org/" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile66/0" alt="Work Life Balance Centre" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.worklifebalancecentre.org/" target="_blank"&gt;Work Life Balance Centre&lt;/a&gt;&lt;br /&gt;A simple, unobtrusive flash website which incorporates a few warming animations that make you feel welcome and that keep you browsing the site. The information is easy to get to and the text is easy to read. Perfect for the services they offer.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.antonygormley.com" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile58/0" alt="Antony Gormley" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.antonygormley.com" target="_blank"&gt;Antony Gormley&lt;/a&gt;&lt;br /&gt;The online portfolio of Antony Gormley; this website is so minimalist that all the users' attention is concentrated on the artists work. Exactly what you would want for an artists online portfolio.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.bloedoranjegallery.nl/" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile64/0" alt="Nike Bloed Oranje Gallery" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.bloedoranjegallery.nl/" target="_blank"&gt;Bloed Oranje Gallery&lt;/a&gt;&lt;br /&gt;We know it's not a recent addition to the www but it is worth showing in our list of Flash Discoveries. The Momkai team have worked well to create a friendly yet professional website for Nike's Bloed Oranje campaign which supported the Dutch team at the World Cup in 2010.&lt;/p&gt;
&lt;p&gt;As we know, the way we develop for web is constantly changing and changing fast. As web developers we need to keep on top of new ways to build stunning websites and there is one major addition to web development we cannot ignore when discussing the use of Flash; and that is &lt;a title="jQuery" href="http://jquery.com/" target="_blank"&gt;jQuery&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;jQuery v Flash&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;jQuery brings so much more to web development; the jQuery library offers an endless amount of effects and there is also a long list of plugins which can bring all kinds of animation and creativity to a website, it makes you wonder why anyone would use flash at all.&lt;/p&gt;
&lt;p&gt;Although the examples above are great looking websites, a lot of the reasons/advantages to using flash have now been eliminated because of jQuery. Lets take for example worklifebalancecentre.org; The welcome screen begins with the title fading in and out which can now be developed using the jQuery effects &lt;a title="jQuery fadeIn" href="http://api.jquery.com/fadeIn/" target="_blank"&gt;.fadeIn()&lt;/a&gt; and &lt;a title="jQuery fadeOut" href="http://api.jquery.com/fadeOut/" target="_blank"&gt;.fadeOut()&lt;/a&gt;. Once you enter the site, the "Hello" title with its accompanying text slides in from the right hand side. This can now be replaced with the jQuery &lt;a title="jQuery animate" href="http://api.jquery.com/animate/" target="_blank"&gt;.animate()&lt;/a&gt; effect, and the list goes on.&lt;/p&gt;
&lt;p&gt;Here at Resound Design, although we can appreciate the creativity of websites developed using Flash, we are big fans of jQuery and what it can bring to the websites we develop. Give us your opinion, we would love to hear your views on jQuery v Flash development.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=Y7DV6z3Z2RQ:e0Mh8mwPGSU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=Y7DV6z3Z2RQ:e0Mh8mwPGSU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/Y7DV6z3Z2RQ" height="1" width="1"/&gt;</description>
<pubDate>Mon, 20 Jun 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/Y7DV6z3Z2RQ/discoveries-part-3-a-flash-discovery</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/discoveries-part-3-a-flash-discovery</feedburner:origLink></item>
<item>
<title>Our web design project process, in 5 easy steps</title>
<description>&lt;p&gt;Back  in July 2010 we wrote about our 8 step approach to logo design - which,  of course, ended up being referenced in an article entitled &lt;a rel="nofollow" href="http://www.theglobeandmail.com/report-on-business/small-business/exit/john-warrillow/are-you-offering-your-customers-the-whole-egg/article1784609/" target="new"&gt;'Are you offering your customers the whole egg?' &lt;/a&gt;in a Canadian newspaper!&lt;/p&gt;
&lt;p&gt;In  recent months we've been working on a similar project process for  our mainstay, designing and developing websites. The aim is to help us  provide a clear and professional service to our clients, plan ahead and  make deadlines.&lt;/p&gt;
&lt;p&gt;So,  without further ado, here's our web design process in all its glory.  This is excerpted from a document we hand out to all our clients when  embarking on a web design project.&lt;/p&gt;
&lt;ul id="blog_project_process"&gt;
&lt;li id="blog_project_1"&gt; &lt;span&gt;
&lt;h1&gt;1. Plan&lt;/h1&gt;
&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile65/0" alt="Plan" /&gt; &lt;/span&gt;
&lt;p&gt;Once  you've given us the thumbs up, we start by planning the project. The  planning stage begins with us chatting with you, understanding your  needs, and ends with a nice set of documents.&lt;/p&gt;
&lt;p&gt;These  documents include a sitemap (a rationalised list of all the pages on  your site) and also a content delivery plan (a list of what text,  images, etc we need from you and when).&lt;/p&gt;
&lt;p&gt;There  are also a few bits of housekeeping at this stage; some admin like  contracts and deposits, plus some geeky behind-the-scenes tasks to help  get your project underway.&lt;/p&gt;
&lt;/li&gt;
&lt;li id="blog_project_2"&gt; &lt;span&gt;
&lt;h1&gt;2. Design&lt;/h1&gt;
&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile60/0" alt="Design" /&gt; &lt;/span&gt;
&lt;p&gt;Our designer then takes all this planning into account and begins sketching some concept designs for your website.&lt;/p&gt;
&lt;p&gt;We'll  begin by mocking up the design for the front page of your site and,  once it's looking good, we'll review this design with you and revise the  design taking into account your feedback.&lt;/p&gt;
&lt;p&gt;We  then round the design stage off by mocking up all the other important  pages your site will need, and after some more reviewing and amending,  when you're happy, we'll sign off the design.&lt;/p&gt;
&lt;/li&gt;
&lt;li id="blog_project_3"&gt; &lt;span&gt;
&lt;h1&gt;3. Build&lt;/h1&gt;
&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile59/0" alt="Build" /&gt; &lt;/span&gt;
&lt;p&gt;Once  the content for your website is ready (like we planned in stage one),  our developers can go to work taking the mock designs and making them  into the real thing!&lt;/p&gt;
&lt;p&gt;We'll  also build your content management system here, as well as making sure  all code is as valid as possible, and testing your site in all the major  browsers, so we know the site is ship-shape and Bristol fashion.&lt;/p&gt;
&lt;p&gt;Once again, we'll review the site with you at this stage and make any amendments necessary.&lt;/p&gt;
&lt;/li&gt;
&lt;li id="blog_project_4"&gt; &lt;span&gt;
&lt;h1&gt;4. Launch&lt;/h1&gt;
&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile63/0" alt="Launch" /&gt; &lt;/span&gt;
&lt;p&gt;Once the site's ready we'll ask you to give us the final sign-off.&lt;/p&gt;
&lt;p&gt;We'll  then make sure a few technical things are in order, such as your  domains, hosting and email, and if all is okay, we'll make the site live  for you!&lt;/p&gt;
&lt;/li&gt;
&lt;li id="blog_project_5"&gt; &lt;span&gt;
&lt;h1&gt;5. And Beyond&lt;/h1&gt;
&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile57/0" alt="Beyond" /&gt; &lt;/span&gt;
&lt;p&gt;Wait,  the story's not over just yet. We pride ourselves on sticking around  and helping businesses in the long run, there are a number of ways we do  this.&lt;/p&gt;
&lt;p&gt;Firstly,  we start off by giving you 30 days of free support from the day your  site's launched. Beyond that, we offer a number of support plans for  your website. And if you need training to get the best out of your web  solution, we can offer that too.&lt;/p&gt;
&lt;p&gt;Don't forget to stay in touch! If you need us, we're just a phone call, email, or tweet away.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=3kVIIlM6JtQ:ejXOZiamD6o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=3kVIIlM6JtQ:ejXOZiamD6o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/3kVIIlM6JtQ" height="1" width="1"/&gt;</description>
<pubDate>Wed, 08 Jun 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/3kVIIlM6JtQ/our-web-design-project-process-in-5-easy-steps</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/our-web-design-project-process-in-5-easy-steps</feedburner:origLink></item>
<item>
<title>Do Adwords Really Work?</title>
<description>&lt;p&gt;We all love Google, they bring us so much and have changed the web with their search algorithms. Google search has maintained its success over Yahoo, MSN,  Ask Jeeves and others for so long and we can&amp;rsquo;t see this changing any time soon.  SEO has become a top priority for most businesses and it is mostly based around Google. This has falsely made searchers believe that if you are not on the first page of Google for their chosen keyword then you&amp;rsquo;re not worth knowing. Not true but we all need to keep up with online tools and marketing to succeed.&lt;/p&gt;
&lt;p&gt;For those businesses to whom SEO is alien, there is always Adwords. Adwords is a service that Google offers which allows businesses to display their link under specific keyword searches and pay per click. These links are positioned above all other results however it is clear that they are paid for since they are positioned in their own &amp;lsquo;Ads&amp;rsquo; box.  Many have tried and failed at maintaining their own Adwords account and so the question we are addressing here is &amp;ldquo;Do Adwords work?&amp;rdquo; Success or failure largley depends on one major factor, keywords.&lt;/p&gt;
&lt;h2&gt;Keywords&lt;/h2&gt;
&lt;p&gt;Keywords are the search words/phrases you would like your business to be found under. For example, if your business is Plumbing and you are based in Sheffield, one of your chosen keywords may be Sheffield Plumbing. Having said this, the keywords you choose will determine your success or failure with both Adwords and natural listings and so need more analysis then just writing out a list of words you think fit your business.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile44/0" alt="Do Adwords Really Work?" /&gt;&lt;/p&gt;
&lt;p&gt;Find out what the competition is; The more competition you have for those keywords, the more you will pay per click.  Are your keywords too vague or too specific? This leads us on to the next point...&lt;/p&gt;
&lt;h2&gt;Negative Keywords&lt;/h2&gt;
&lt;p&gt;As well as determining the keywords you would like to be found under, you must also establish the keywords you do not want to be found under. Are searchers clicking on your link when they have searched for unrelated words and thus not finding their solution on your website? You could be losing money. This is a vital part of Adwords success, be sure you are appearing where you plan to appear and therefore to the right target audience.&lt;/p&gt;
&lt;h2&gt;Ongoing Battle&lt;/h2&gt;
&lt;p&gt;The final thing to remember is that this is an ongoing battle with other competitors. You must keep on top of your Adwords, analyse and improve them as much as you can to make sure you are getting the best out of it. There is a lot of money to be had via advertising on Google however there can also be a lot of money to lose if it is not given the right attention.&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;So in conclusion, adwords can be a good way to boost sales for those companies who do not have a lot of competition and who are willing to give it the time and effort needed. Remember, the more competition, the more you will pay per click; the better/more targeted your keywords are the more you will increase your conversions.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=hptzpl7TkII:ngNK65AW7QI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=hptzpl7TkII:ngNK65AW7QI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/hptzpl7TkII" height="1" width="1"/&gt;</description>
<pubDate>Mon, 23 May 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/hptzpl7TkII/do-adwords-really-work</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/do-adwords-really-work</feedburner:origLink></item>
<item>
<title>In your @font-face!</title>
<description>&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile43/0" alt="boring web safe fonts vs @font-face" /&gt;&lt;/p&gt;
&lt;h2&gt;The problem&lt;/h2&gt;
&lt;p&gt;For years the fonts we can use on the web have been limited to a handful of typefaces - these &amp;lsquo;web safe&amp;rsquo; fonts are so-called as they were the only typefaces that we could be fairly sure pretty much everyone has. These oh so familiar fonts included Arial, Trebuchet MS, Verdana, Comic Sans MS, Times New Roman, Georgia and Courier New, to name a few of the classics.&lt;/p&gt;
&lt;p&gt;While sticking to these few has been best practice until now, it has unfortunately been a big restriction to web designs, and has meant that much of the web has ended up looking a wee bit samey.&lt;/p&gt;
&lt;h2&gt;The solutions of the past&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;There have been a few attempts to solve this over the years, with a number of Javascript and Flash-based solutions. But these solutions have never been very robust or effective. The other classic workaround is to simply have a nice image instead of the text, however, this is very poor practice when it comes to accessibility, usability and it&amp;rsquo;s not too good for SEO either. If that's not enough to put you off, it&amp;rsquo;s not easy to dynamically generate these mongrel text-images either.&lt;/p&gt;
&lt;h2&gt;@font-face to the rescue&lt;/h2&gt;
&lt;p&gt;@font-face is part of the CSS3 standard. Put simply, @font-face lets you use a font that lives on the web - meaning everyone has access to it, hoorah! Ergo you can now use these fancy fonts to style your web pages.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ve used this in a number of projects recently and it&amp;rsquo;s really added an extra flare to the design. We recently helped &lt;a rel="nofollow" href="http://www.mattlollarphotography.com" target="_blank"&gt;Matt Lollar Photography&lt;/a&gt; liven up their site and display some character (no pun intended) by utilising @font-face to display a custom typeface rather than boring old Verdana. We also used @font-face for the &lt;a rel="nofollow" href="http://www.globalmanufacturingfestival.com/" target="_blank"&gt;Global Manufacturing Festival&lt;/a&gt; website, bringing a real consistency with the Sheffield brand.&lt;/p&gt;
&lt;h2&gt;Where can I get some?&lt;/h2&gt;
&lt;p&gt;Convinced that @font-face could bring your website back to life? Raring to get that fancy font for your site? There are numerous resources for @font-face compatible typefaces, here are a couple of our favourites.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_left" src="http://www.resounddesign.co.uk/imagefile41/0" alt="Font Squirrel Logo" /&gt;&lt;/p&gt;
&lt;h3&gt;Font Squirrel&lt;/h3&gt;
&lt;p&gt;Free and easy to use fonts at &lt;a rel="nofollow" href="http://www.fontsquirrel.com" target="_blank"&gt;www.fontsquirrel.com&lt;/a&gt;&lt;/p&gt;
&lt;div class="spacer"&gt;&amp;nbsp;&lt;/div&gt;
&lt;p&gt;&lt;img class="float_left" src="http://www.resounddesign.co.uk/imagefile42/0" alt="FontSpring Logo" /&gt;&lt;/p&gt;
&lt;h3&gt;Fontspring&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;Commercial fonts, most of which are available with an @font-face license at &lt;a rel="nofollow" href="http://www.fontspring.com" target="_blank"&gt;www.fontspring.com&lt;/a&gt;&lt;/p&gt;
&lt;div class="spacer"&gt;&amp;nbsp;&lt;/div&gt;
&lt;h2&gt;A few things worth noting...&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;Beware of licenses, only use a typeface if its accompanying license allows you to do so. Be good! If you&amp;rsquo;re using a reputable site like Fontspring or FontSquirrel this shouldn&amp;rsquo;t be a problem.&lt;/p&gt;
&lt;p&gt;It's also worth noting that the way browsers render fonts isn't quite perfect just yet - we have experienced some minor problems when rendering @font-face typefaces at smaller sizes - they can appear jaunty or pixelated.&lt;/p&gt;
&lt;p&gt;Surprisingly Microsoft Internet Explorer isn&amp;rsquo;t a problem when it comes to @font-face, they&amp;rsquo;ve supported it for a good while. The only caveat when it comes to browser support is Firefox which has only supported @font-face since version 3.5, that said, Firefox users are keen updaters so this isn&amp;rsquo;t a major problem.&lt;/p&gt;
&lt;p&gt;So why wait, could you spruce your site up with some @font-face magic?&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=jXVIVfvp5Zo:Q4MJF_aOVPw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=jXVIVfvp5Zo:Q4MJF_aOVPw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/jXVIVfvp5Zo" height="1" width="1"/&gt;</description>
<pubDate>Tue, 10 May 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/jXVIVfvp5Zo/in-your-font-face</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/in-your-font-face</feedburner:origLink></item>
<item>
<title>Discoveries Part 2</title>
<description>&lt;p&gt;jQuery has changed the web; Websites are more interesting, more interactive and overall make the whole web experience a lot better.&lt;/p&gt;
&lt;p&gt;Recently we have found some really nice sites that feature a bit of jQuery brilliance and you know us, we like to share.&lt;/p&gt;
&lt;p&gt;&lt;a title="Saga inc" href="http://www.sagainc.co.jp" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile40/0" alt="Saga inc" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The SAGA inc website is using one of our favourite plugins at the moment; the vGrid layout plugin. It is very similar to the Masonry plugin but with an extra feature which, in our opinion, makes all the difference. The vGrid dynamically re-orders the layout, which makes it much sleeker.  Evidently, it entices the visitor to hang around and look through the site a bit more just to watch it move.&lt;/p&gt;
&lt;p&gt;&lt;a title="Saga inc" href="http://www.sagainc.co.jp" target="_blank"&gt;http://www.sagainc.co.jp&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=LUcbfh2gJyQ:4uspsa9kzXw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=LUcbfh2gJyQ:4uspsa9kzXw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/LUcbfh2gJyQ" height="1" width="1"/&gt;</description>
<pubDate>Wed, 27 Apr 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/LUcbfh2gJyQ/discoveries-part-2</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/discoveries-part-2</feedburner:origLink></item>
<item>
<title>New browsers for 2011: Firefox 4 vs Internet Explorer 9</title>
<description>&lt;p&gt;March 2011 saw the major releases of the two biggest web browsers out there; Mozilla Firefox 4 and Microsoft Internet Explorer 9. We thought we&amp;rsquo;d quickly share our take on these browsers.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile38/0" alt="Firefox 4 vs IE9" /&gt;&lt;/p&gt;
&lt;h2&gt;What&amp;rsquo;s new in Firefox 4?&lt;/h2&gt;
&lt;p&gt;It&amp;rsquo;s faster, according to Mozilla it&amp;rsquo;s more than 6 times faster than the last version in some instances. And in the few weeks we&amp;rsquo;ve been using it, it definitely seems much speedier.&lt;/p&gt;
&lt;p&gt;Tabs have now been moved up top, which I did find annoying at first, but after a while this starts to make a lot of sense. Having that extra bit of space free on the screen is useful!&lt;/p&gt;
&lt;p&gt;Other improvements to tabbed browsing include &amp;lsquo;tab groups&amp;rsquo;, which are useful for keeping a group of web pages up and running in the background while you work away on another set of sites.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile35/0" alt="Firefox 4 Tab Groups" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img class="float_left" src="http://www.resounddesign.co.uk/imagefile36/0" alt="Firefox 4 App Tabs" /&gt;Also new into the tabs arene are &amp;lsquo;app tabs&amp;rsquo;. A really simple, but really useful innovation. These are few tiny icon-only tabs which stay open all the time - fantastic for keeping your most used web app sites (e.g. email, calendar, CRM) open without cluttering the place up!&lt;/p&gt;
&lt;p&gt;Firefox 4 also renders sites really well, everything looks a little nicer than it used to! Another nice touch that sets Firefox apart is that the sometimes tacky OS dialogue boxes we&amp;rsquo;re so used to have been replaced with much clearer and simpler dialogue boxes.&lt;/p&gt;
&lt;p&gt;As we&amp;rsquo;ve come to expect from Firefox it&amp;rsquo;s just about up to scratch with all new technologies like HTML5 and CSS3 too.&lt;/p&gt;
&lt;h2&gt;What&amp;rsquo;s new in Internet Explorer 9?&lt;/h2&gt;
&lt;p&gt;First off it seems like the usual upgrade from Microsoft. Same old product, it just looks a little shinier!&lt;/p&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile37/0" alt="IE9 Toolbar" /&gt;&lt;/p&gt;
&lt;p&gt;The first thing you&amp;rsquo;ll notice is that the browser interface is much simpler, and just like the latest release of Firefox, they&amp;rsquo;ve attempted to make better use of space, making the web itself the main feature. The toolbar has been refined down to 3 tiny icons - home, favourites, tools. Along with the simplification of the toolbar, the forward and back buttons, address bar and tabs all appear on the same row.&lt;/p&gt;
&lt;p&gt;While this is a great step forward for IE, I feel a bit restricted by the tiny space left for the address bar, typing or viewing a long address just ends up being a bit fiddly.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile39/0" alt="IE9 Most Popular Sites" /&gt;&lt;/p&gt;
&lt;p&gt;IE9 also introduces a &amp;lsquo;Your most popular sites&amp;rsquo; page, which looks and works very similar to&amp;nbsp; Google Chrome&amp;rsquo;s.&lt;/p&gt;
&lt;p&gt;IE is finally up to speed with tabbed browsing, with features like reopening a closed tab. It also introduces tab groups just like Firefox. I&amp;rsquo;m sure this is a great addition, but they are not at all as intuitive as Firefox&amp;rsquo;s.&lt;/p&gt;
&lt;p&gt;Microsoft also counts among IE&amp;rsquo;s new features &amp;lsquo;search via address bar&amp;rsquo; and a &amp;lsquo;download manager&amp;rsquo;. Nice one Microsoft, finally catching up with the rest!&lt;/p&gt;
&lt;p&gt;And finally, the usual gripe that web designers and developers have with IE; does it support web standards, or will it have its own unique problems? Well, IE9 finally includes support for HTML5 and CSS3 - a major step towards us being able to use these properly on the web, and according to &lt;a href="http://www.quirksmode.org/compatibility.html" target="_blank"&gt;quirksmode.org&lt;/a&gt; it&amp;rsquo;s just about as compatible as Firefox 4.&lt;/p&gt;
&lt;p&gt;Good work IE, you&amp;rsquo;re finally catching up!&lt;/p&gt;
&lt;h2&gt;Should I upgrade?&lt;/h2&gt;
&lt;p&gt;If you&amp;rsquo;re a fan of IE, this is the best version so far, so we&amp;rsquo;d definitely suggest it. That said, Firefox still wins, and the new version is definitely a step forward.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/ie" target="_blank"&gt;Get the latest version of Internet Explorer&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.spreadfirefox.com/node&amp;amp;id=134327&amp;amp;t=321" target="_blank"&gt;Get the latest version of Firefox&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Firefox is still our favourite and definitely offers a better browsing experience, but IE really is catching up, although it still feels like Microsoft still have a bad reputation to shake off; will they continue keeping IE up to date? Will the age old compatibility problems keep cropping up? Will IE users upgrade? Only time will tell.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=o2gHYO5GrVs:jmcgkdnZHlo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=o2gHYO5GrVs:jmcgkdnZHlo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/o2gHYO5GrVs" height="1" width="1"/&gt;</description>
<pubDate>Wed, 06 Apr 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/o2gHYO5GrVs/new-browsers-for-2011</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/new-browsers-for-2011</feedburner:origLink></item>
<item>
<title>Discoveries Part 1</title>
<description>&lt;p&gt;Every now and then, we come across websites that leave an impression. We thought it would be nice to share our discoveries with you when this happens. Today we found ourselves on such a website; the impression is lasting and is a good one to start off our discovery blogs. &lt;a title="Salt Films" href="http://www.saltfilms.com.sg" target="_blank"&gt;www.saltfilms.com.sg&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="Salt Films" href="http://www.saltfilms.com.sg" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile33/0" alt="Salt Films" /&gt;&lt;/a&gt;&lt;br /&gt;Good or bad, we&amp;rsquo;re not so sure just yet but there are definitely pros and cons to a website like this.&lt;/p&gt;
&lt;h2&gt;Pros&lt;/h2&gt;
&lt;p&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp; The first time you visit, you are immediately interested and hang around.&lt;br /&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp; It stands out from the rest.&lt;br /&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp; You will probably remember the site.&lt;/p&gt;
&lt;h2&gt;Cons&lt;/h2&gt;
&lt;p&gt;1.&amp;nbsp;&amp;nbsp;&amp;nbsp; Once the novelty has worn off, you probably leave the site without reading the content. The fact that it is different, interests you more than what the site is about.&lt;br /&gt;2.&amp;nbsp;&amp;nbsp;&amp;nbsp; Branching off from the above, you probably won&amp;rsquo;t remember what it was about but just that it was yellow and featured a salt shaker. &lt;br /&gt;3.&amp;nbsp;&amp;nbsp;&amp;nbsp; At points it was not clear what to do and where to go.&lt;/p&gt;
&lt;p&gt;As a result, we think it is probably not such a great idea for an ecommerce website but ok for a company like Salt Films who simply want to display information about themselves and embed their videos.&lt;/p&gt;
&lt;p&gt;Have you come across any interesting websites recently? &lt;a title="Follow us on Twitter" href="http://twitter.com/resounddesign" target="_blank"&gt;Send us a tweet&lt;/a&gt; with your discovery.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=sQkMlAhL8Hw:C1b77YN64J0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=sQkMlAhL8Hw:C1b77YN64J0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/sQkMlAhL8Hw" height="1" width="1"/&gt;</description>
<pubDate>Wed, 30 Mar 2011 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/sQkMlAhL8Hw/discoveries-part-1</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/discoveries-part-1</feedburner:origLink></item>
<item>
<title>2 pesky SVN problems fixed</title>
<description>&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile32/0" alt="Subversion" /&gt;&lt;/p&gt;
&lt;p&gt;For  those not familiar with SVN (it's short for subversion), SVN is a  system we use to track each version of a web app or website while we  develop it.&lt;/p&gt;
&lt;p&gt;We  recently had a few problems getting SVN to work on one of our Windows 7  machines, and it seems that many others have been having similar  problems too, so since we like helping people, I thought I'd share how  we fixed our SVN woes.&lt;/p&gt;
&lt;p&gt;We were using Tortoise SVN, but by the sounds of it, these problems could affect any SVN client.&lt;/p&gt;
&lt;h2&gt;SVN Problem #1 "Resource out of date; try updating"&lt;/h2&gt;
&lt;p&gt;Our problem was as follows, when trying to commit changes to an SVN repository, we got the rather unhelpful error message...&lt;/p&gt;
&lt;p&gt;"Commit failed. Resource out of date; try updating"&lt;/p&gt;
&lt;p&gt;For  those who are familiar with SVN, you'll understand how irritating that  message is. It's basically saying "No, you can't save the changes you  made, because they need to be overwritten with some older stuff."&lt;/p&gt;
&lt;p&gt;The  first answer to our SVN woes was found in the form of &lt;a rel="nofollow" href="http://bealetech.com/blogs/sean/2010/01/subversion-file-or-directory-out-date-try-updating"&gt;a post at the  bealtech.com blog&lt;/a&gt;.  To sum up the fix they outlined...&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Rename the directory on your PC which contains the changes you're trying to commit&lt;/li&gt;
&lt;li&gt;Create a new directory - calling it the name of the original directory (it will eventually replace the old one)&lt;/li&gt;
&lt;li&gt;Use  your SVN client to checkout the latest version of the code to the new  directory, this means you'll have the updated version of each file (so  there'll be no need to 'try updating'!)&lt;/li&gt;
&lt;li&gt;Going  back to the old directory which you renamed, copy any files which you  have changed (and are causing the 'out of date' error) and paste them  into the appropriate place in the new directory.&lt;/li&gt;
&lt;li&gt;You should now be able to successfully commit.&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;SVN Problem #2 Windows Search Indexing&lt;/h2&gt;
&lt;p&gt;The  second problem can manifest itself in various ways - SVN transactions  fail telling you that a file or directory is corrupt, unreadable, or  can't be found - or sometimes some more bizarre messages about incorrect  chunk sizes.&lt;/p&gt;
&lt;p&gt;After  a session of Googling we found out that this was due to Windows 7's  search indexing. To offer quick search results, Windows basically crawls  through every file on your computer and indexes it. While it does this  Windows locks the files it's indexing, meaning that the SVN client can't  access it freely.&lt;/p&gt;
&lt;p&gt;The  only way we found to remedy this was to disable Windows search indexing  entirely. Note that doing so means that Windows search features will  not work correctly, if at all. If you do want to proceed, here's how you  disable search...&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Load up Computer Management&lt;/li&gt;
&lt;li&gt;Services and applications&lt;/li&gt;
&lt;li&gt;Find 'Windows Search'&lt;/li&gt;
&lt;li&gt;Right click - properties. Set Startup type to disabled, click Stop, then OK&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Windows  search is disabled, and you should be able to use SVN without any  problems. That said, I have heard rumours that this problem is fixed in  the recently released Windows 7 Service Pack 1 - if anyone can confirm  that do drop us an email or a tweet to let us know.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=oxHW7RxFMBM:ceKBkjXlV2o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=oxHW7RxFMBM:ceKBkjXlV2o:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/oxHW7RxFMBM" height="1" width="1"/&gt;</description>
<pubDate>Wed, 16 Mar 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/oxHW7RxFMBM/2-pesky-svn-problems-fixed</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/2-pesky-svn-problems-fixed</feedburner:origLink></item>
<item>
<title>Sites Go Live!</title>
<description>&lt;p&gt;We&amp;rsquo;ve been working hard here at Resound and here are three CMS websites that have gone live recently as a result.&lt;/p&gt;
&lt;h2&gt;Chrysalis TEC&lt;/h2&gt;
&lt;p&gt;Chrysalis TEC are a Sheffield based centre who dedicates their time to educating and supporting children with complex trauma and attachment difficulties. A great group of people to work with and we are pleased that we can be of service to such a fantastic organisation.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.chrysalistec.org/" target="_new"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile29/0" alt="Chrysalis TEC" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Check out their new website &lt;a href="http://www.chrysalistec.org/" target="_new"&gt;www.chrysalistec.org&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We have also been working very closely with Square5 to produce both their own website and a separate development for the Global Manufacturing Festival of which they are helping to organise.&lt;/p&gt;
&lt;h2&gt;Global Manufacturing Festival&lt;/h2&gt;
&lt;p&gt;The Global Manufacturing Festival began on the 1st of March 2011 and will span the whole month, featuring a variety of events held in various venues around Sheffield.&lt;/p&gt;
&lt;p&gt;Have a snoop around the new website to see what else is going on. &lt;a href="http://www.globalmanufacturingfestival.com/" target="_new"&gt;www.globalmanufacturingfestival.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.globalmanufacturingfestival.com/" target="_new"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile30/0" alt="Gloabl Manufacturing Festival" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Square5&lt;/h2&gt;
&lt;p&gt;With the festival coming up, they wanted a new look and feel for their own website too. We designed and developed a bespoke website for them based around the colours of their logo and the services they offer. They now have a new website that they can easily update themselves with new content and images and which compliments all the good work they do.&lt;/p&gt;
&lt;p&gt;Take a look &lt;a href="http://www.square5.co.uk/" target="_new"&gt;www.square5.co.uk&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.square5.co.uk/" target="_new"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile31/0" alt="Square5" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Fancy something similar or want to update your own site? Just get in touch and we will be happy to help!&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=uzjo46I-6g4:XCinw2YKHxI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=uzjo46I-6g4:XCinw2YKHxI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/uzjo46I-6g4" height="1" width="1"/&gt;</description>
<pubDate>Thu, 03 Mar 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/uzjo46I-6g4/sites-go-live</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/sites-go-live</feedburner:origLink></item>
<item>
<title>5 mobile-optimised sites reviewed</title>
<description>&lt;p&gt;The past few years have seen the mobile web change dramatically. Not so long ago the best a mobile could do was display some awkwardly formatted text - now most phones render sites better than most computers.&lt;/p&gt;
&lt;p&gt;The past year has seen mobile-optimised sites move from the realms of web designers experimenting and showing off, and a brave few others having a stab, to many mainstream sites finally getting involved, a trend which we think will continue.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ve taken a look at 5 of our favourite mobile optimised sites and shared our thoughts on what makes them good, and how they could do better.&lt;/p&gt;
&lt;h2&gt;nclud&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile27/0" alt="Mobile sites - nclud" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://nclud.com" target="_blank"&gt;nclud.com&lt;/a&gt;&lt;br /&gt;The guys at nclud have done a fantastic job of replicating the content and feel of their desktop site at such a small resolution.&lt;/p&gt;
&lt;p&gt;By making compromises like using a small version of their logo and cutting any waffle, they have created a quality and to the point site catered for users who&amp;rsquo;s screen space and time is at a premium. Most pages fit nicely within a standard mobile screen size.&lt;/p&gt;
&lt;p&gt;Also worth noting is their use of big touchable links - remember that rather than a pixel-precise mouse pointer, mobile users will be using their fingers to get around. nclud are also one of the few that have used tel: links - meaning that clicking their &amp;lsquo;Call us&amp;rsquo; link automatically loads up your dialer and drops their number in for you.&lt;/p&gt;
&lt;h2&gt;Relevant Magazine&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile28/0" alt="Mobile sites - Relevant Magazine" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://m.relevantmagazine.com" target="_blank"&gt;m.relevantmagazine.com&lt;/a&gt;&lt;br /&gt;While Relevant Magazine&amp;rsquo;s mobile site does a great job at saving space - you do miss out on a lot of the media and interactivity of the full site - the mobile site only offering the blog content.&lt;/p&gt;
&lt;p&gt;Again, great structuring means they&amp;rsquo;ve distilled their navigation into 3 succinct links, plus a cleverly space saving search box (it looks like a search box but links through to a dedicated search page).&lt;/p&gt;
&lt;p&gt;While Relevant doesn&amp;rsquo;t fit within the bounds of the mobile screen, a long scrolling list actually feels and works quite well for blog site, and having a big image and only little text for each summary maximises the touchable link area and adds a bit of character.&lt;/p&gt;
&lt;p&gt;One downside with Relevant is that they link prominently to the latest issue of their print magazine, which is displayed using the isuu service. While this is an important part of Relevant, approaching it this way is a little slow and a whole magazine isn&amp;rsquo;t particularly nice to use on a tiny device.&lt;/p&gt;
&lt;h2&gt;asos&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile25/0" alt="Mobile sites - asos" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://m.asos.com" target="_blank"&gt;m.asos.com&lt;/a&gt;&lt;br /&gt;asos&amp;rsquo;s mobile site is a great example of a retail site for mobiles. Confronting the user straight away with simple navigation, the site is well-structured and easy for users to acheive their objectives.&lt;/p&gt;
&lt;p&gt;Again, very good use of space - everything you&amp;rsquo;d see on the desktop site is optimised well for the smaller screen. Tabs and lists used well to hide secondary information and avoid pages becoming overloaded.&lt;/p&gt;
&lt;p&gt;asos also repeats the main navigation at the bottom of the page, which is a great addition for long pages of products, as the user doesn&amp;rsquo;t have to drag all the way back to the top if they wish to go elsewhere on the site.&lt;/p&gt;
&lt;h2&gt;A List Apart&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile24/0" alt="Mobile sites - A List Apart" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://m.alistapart.com" target="_blank"&gt;m.alistapart.com&lt;/a&gt;&lt;br /&gt;Web-based web development magazine, A List Apart, has an exemplary mobile site which matches their desktop offering well.&lt;/p&gt;
&lt;p&gt;Again, use of a smaller logo and very succinct navigation means the user is not overloaded and the header doesn&amp;rsquo;t get in the way of the site&amp;rsquo;s content. That said, the front page does appear to be a little bland and would benefit from some of the great illustrations that give ALA articles their unique flavour.&lt;/p&gt;
&lt;p&gt;Another friendly feature that ALA demonstrates is a link to switch to the standard version of the site - for users that want the full site experience on their phone.&lt;/p&gt;
&lt;h2&gt;coosh&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile26/0" alt="Mobile sites - coosh" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" href="http://coosh.com/iphone" target="_blank"&gt;coosh.com/iphone&lt;/a&gt;&lt;br /&gt;coosh is a mixed bag of brilliance and fail.&lt;/p&gt;
&lt;p&gt;One of the most important aspects of a good mobile site is the browser detection - i.e. if it&amp;rsquo;s a mobile browser then show the mobile site straight away. Viewing via Android&amp;rsquo;s browser, coosh awkwardly displays the desktop site by default. To get to their mobile site I had to use some initiative and navigate to coosh.com/iphone, which brings me on to my second rant.&lt;/p&gt;
&lt;p&gt;Mobile sites still suffer from what I call the &amp;ldquo;iPhone syndrome&amp;rdquo;. I have nothing against the iPhone, it handles the web incredibly well, but so many mobile-optimised sites brand themselves as iPhone optimised sites, excluding a diverse array of smart phones such as Android. There is also a tendency of many mobile sites to mimic the iOs menu style a bit too closely.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s not all bad though - the coosh site is aestethically brilliant, and uses navigation well, with especially good use of large touchable areas and illustrative icons.&lt;/p&gt;
&lt;h2&gt;What&amp;rsquo;s still missing?&lt;/h2&gt;
&lt;p&gt;Very few sites make use of gestures available with touchscreen phones. There is some great potential here, for example, using your finger to swipe through a slideshow of photos or articles.&lt;/p&gt;
&lt;p&gt;Technologies like HTML5 and CSS3 work vastly better on mobile devices than on desktops - it would be great to see these used more creatively on the mobile web.&lt;/p&gt;
&lt;p&gt;I hope that in coming years even more mainstream sites will take to the mobile web, and even small businesses will start to take hold of the opportunities that it presents.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Screenshots taken on Android 2.2 using the Android SDK.&lt;/em&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=jty_CVHed7U:eDGJekHM53s:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=jty_CVHed7U:eDGJekHM53s:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/jty_CVHed7U" height="1" width="1"/&gt;</description>
<pubDate>Wed, 16 Feb 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/jty_CVHed7U/5-mobile-optimised-sites-reviewed</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/5-mobile-optimised-sites-reviewed</feedburner:origLink></item>
<item>
<title>HTML5 - What are the benefits?</title>
<description>&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile23/350" alt="HTML5 Logo" /&gt;&lt;/p&gt;
&lt;p&gt;HTML5 is a fairly new development in terms of markup and I wanted to give you a brief overview of what we think are the benefits and why it is important to start using it.&lt;/p&gt;
&lt;p&gt;It is quite easy to get confused between all the different HTML syntaxes and I guess the important thing to remember is that we can ultimately develop our websites in the syntax we prefer. However at Resound we like to keep up to date with new technologies to develop ourselves and the service that we offer.&lt;/p&gt;
&lt;p&gt;So why HTML5? There is a risk here of going through all the different features HTML5 has to offer to prove the benefits however I just want to go through a few points which make HTML5 stand out for us and what we think will change the web.&lt;/p&gt;
&lt;h2&gt;It&amp;rsquo;s Clean and Concise&lt;/h2&gt;
&lt;p&gt;One of the biggest changes we have noticed is the standardisation of common attributes. HTML5 has taken many common attributes and made them a HTML5 standard, making the markup more concise.&amp;nbsp; For example all doctypes have been changed to one standard doctype; a great way to get developers to write more accurately without realising. We like a clean WWW!&lt;/p&gt;
&lt;h2&gt;Improves accessibility&lt;/h2&gt;
&lt;p&gt;Lets be honest here, there are a lot of websites out there that are not as accessible as they would like to be. This needs to change if we want to improve the web; if we want to build websites which can be read by all different kinds of people. New semantic elements help us to do just that. Each section of the website can be defined by its tag which does great things for screen readers. With a semantic website, screen readers are able to jump from one section of the website to another, making the whole experience much easier. Big thumbs up!&lt;/p&gt;
&lt;h2&gt;The Web is ready&lt;/h2&gt;
&lt;p&gt;Whoever out there is ready to start building in HTML5, the web is waiting! Including HTML5 into our web development does not have to be a big change. Most browsers out there support some features of HTML5 and Internet Explorer will soon be catching up with IE9. So we can get started as soon as we like.&lt;/p&gt;
&lt;p&gt;Having said that, we cannot ignore the fact that the majority of users out there still browse the web using older browsers like IE6, a big shame. So evidently some will not see the benefits of the HTML5 features on your website. As long as we keep this in mind during development and be sure to provide for the past and the future we are doing a brilliant job!&lt;/p&gt;
&lt;h2&gt;Some interesting HTML5 finds&lt;/h2&gt;
&lt;p&gt;&lt;a href="http://blog.chenalexander.com/2011/conductor-in-progress-video/" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile22/0" alt="conductor" /&gt;&lt;/a&gt;&lt;br /&gt;developed by Alexander Chen&lt;/p&gt;
&lt;p&gt;&lt;a href="http://hakim.se/experiments/html5/sinuous/01/" target="_blank"&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile21/0" alt="Experiments" /&gt;&lt;/a&gt;&lt;br /&gt;developed by Hakim El Hattab&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=TIypzX_UKHE:9SRt7AV1BYI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=TIypzX_UKHE:9SRt7AV1BYI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/TIypzX_UKHE" height="1" width="1"/&gt;</description>
<pubDate>Wed, 02 Feb 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/TIypzX_UKHE/html-5-what-are-the-benefits</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/html-5-what-are-the-benefits</feedburner:origLink></item>
<item>
<title>4 great ways that twitter can help your business</title>
<description>&lt;h2&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile20/0" alt="Artwork by Pete Simon" /&gt;&lt;/h2&gt;
&lt;h2&gt;1 You&amp;rsquo;re not a robot&lt;/h2&gt;
&lt;p&gt;Do your clients know that? When dealing with clients from day to day, it&amp;rsquo;s very easy to get bogged down in business and things can get very impersonal. It&amp;rsquo;s great to remind people that you are a human being - people like to know people, people buy from people - a tweet could be the start of a great business relationship.&lt;/p&gt;
&lt;p&gt;As well as reminding them that you&amp;rsquo;re a friendly human being - it reminds clients and potential clients that you think too. Tweeting about a project you&amp;rsquo;re working on or a new development in your industry is a great way to tell the world that you know your stuff.&lt;/p&gt;
&lt;h2&gt;2 You&amp;rsquo;re on the scene&lt;/h2&gt;
&lt;p&gt;Tweeting is another great way to stay in touch with clients, or at very least to remind them that you&amp;rsquo;re there and keep you in the back of their minds.&lt;/p&gt;
&lt;p&gt;Following, conversing with and retweeting the right people can be a great way to get known and raise your profile in a specific area. For example, you could discuss events with others in your industry, or simply retweet news from your local area - both let people know what you&amp;rsquo;re about and that you&amp;rsquo;re on the scene.&lt;/p&gt;
&lt;h2&gt;3 Google likes it&lt;/h2&gt;
&lt;p&gt;Twitter can be a great help in getting you listed highly on search engines like Google. Google likes it when other sites link through to yours - so sharing content from your website on twitter can be a great way to generate more traffic to your website.&lt;/p&gt;
&lt;p&gt;Google also values social media such as twitter and now includes it as part of their &lt;a href="http://www.google.com/realtime" target="_blank"&gt;realtime search results&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;And of course, if you&amp;rsquo;re tweeting quality content then people will share it with others - another way to generate traffic and get some search engine love.&lt;/p&gt;
&lt;h2&gt;4 Inspiration&lt;/h2&gt;
&lt;p&gt;Finally, I&amp;rsquo;ve found that twitter is a brilliant way to stay inspired. Follow the right people and you&amp;rsquo;ll be able to stay up to date on your industry, think of new ideas, and get some great inspiration from others.&lt;/p&gt;

&lt;p&gt;Artwork by &lt;a href="http://www.flickr.com/people/petesimon/" target="_blank"&gt;Pete Simon&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=yLxtepBc3fk:fCPvBCGLAu4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=yLxtepBc3fk:fCPvBCGLAu4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/yLxtepBc3fk" height="1" width="1"/&gt;</description>
<pubDate>Wed, 19 Jan 2011 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/yLxtepBc3fk/4-great-ways-that-twitter-can-help-your-business</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/4-great-ways-that-twitter-can-help-your-business</feedburner:origLink></item>
<item>
<title>Our 8-step logo design process</title>
<description>&lt;p&gt;&lt;img class="float_right" src="http://www.resounddesign.co.uk/imagefile19/250" alt="Logo Examples" /&gt;&lt;/p&gt;
&lt;p&gt;Every designer has their own process when designing a logo, and it can even vary from project to project. Here&amp;rsquo;s a rough idea of the process we&amp;rsquo;ll generally go through.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;We start by getting your requirements. This is usually done by sitting down and talking to you, sending you a standard questionnaire to fill in, or a combination of those.&lt;br /&gt;&lt;br /&gt;We&amp;rsquo;ll ask you information about your organisation or project, as well as information about your brand and your logo requirements.&lt;/li&gt;
&lt;li&gt;Having researched your requirements we&amp;rsquo;ll sit down and start sketching. Many designers believe that you should always start any design on paper - we tend to agree. So we start with some very rough sketches and brainstorm layouts, wording, and imagery for your logo.&lt;br /&gt;&lt;br /&gt;Most of this isn&amp;rsquo;t seen by the client - instead we chew the ideas over and pick the ones we think will work well, and carry those to the next step.&lt;/li&gt;
&lt;li&gt;We continue by making our scribbly sketches into neater and shinier digital files. It&amp;rsquo;s also worth noting that for most of the logo design process we&amp;rsquo;ll actually be working in black and white - that means we&amp;rsquo;re not producing every potential logo in every colour of the rainbow!&lt;/li&gt;
&lt;li&gt;Now it&amp;rsquo;s the client&amp;rsquo;s turn - we show the customer 1 to 4, sometimes more, of the most suitable logo concepts.&lt;/li&gt;
&lt;li&gt;We then take into account the client&amp;rsquo;s preferences and feedack and work it into the logo design. Once tweaked we&amp;rsquo;ll converse with the client again - and continue to tweak if necessary.&lt;/li&gt;
&lt;li&gt;&amp;nbsp;Once we&amp;rsquo;ve tweaked to perfection, and the client is happy with and has chosen one concept - we&amp;rsquo;ll take that and apply any finishing&amp;nbsp; touches.&lt;/li&gt;
&lt;li&gt;Now&amp;rsquo;s the time for colour - we&amp;rsquo;ll develop a number of colour variations - and consult with the client to choose the best one - again consulting with the client, and tweaking until they&amp;rsquo;re happy.&lt;/li&gt;
&lt;li&gt;Great! The logo design is ready to go! We provide the client with the final lovely logo design in a number of file formats and sizes ready for them to use as they wish.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;That&amp;rsquo;s our logo design process in a nutshell. As I said, sometimes we&amp;rsquo;ll take diversions from the normal process, and it&amp;rsquo;s just the way we do it. The process can often change, for example, if we&amp;rsquo;re considering your whole brand, rather than just focusing on the logo.&lt;/p&gt;
&lt;p&gt;We offer a professional logo design service to clients big and small - if we can help you have an awesome logo that reflects you and your brand just &lt;a href="http://www.resounddesign.co.uk/page/contact-resound-design"&gt;let us know&lt;/a&gt;.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=vjWY68iC0Qc:qIzcDLJ6z_I:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=vjWY68iC0Qc:qIzcDLJ6z_I:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/vjWY68iC0Qc" height="1" width="1"/&gt;</description>
<pubDate>Fri, 16 Jul 2010 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/vjWY68iC0Qc/the-resound-8-step-logo-design-process</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/the-resound-8-step-logo-design-process</feedburner:origLink></item>
<item>
<title>What web designers like to know</title>
<description>&lt;p&gt;Every web designer is different - but I thought it&amp;rsquo;d be helpful to tell you what we like to have in our hands before we begin a web design project for a client.&lt;/p&gt;
&lt;p&gt;&lt;img class="float_right" src="http://www.resounddesign.co.uk/imagefile18/544" alt="Web Project Checklist" /&gt;&lt;/p&gt;
&lt;h2&gt;All about you&lt;/h2&gt;
&lt;p&gt;First thing we like to know is who you are, what your company or organisation does, and really get a feel for the brand and the ethos of the client. This really helps us make sure the website does what it set out to, and really helps us reflect the brand through the visuals, and the general tone of the final product.&lt;/p&gt;
&lt;h2&gt;What the project is all about&lt;/h2&gt;
&lt;p&gt;The most important questions as always is &amp;lsquo;why?&amp;rsquo;. What do you want the web project to do, what are your final aims, and how can we measure them? The aims can be varied - from a potential customer making contact, to a file downloaded, to a product purchased.&lt;/p&gt;
&lt;h2&gt;Structure&lt;/h2&gt;
&lt;p&gt;The structure - pages on your site and the order and position you'd like them to appear in - is an often underestimated aspect, it can have a big effect on how usable your site is and how successful it is in the long run.&lt;/p&gt;
&lt;p&gt;The structure can be as simple as a short list of the pages on your site (Home, Our Services, About Us, Contact Us) or a gargantuan bulleted list on multiple levels.&lt;/p&gt;
&lt;h2&gt;Content is King&lt;/h2&gt;
&lt;p&gt;Content - the text and images to go on your website - are important too. The site would be empty without them!&lt;/p&gt;
&lt;p&gt;Content is nearly always the one thing that delays projects, so it&amp;rsquo;s important to have a strategy for this. We always ask for all the content up front, meaning we avoid any long delays in the project. We love to have it in a digital format like a Word document too - we can&amp;rsquo;t always ready your lovely handwriting!&lt;/p&gt;
&lt;h2&gt;In conclusion&lt;/h2&gt;
&lt;p&gt;As I said at the start - this is what we like to have and a lot of designers will differ.&lt;/p&gt;
&lt;p&gt;It&amp;rsquo;s also worth noting that all of this can and should be reviewed later in the project, it doesn&amp;rsquo;t have to be the finished product from the day 1, that wouldn&amp;rsquo;t make sense!&lt;/p&gt;
&lt;p&gt;Hopefully knowing what your web designer needs to know will help speed your projects along to success.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=njIVRete0CY:YJ498eqWF5M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=njIVRete0CY:YJ498eqWF5M:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/njIVRete0CY" height="1" width="1"/&gt;</description>
<pubDate>Fri, 04 Jun 2010 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/njIVRete0CY/what-web-designers-like-to-know</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/what-web-designers-like-to-know</feedburner:origLink></item>
<item>
<title>A quick look at the iPad as a web browser</title>
<description>&lt;p&gt;We recently got the chance to play with an iPad, which launches in the UK today.&lt;/p&gt;
&lt;p&gt;I thought I&amp;rsquo;d share my thoughts on how it works with the web, and how this will effect the way we design, and how we browse the web. There are already a few good reviews of the iPad as a web browser that are worth reading - take a look at &lt;a href="http://boagworld.com/reviews/ipad-review" target="_blank"&gt;iPad review and the impact on web design&lt;/a&gt; and &lt;a href="http://www.andrewseaton.co.uk/ipad-first-thoughts/" target="_blank"&gt;iPad &amp;ndash; First Thoughts&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;The Keyboard&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_right" src="http://www.resounddesign.co.uk/imagefile15/0" alt="iPad Keyboard" /&gt;&lt;/p&gt;
&lt;p&gt;The between mobile and laptop size of the iPad I don&amp;rsquo;t think is great for a keyboard. I found it difficult to hold in your hands and use your thumbs, and a bit precarious to hold with one hand and type with the other. Typing in web addresses, commenting on life, and sending emails are all really important parts of the browsing experience, and I feel the iPad, and to be fair most touch devices, fall short here.&lt;/p&gt;
&lt;p&gt;As touch browsing grows in popularity, we need to develop solutions which minimise typing. That can mean using checkboxes and dropdowns in clever ways, auto-complete, live search results, and other tricks.&lt;/p&gt;
&lt;h2&gt;Screen&lt;/h2&gt;
&lt;p&gt;The screen is amazing - it&amp;rsquo;s incredibly clear, a pleasure to look at.&lt;/p&gt;
&lt;p&gt;Changing orientation works really smoothly, the majority of websites work well in landscape and portrait mode. There was some fear that we&amp;rsquo;d need to develop variations of sites for both orientations, but I think that&amp;rsquo;ll only be the case for very rare and specific applications.&lt;/p&gt;
&lt;p&gt;The iPad offers a resolution of 1024 x 768 pixels. While this is amazing for a handheld device, this has become a minimum limit which the iPad may prolong the life of.&lt;/p&gt;
&lt;h2&gt;Browser&lt;/h2&gt;
&lt;p&gt;As with other Apple devices, the iPad uses a variation of the Safari browser - which is a fantastic web browser.&lt;/p&gt;
&lt;h2&gt;&lt;img class="float_right" src="http://www.resounddesign.co.uk/imagefile16/0" alt="iPad Browser" /&gt;&lt;/h2&gt;
&lt;p&gt;Safari on the iPad really makes great use of the screen space. The lack of scrollbars is surprisingly liberating - this coupled with awesome screen really makes it feel like you&amp;rsquo;re holding the website in your hands.&lt;/p&gt;
&lt;p&gt;Lack of Flash support was a controversial move by Apple, and we&amp;rsquo;ll have to see how that pans out, but I think it was justified.&lt;/p&gt;
&lt;p&gt;I found support for upcoming web technologies CSS3 and HTML5 a little mixed. CSS3 - which adds extra visual effects to website - looks great and is supported really well.&lt;/p&gt;
&lt;p&gt;HTML5 is less well supported - although hopes are that subsequent updates will remedy this. HTML5 will be really important if Apple wish to do away with Flash for good.&lt;/p&gt;
&lt;h2&gt;What does all this mean?&lt;/h2&gt;
&lt;p&gt;The iPad is lovely piece of kit, but I don&amp;rsquo;t think will have an astronomical effect on the way websites are designed. Although I love that it&lt;/p&gt;
&lt;h2&gt;&lt;img class="float_right" src="http://www.resounddesign.co.uk/imagefile17/0" alt="iPad Advert" /&gt;&lt;/h2&gt;
&lt;p&gt;promotes good design, progressive web technologies, and touch browsing.&lt;/p&gt;
&lt;p&gt;The portability of the iPad is great - but for business uses like emailing - I don&amp;rsquo;t think it&amp;rsquo;s as good as a laptop, nor is it as easy an smartphone. I think the main use of the iPad will be as a convenient device for quick tasks and casual browsing (something Apple have made referenced to with imagery in their adverts).&lt;/p&gt;
&lt;p&gt;In conclusion - the screen is fantastic, the browser is brilliant, the keyboard lets it down - but no more so than other touch devices, and it'll make a great toy for your lounge, but is unlikely to revolutionise the way you run your business. These are just my thoughts, if you disagree, or just want to say hello let me know - &lt;a href="mailto:hello@resounddesign.co.uk"&gt;hello@resounddesign.co.uk&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=O_XnDHTekA8:kbrys09UXGs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=O_XnDHTekA8:kbrys09UXGs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/O_XnDHTekA8" height="1" width="1"/&gt;</description>
<pubDate>Fri, 28 May 2010 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/O_XnDHTekA8/a-quick-look-at-the-ipad-as-a-web-browser</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/a-quick-look-at-the-ipad-as-a-web-browser</feedburner:origLink></item>
<item>
<title>Does your website need some serious attention?</title>
<description>&lt;p&gt;&lt;span&gt;There are many reasons that websites can become  neglected - being too busy, not valuing it enough, it not being any one  person's job, or even plain old forgetfulness can leave you with a stale  website.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: arial;"&gt;Here's two major signs that your website is in need of  some serious attention, maybe even a completely fresh start. &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span style="font-family: arial;"&gt;&lt;strong&gt;Do you know when your site was last updated?&lt;/strong&gt; If  there's been no changes at all to your site in 6 months then you're way  out of date!&lt;br /&gt;What's the solution? We'd recommend having some  content you can update regularly, quickly, and easily - that could be a  newsletter, a blog, photos, or even your twitter status.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: arial;"&gt;&lt;strong&gt;Are you getting enough visitors? Do you even know?&lt;/strong&gt;&lt;br /&gt;If  your website is failing to attract attention then it's not achieving  what it was created for and needs some attention. We'd suggest reviewing  your site completely and taking a look at ways in which it can be  marketed.&lt;br /&gt;If you don't even know how many visits you get - you  need to start tracking that as soon as you can, otherwise you're missing  the point a bit!&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;If your site is in dire need of some love  we're always happy to help you. We can provide a professional web  solution that's easy-to-update, looks great and attracts business.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;If  you have any questions, or if you need some help reviewing and reviving  your website, then we'd love to hear from you. Drop us an email at  &lt;a href="mailto:hello@resounddesign.co.uk"&gt;hello@resounddesign.co.uk&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=NEaELmYb4M8:59gQweUI-mU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=NEaELmYb4M8:59gQweUI-mU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/NEaELmYb4M8" height="1" width="1"/&gt;</description>
<pubDate>Thu, 13 May 2010 00:00:00 +0100</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/NEaELmYb4M8/does-your-website-need-some-serious-attention</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/does-your-website-need-some-serious-attention</feedburner:origLink></item>
<item>
<title>Goodbye websites, hello web strategy</title>
<description>&lt;p&gt;It's no surprise that the web and the way we use it is always changing.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;How the web has changed&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;The web isn't new any more&lt;/strong&gt;, it's been around a while, and it's boomed. Your website is now just one website out of hundreds of millions. How can you stand out from the crowd? A website alone may not be enough.&lt;strong&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;It's social.&lt;/strong&gt; The web is no longer a one way street of users looking at your information. Social networks and social bookmarking sites (like Facebook, Twitter, Delicious, Digg, LinkedIn, and so many more) are changing the way the web works.&lt;/p&gt;
&lt;p&gt;This presents us with a fantastic opportunity to converse, build relationships, and listen to web users, as well as an opportunity to reach people where they're at.&lt;/p&gt;
&lt;h2&gt;What that means&lt;/h2&gt;
&lt;p&gt;A website alone just won't cut it anymore. We need to start thinking about the bigger picture, and how it all fits together.&lt;/p&gt;
&lt;p&gt;Consider your presence on the web, not just your website, but your presence across the whole of the web. Think about it, and sketch it out.&lt;/p&gt;
&lt;p&gt;How does it look for you? How &lt;em&gt;could &lt;/em&gt;it look? Are there opportunities you're missing. Everyone's strategy doodle will be different, and should be different.&lt;br /&gt;&lt;br /&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile14/0" alt="Web Strategy Doodle" /&gt;&lt;br /&gt;&lt;br /&gt;It's amazing how your much of your web presence actually goes on outside your website. A website should not stand alone, it should support the strategy as a whole, acting as a hub. In the ever changing world of the web and social media, your website should be the constant core that ties it all together.&lt;/p&gt;
&lt;h2&gt;How the web might change&lt;/h2&gt;
&lt;p&gt;It's anyone's guess as to how the web could change in years to come, but there are a few things to keep an eye on - the mobile web, location-based services, development of the social web, and touch screen computing. Try your best to keep a finger on the pulse of the web.&lt;br /&gt;&lt;br /&gt;Watch how your web strategy unfolds - what works for you? What doesn't? Don't be afraid to drop something that's not working, and be sure to focus on the bits that do. Keep your web strategy fresh.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=A9WJHuGQVOE:Q5Rs1zb0Jx4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=A9WJHuGQVOE:Q5Rs1zb0Jx4:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/A9WJHuGQVOE" height="1" width="1"/&gt;</description>
<pubDate>Tue, 09 Feb 2010 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/A9WJHuGQVOE/goodbye-websites-hello-web-strategy</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/goodbye-websites-hello-web-strategy</feedburner:origLink></item>
<item>
<title>Exemplary business card designs</title>
<description>&lt;p&gt;We thought we'd share a few exciting business card designs to give you an insight into our likes and dislikes, inspire you, and show some love for other designers out there.&lt;/p&gt;
&lt;p&gt;As mentioned none of these designs are by us, full credit is given with each. Thanks to each of the designers for letting us use them and for the great design!&lt;/p&gt;
&lt;h2&gt;Daniel V. J. Sweeney by Total Brand&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile10/0" alt="Daniel V. J. Sweeney Business Card" /&gt;&lt;/p&gt;
&lt;p&gt;We love the way these business cards show off the photographer's work.&lt;/p&gt;
&lt;h2&gt;Get Nished by Jason Cornish&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile12/0" alt="Nished Business Card" /&gt;&lt;/p&gt;
&lt;p&gt;The simple colours, and simple, strong message make for a great business card.&lt;/p&gt;
&lt;h2&gt;Mogibo by Ivan Turcin&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile11/0" alt="Mogibo Business Card" /&gt;&lt;/p&gt;
&lt;p&gt;I love the clever format used here - it folds into a little guy - need I say more!&lt;/p&gt;
&lt;h2&gt;Chuck Tingley by Royal Graphics&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile9/0" alt="Chuck Tingley Visual Artist Business Car" /&gt;&lt;/p&gt;
&lt;p&gt;These cards look great and communicate the brand and service through the design.&lt;/p&gt;
&lt;h2&gt;Eden Design by Dumitru Iovu&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img class="float_none" src="http://www.resounddesign.co.uk/imagefile8/0" alt="Eden Design Business Card" /&gt;&lt;/p&gt;
&lt;p&gt;Finally, these cards communicate the brand and the service through text in an informative explanatory tone.&lt;/p&gt;
&lt;p&gt;Could you take the principles that make these cards great and make your business card more effective?&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=v3jo772E3gI:prN2nKxnsrc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=v3jo772E3gI:prN2nKxnsrc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/v3jo772E3gI" height="1" width="1"/&gt;</description>
<pubDate>Sun, 27 Dec 2009 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/v3jo772E3gI/inspiring-business-card-designs</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/inspiring-business-card-designs</feedburner:origLink></item>
<item>
<title>5 tips for getting more traffic to your website</title>
<description>&lt;p class="content_highlight"&gt;Is it enough to just have a good website if no one's visiting it?&lt;span class="content_highlight_bottom"&gt; &lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Here are 5 basic tips for increasing traffic to your website, making sure you make the most of the time and money you've already put into making it good.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;1) Optimise for search engines&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;There are some simple steps (as well as more advanced undertakings) you can follow to optimise your website to attract search engine traffic. This is known as Search Engine Optimisation or SEO.&lt;/p&gt;
&lt;p&gt;As a general rule most website traffic comes from search engines (like Google, Yahoo or Bing), as opposed to links from other sites, or visitors who type the address in.&lt;/p&gt;
&lt;p&gt;Act with caution here though, it's easy to go over the top and end up looking spammy.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;2) Advertise it&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Pay-Per-Click Advertising (PPC) is a form of advertising your website or service online using a service such as Google Adwords.&lt;/p&gt;
&lt;p&gt;Although results here are not as long lasting as SEO, PPC can be good for a quick boost, or a specific campaign.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;3) Publish good, creative content&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Perhaps the most important tip here - if you have good content people will see it, find it useful, enjoy it and with some luck they'll share it and come back again.&lt;/p&gt;
&lt;p&gt;Google favours good content - getting this right gives you a leg up on the search engines.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;4) Get social &amp;amp; get sharing&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;If you're not part of, then you will have at least heard of social network sites like Facebook, Twitter, MySpace, Delicious, Digg, the list goes on.&lt;/p&gt;
&lt;p&gt;These can be a great way of publicising your site for free, and building relationships with your target audience.&lt;/p&gt;
&lt;p&gt;Social networking lets you connect with real people, lets you tell the world what you're up to, allows you and others to share your creative content, is a great way to get feedback and even generates inbound links which are great for SEO.&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;5) Make the most of every opportunity&lt;/strong&gt;&lt;/h2&gt;
&lt;p&gt;Make sure you take advantage of every opportunity on and offline to plug your website.&lt;/p&gt;
&lt;p&gt;You can include your web address, as a hyperlink where possible, on...&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Your email signature&lt;/li&gt;
&lt;li&gt;Letterhead&lt;/li&gt;
&lt;li&gt;Business cards&lt;/li&gt;
&lt;li&gt;Signage&lt;/li&gt;
&lt;li&gt;Press releases&lt;/li&gt;
&lt;li&gt;Merchandise&lt;/li&gt;
&lt;li&gt;The list goes on...&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Your website should be a keystone of your brand - feature it on everything!&lt;/p&gt;
&lt;h2&gt;&lt;strong&gt;In conclusion...&lt;/strong&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Remember that there are no quick fixes - it's unlikely you'll see a massive increase in traffic over night, let alone quality traffic.&lt;/li&gt;
&lt;li&gt;Not all these options will suit you or the way you do business - pick the ones that will work best for you.&lt;/li&gt;
&lt;li&gt;Make sure you have a way of measuring traffic to your website.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I hope you've found this brief overview useful - we should be covering some of these topics in more depth in future months, plus how to convert visits into paying customers.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=qGCpN7Mr7Bs:zLzwCSaa9Wc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/resounddesignblog?a=qGCpN7Mr7Bs:zLzwCSaa9Wc:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/resounddesignblog?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/resounddesignblog/~4/qGCpN7Mr7Bs" height="1" width="1"/&gt;</description>
<pubDate>Fri, 27 Nov 2009 00:00:00 +0000</pubDate>
<author> (Resound Design)</author>
<link>http://feedproxy.google.com/~r/resounddesignblog/~3/qGCpN7Mr7Bs/5-tips-for-getting-more-traffic-to-your-website</link>
<feedburner:origLink>http://www.resounddesign.co.uk/blog/5-tips-for-getting-more-traffic-to-your-website</feedburner:origLink></item>
</channel>
</rss>

