<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Strawberrysoup Blog &#38; News &#187; Articles</title>
	<atom:link href="http://blog.strawberrysoup.co.uk/category/articles/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.strawberrysoup.co.uk</link>
	<description>Creative web and design consultants in Chichester, Bournemouth and London</description>
	<lastBuildDate>Tue, 02 Mar 2010 16:26:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Building Location Aware Sites with Geo-IP</title>
		<link>http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/</link>
		<comments>http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 11:13:36 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[Strawberrysoup]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=685</guid>
		<description><![CDATA[
			
				
			
		
One of the most powerful features of the internet is the power to connect and share from opposite poles of the earth; no longer does your geographic location affect who you talk to or what you read. Companies that were once specific to a certain location now have access to the whole online market; with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2010%2F01%2F14%2Fbuilding-location-aware-sites-with-geo-ip%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2010%2F01%2F14%2Fbuilding-location-aware-sites-with-geo-ip%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>One of the most powerful features of the internet is the power to connect and share from opposite poles of the earth; no longer does your geographic location affect who you talk to or what you read. Companies that were once specific to a certain location now have access to the whole online market; with 1.4 billion people currently connected it opens up whole new revenue streams.</p>
<p><a href="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/Screen-shot-2010-01-14-at-11.10.25.png"><img class="alignleft size-full wp-image-687" title="Screen shot" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/Screen-shot-2010-01-14-at-11.10.25.png" alt="" width="234" height="69" /></a>The final product will simply tell you where it thinks you are and allows you to set a new default location.</p>
<p>However with this global access there becomes another problem, not all data is global; the weather in London is most likely different to the current weather in New York. What about shopping? Currencies often change between borders and tax makes things even more complex. There have been countless solutions to this problem; the most glaringly obvious is a splash page or a form asking for the users location.</p>
<p>There’s nothing wrong with these solutions but there’s also nothing special about them, just more distractions and obstacles between the user and their final destination. In this tutorial we’ll be building a simple function and demo which solves this problem and should be easily pluggable into any new or existing project.</p>
<h2>Location Uses?</h2>
<p>As previously mentioned there are several uses for location based sites; simply looking through the days history in your favourite browser will probably reveal several sites that have asked for your location before, whether it be for simple data collection or put to use to give you more relevant information; local news, weather, messages from people close by or maybe to warn you about bad traffic in your area.</p>
<p>How many times in the last month have you entered your address or country? Whenever you&#8217;ve bought anything online or registered to a new site you&#8217;ve doubtless had to put in a variety of location based answers.</p>
<h2>So what is GeoIP?</h2>
<p>GeoIP is the common name given to the technique of determining a visitors Geographical location based on their visiting IP. It requires a database which pairs IP blocks to a country and/or city, these are available from several places online however for this tutorial to work than you will have to use the IPinfoDB SQL, available and updated monthly at http://www.ipinfodb.com/ip_database.php we’ll be specifically using the country only version with only one table, this is for performance and simplicity reasons &#8211; once you have the tutorial working with the country only version, modifying the script to work with the other versions should be simple. So go ahead and create a blank MySQL database and import the SQL straight into it.</p>
<p><strong>1. Set up project</strong></p>
<p>Create a blank index.php somewhere on your PHP enabled server and write the following lines into it, replacing all the variables to whatever username, password and database name you have chosen to use.</p>
<pre>&lt;?php
mysql_connect('localhost', '%USERNAME%', '%PASSWORD%');
mysql_select_db('%DBNAME%');
?&gt;</pre>
<p><strong>2. Building the detection script</strong></p>
<p>The first actual fresh code we need to do write is the script which detects the users location &#8211; surprisingly this is actually quite simple and straightforward once you have a simple database to query. All the function is going to do is query the database for the closest result and then return the country name.</p>
<pre>function detect_location($ip=false) {
 if(!$ip) $ip = $_SERVER['REMOTE_ADDR'];
 $parts = explode('.', $ip);
 $iph = (($parts[0]*256+$parts[1])*256+$parts[2])*256 + $parts[3];
 $result = mysql_query('SELECT country_name FROM `ip_group_country` where `ip_start` &lt;= '.$iph.'order by ip_start desc limit 1');
 while ($row = mysql_fetch_assoc($result)) {
 return $row['country_name'];
 }
}
?&gt;</pre>
<p>So what does all of this do? Well let’s go through it bit by bit:</p>
<pre>if(!$ip) $ip = $_SERVER['REMOTE_ADDR'];</pre>
<p>This sets the first $ip to the visitors IP if the function receives no parameter</p>
<pre>$parts = explode('.', $ip);
$iph = (($parts[0]*256+$parts[1])*256+$parts[2])*256 + $parts[3];</pre>
<p>This bit is the most confusing bit, the first line splits the IP into it’s four sections, the second line put’s it into a format usable for the database.</p>
<p>After that the rest is a simple SQL query to get the first result which matches the IP closest and then returns the country name.</p>
<p><strong>3. Displaying results to the user</strong></p>
<p>This is where we actually start using our function and giving it a purpose, we’ll start simple and just display where we think the user is coming from, underneath the PHP block write the following below:</p>
<pre>&lt;?php
$country = detect_location();
?&gt;
&lt;h1&gt;Are you from: &lt;?=$country?&gt;&lt;/h1&gt;</pre>
<p><strong>4. Is it wrong?</strong></p>
<p>Now you can visit your file in a browser and see if it guesses your location is correct; it’s wrong? Well if you run the file locally then it will always be wrong because it detects your local IP (127.0.0.1 or ::1). So what can you do? Short of testing it by placing it on a public machine elsewhere we can modify our code to force an IP:</p>
<pre>Change $country = detect_location(); to read $country = detect_location('74.125.45.100');.</pre>
<p>Testing it again should return &#8220;United States&#8221; &#8211; this is because the IP is one of Googles US servers IP&#8217;s. From here on we could just carry on but from seeing that error it exposes a simple problem; as with most programming things it will not be 100% correct every time. So how can we fix this? Well in the unlikely event it is wrong we can give the user some way of changing it. Modify the current code to match that of below and afterwards it will be explained.</p>
<pre>&lt;?php
session_start();
mysql_connect(‘localhost’, ‘%USERNAME%’, ‘%PASSWORD%’);
mysql_select_db(‘%DBNAME%’);
function detect_location($ip=false) {
 if(!$ip) $ip = $_SERVER['REMOTE_ADDR'];
 $parts = explode('.', $ip);
 $iph = (($parts[0]*256+$parts[1])*256+$parts[2])*256 + $parts[3];
 $result = mysql_query('SELECT country_name FROM `ip_group_country` where `ip_start` &lt;= '.$iph.'order by ip_start desc limit 1');
 while ($row = mysql_fetch_assoc($result)) {
 return $row['country_name'];
 }
}
if($_POST &amp;&amp; $_POST[‘country’]) {
 $_SESSION[‘country’] = $_POST[‘country’];
}
$country = (isset($_SESSION[‘country’])) ? $_SESSION[‘country’] :
detect_location($_SERVER['REMOTE_ADDR']);
?&gt;
&lt;h1&gt;Are you from: &lt;?=$country?&gt;&lt;/h1&gt;
&lt;p&gt;Change Region:
&lt;form action="" method="post"&gt;
 &lt;select name="country"&gt;
 &lt;option value="United Kingdom"&gt;United Kingdom&lt;/option&gt;
 &lt;option value="France"&gt;France&lt;/option&gt;
 &lt;/select&gt;
 &lt;input type="submit" value="Go" /&gt;
&lt;/p&gt;</pre>
<p>For now there is only the option to change your country to either the UK or France, but it should be easily changeable to list all countries &#8211; either by finding the select HTML from somewhere online or plugging it into a database table of all countries<strong> </strong></p>
<p><strong>4a &#8211; Making sense of it all</strong></p>
<p>As you can tell the size of the code has suddenly doubled, so it’s probably time to inspect what is actually happening in each section to dispel all claims of magic. Each addition is documented below in enough detail for you to understand it&#8217;s purpose.</p>
<pre>session_start();</pre>
<p>This tells the PHP engine that our script will be using sessions so needs to give the visitor a session to use, or retrieve their current session off the filesystem.</p>
<pre>if($_POST &amp;&amp; $_POST[‘country’]) {
 $_SESSION[‘country’] = $_POST[‘country’];
}</pre>
<p>This detects if a new country name has been submitted to the page via POST, if this occurs than the data is saved into a session &#8211; if this wasn&#8217;t done than the user would have to tell the site where they are for every page request which would be extremely bad usability.</p>
<pre>$country = (isset($_SESSION[‘country’])) ? $_SESSION[‘country’] : detect_location($_SERVER['REMOTE_ADDR']);</pre>
<p>To those that have not seen a ternary if statement in PHP this may seem like a daunting piece of code however once explained it&#8217;s actually very simple. In PHP as well as a lot of other C based languages you can write single line if/else statements using something called a ternary statement. The syntax is as follows:</p>
<pre>(expression) ? true : false</pre>
<p>So applying that to our code above gives the explanation; first it checks to see if $_SESSION['country'] is set, if it is than $country is set to contain the sessions value, if not than it is retrieved out of the database.</p>
<p>Under the old &lt;h1&gt; there’s a form in which the important things to note is that the action is set to blank so it submits to whatever URL you are on and that the method is set to post. Inside the form there is only a select box which is where the visitor can choose what country they are in.</p>
<p><strong>5. Test, Play, Experiment</strong></p>
<p>After typing all of that above, fire up the page in your favourite browser and test the new drop down out; then make sure it saves when you refresh the page. It works? Finally. Now that this all works you should hopefully have enough basic knowledge about GeoIP to build it into a new project and even change the script to do some even more amazing things.</p>
<p><a href="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/Screen-shot-2010-01-14-at-11.11.541.png"><img class="alignleft size-full wp-image-690" title="Screen shot" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/Screen-shot-2010-01-14-at-11.11.541.png" alt="" width="634" height="315" /></a></p>
<p>At only 28 lines of code you can see how simple it is to build such useful functionality.</p>
<h2>Online API’s</h2>
<p>If you don’t have access to a SQL database or don’t want to host the database locally, IPinfoDB hosts a simply web API for submitting an IP and getting back it’s information in a variety of formats including JSON and XML. The downside of this is it means you are reliant on their servers being online 100% of the time and also that they keep the service available and free. The upside though is that all maintenance is done by them so you don’t have to update your IP tables every month or so. For documentation on this API documentation is available at: http://www.ipinfodb.com/ip_location_api.php The easiest way to use this is with the simple code below:</p>
<pre>&lt;?php
 session_start();
 if(!isset($_SESSION['country'])) {
 $file = file_get_contents('http://ipinfodb.com/ip_query.php?ip='.$_SERVER['REMOTE_ADDR'].'&amp;format=json');
 $data = json_decode($file);
 $_SESSION['country'] = $data['CountryName'];
 }
 $country = $_SESSION['country'];
 echo 'You live in: '.$country;
?&gt;</pre>
<p>This also saves the users location in a session so that you don’t have to keep sending requests to the API’s server &#8211; this has a number of advantages; speeding up your page loads, lowering bandwidth usage and decreasing the chance of ever going over any fair usage policy.</p>
<h2>HTML5 Geolocation API</h2>
<p>One of the recent additions to the HTML5 specification is a new javascript API for retrieving geographical information about the visitor, this includes the ability to gain coordinates for the visitor but also to watch the visitors location for changes. Currently it is already supported in Firefox 3.5 as well as a similar available for the Google Gears API. Being able to retrieve more precise information from the visitor (especially on the client-side) could lead to some interesting uses and web applications. More information and documentation on it’s features can be found at: http://www.w3.org/TR/geolocation-API/</p>
<p>Although there aren’t a lot of public examples of this new HTML5 API, it’s only time before people start creating games played on smartphones which interact with each others position or some other imaginative use.</p>
<h2>Sites Using GeoIP</h2>
<p>The newly launched irregular choice store uses GeoIP to display localised stock lists and prices at <a href="http://shop.irregularchoice.com" target="_blank">http://shop.irregularchoice.com</a></p>
<p>GeoIP isn’t just restricted to PHP and conventional HTML;  an example of GeoIP in a flex app using python exists at: <a href="http://blog.pyamf.org/archives/geoip-example" target="_blank">http://blog.pyamf.org/archives/geoip-example</a></p>
<h2>Resources</h2>
<p>If your using Lighttpd then you can use mod_geoip to handle all the logic for you enabling you to focus on what you do with a visitors location. You can find a tutorial at: <a href="http://www.cyberciti.biz/tips/linux-lighttpd-install-mod_geoip-tutorial.html" target="_blank">http://www.cyberciti.biz/tips/linux-lighttpd-install-mod_geoip-tutorial.html</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Building+Location+Aware+Sites+with+Geo-IP&amp;Description=Building+Location+Aware+Sites+with+Geo-IP&amp;Url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;title=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;title=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;title=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;bm_description=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;title=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;title=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Building+Location+Aware+Sites+with+Geo-IP+@+http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/&amp;t=Building+Location+Aware+Sites+with+Geo-IP" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2010/01/14/building-location-aware-sites-with-geo-ip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dynamic CSS &#8211; Creating Time Sensitive Sites</title>
		<link>http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/</link>
		<comments>http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 16:32:20 +0000</pubDate>
		<dc:creator>Stuart</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Labs]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=667</guid>
		<description><![CDATA[
			
				
			
		
Create subtle CSS changes to your site based on time and date
In todays modern web design environment it takes more and more to attract visitors visually, and even more to make them keep coming back. Of course this mostly depends on content as there has to be a purpose to the visit, however small subtle [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2010%2F01%2F07%2Fdynamic-css-creating-time-sensitive-sites%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2010%2F01%2F07%2Fdynamic-css-creating-time-sensitive-sites%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Create subtle CSS changes to your site based on time and date</strong></p>
<div id="attachment_672" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/Screen-shot-2010-01-07-at-16.37.03.png"><img class="size-medium wp-image-672" title="Screen shot 2010-01-07 at 16.37.03" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/Screen-shot-2010-01-07-at-16.37.03-300x233.png" alt="" width="300" height="233" /></a><p class="wp-caption-text">Oasis Overland uses time sensitive stylesheets</p></div>
<p>In todays modern web design environment it takes more and more to attract visitors visually, and even more to make them keep coming back. Of course this mostly depends on content as there has to be a purpose to the visit, however small subtle details to the site can make any visitor become excited.</p>
<p>In this tutorial, you will create a site that changes it’s background based on the time a person visits the site, afterwards you should have the knowledge to adapt the script to be based on any other data you want to use.</p>
<p>All server-side examples in this tutorial will be based on PHP, so make sure you have a working test environment with PHP5 enabled. If you are using any other server-side scripting tool it is likely there will be a guide to accomplish a similar effect online; however reading through this guide you will likely recognise similar syntax and functions allowing you to convert it to the language you’re using.</p>
<p><strong>Opening the Folders</strong></p>
<p>Included <a href="http://blog.strawberrysoup.co.uk/wp-content/uploads/2010/01/dynamic_css.zip" target="_blank">in this download</a> is a folder called dynamic_css which contains all of the base files needed to complete this project. Move the folder into your testing servers root directory. Open the folder in your preferred IDE and then view index.php in a browser. If you’ve got PHP enabled and everything was copied successfully then you should see a basic white page with a header, navigation on the left and lorem ipsum on the right; it’s now time to start the dynamic styles.</p>
<p><strong>PHP Sunsets and Sunrises</strong></p>
<p>Using PHP to retrieve and make decisions based on time has it’s advantages and disadvantages. The largest disadvantage is the fact that PHP can’t access the users computer time and can only get the time of the server, the advantage however is that PHP has a large set of functions that make dealing with time that little less painfull. If you open up index.php, before the start &lt;html&gt; tag type the following PHP. Afterwards I will explain the key parts of the script.</p>
<pre>&lt;?php
 $time = date('G');
 $sunrise = date_sunrise(time(), SUNFUNCS_RET_DOUBLE);
 $sunset = date_sunset(time(), SUNFUNCS_RET_DOUBLE) + 1;
 if($time &gt;= $sunrise &amp;&amp; $time &lt; $sunrise + 2) $style = 'sunrise';
 elseif($time &gt;= $sunrise + 2 &amp;&amp; $time &lt; $sunset) $style = 'day';
 elseif($time &gt;= $sunset &amp;&amp; $time &lt; $sunset + 2) $style = 'sunset';
 else $style = 'night';
?&gt;</pre>
<p>Lines 2 &#8211; 4 set three variables; $time is set to the current hour, <em>$sunrise</em> is set to the sunrise time for today and <em>$sunset</em> is set to one hour later than the sunset time (from my experience, official sunset times start an hour or two before what most people would call sunset starts).</p>
<p>Lines 5 &#8211; 8 runs a set of standard if statement to determine which style to show; sunrise, day, sunset or night, this is then set to the variable <em>$style</em>. This can now be used whenever a reference to the time of day is needed, as you will be shown below.</p>
<p><strong>Dynamic CSS Techniques; One, Two and Three</strong></p>
<p>There are three main ways of achieving dynamic CSS &#8211; which one you use depends on several factors; the amount of styles that change per data, amount of style sheets that get loaded into the page and the amount of customisation you have on your server.</p>
<p><strong>Setting a body id/class</strong></p>
<p>The most popular method of using dynamic CSS is to set the body id or class of the page depending on the styles needed. The advantages of this is that no server changes need to be made, you can use the same id/class across style sheets with no extra code and it’s easy to quickly prototype and debug. The disadvantage of this is that you can only use pre-defined constants, because of this you can’t have random colour pallates using this method.</p>
<p><strong>Including style sheets</strong></p>
<p>The second most popular method is to include extra style sheets depending on which styles you need, this can be beneficial when a lot of styles change depending on what is needed; this stops the stylesheet having to include styles for all other posible states of the site together. The disadvantages is that you have to create a stylesheet per state, this can be a large hassle if you are going to have a lot of different styles, it also inherits the flaw of not being able to access the data in the style sheet.</p>
<p><strong>PHP in the style sheet</strong></p>
<p>This approach can be done in several ways, when used successfully and appropiately this can create the largest amount of freedom with data being able to be directly accessed in the style sheet meaning there is no limit to the amount of states possible. The disadvantages is that if you want your style sheets to still have the .css file extension you need to customise the server, this also means you lose the portability of the style sheet. The other option is to use .php as the CSS extension. Another disadvantage is that you are limited to having all the rules in one file without having to duplicate and re-process the PHP.</p>
<p><strong>Setting a body ID</strong></p>
<p>In our example there are only a few things changing per state and there are only 4 states, based on the advantages and disadvantages outlined above, setting a body id is probably the best way of achieving the effect.</p>
<p>Change the &lt;body&gt; tag to be the following:</p>
<pre>&lt;body id="&lt;?=$style?&gt;"&gt;</pre>
<p>Then open base.css and add the following to the end of the file.</p>
<pre>/********** TIME SENSITIVE CSS **********/</pre>
<pre>#sunset {
background: url('../images/sunset.jpg') repeat-x #BE7001;
}
</pre>
<pre>#sunrise {
background: url('../images/sunrise.jpg') repeat-x #EFC501;
}</pre>
<pre>#day {
background: url('../images/day.jpg') repeat-x #0A6FBF;
}</pre>
<pre>#night {
background: url('../images/night.jpg') repeat-x #00123A;
}</pre>
<p>Open your page in a browser now and admire the scenery depending on what time of day it is.</p>
<p><strong>Including style sheets</strong></p>
<p>Including style sheets is another simple yet effect method, the practice involves having a separate style sheet for each state. To adapt the current site to use this method create 4 style sheets called, sunset.css, sunrise.css, day.css and night.css. Place the appropriate code for each state in it&#8217;s file, then remove the id on the body tag and instead place the below code in the &lt;head&gt; tag.</p>
<pre>&lt;link rel="stylesheet" href="css/&lt;?=$style?&gt;.css" type="text/css" media="screen" charset="utf-8" /&gt;</pre>
<p><strong>PHP in the style sheet</strong></p>
<p>Out of the three methods outlined this one is by far the most flexible and powerful however also requires the most work so if a stage doesn&#8217;t work for you go back and repeat again; if it still isn&#8217;t working as it should then a quick search online will normally end up in a solution to the same problem someone else had.</p>
<p><strong>Setting .css to be run as php</strong></p>
<p>This is a matter of personal opinion however, I feel that having a .css extension helps define what an external asset is doing; this stage isn&#8217;t required so if you don&#8217;t mind having css with the .php ending or your server doesn&#8217;t allow you to make the following changes then skip this step.</p>
<p>Create a .htaccess file in the root of your site, place the following line in it:</p>
<pre>AddHandler application/x-httpd-php .css</pre>
<p>This sets PHP to handle all files with a .css extension, allowing you to place php in a .css file as if it were exactly the same as a .php file. If it fails to do anything at first, restart apache and see if that solves the problem.</p>
<p><strong>Setting the Content-Type and Using the PHP</strong></p>
<p>The most important thing to do when using dynamic CSS is to stop PHP setting the content-type header as text/html, you need your css files to be sent to the browser with the content-type text/css. To do this place the following line at the top of base.css (or base.php if you didn&#8217;t complete the previous step).</p>
<pre>&lt;?php header('Content-Type: text/css'); ?&gt;</pre>
<p>To get the background to change now place this just below the line you just wrote at the top (you can remove all the PHP from the index.php):</p>
<pre>&lt;?php
 $time = date('G');
 $sunrise = date_sunrise(time(), SUNFUNCS_RET_DOUBLE);
 $sunset = date_sunset(time(), SUNFUNCS_RET_DOUBLE) + 1;
 if($time &gt;= $sunrise &amp;&amp; $time &lt; $sunrise + 2) $style = 'url(../images/sunrise_bg.jpeg) repeat-x orange';
 elseif($time &gt;= $sunrise + 2 &amp;&amp; $time &lt; $sunset) $style = 'url(../images/day_bg.jpeg) repeat-x blue';
 elseif($time &gt;= $sunset &amp;&amp; $time &lt; $sunset + 2) $style = 'url(../images/sunset_bg.jpeg) repeat-x black';
 else $style = 'url(../images/night_bg.jpeg) repeat-x black';
?&gt;
body {
 background: &lt;?=$style?&gt;;
}</pre>
<p>Opening the page in a browser should now show you a background simulating the great outdoors.</p>
<p><strong>The equivalent in javascript</strong></p>
<p>PHP isn&#8217;t the only way to add dynamic elements in your sites, javascript has been the raw base to site dynamics for years. Of the three methods above the first two will work fine in javascript with adaptations. Javascript has a few disadvantages; there&#8217;s a delay between page load and the new styles, javascript is also notorious for browser differences and it of course requires javascript</p>
<p>Javascript doesn&#8217;t have the same resources as PHP and so can&#8217;t provide sunrise and sunset times so in the examples below the state will be statically set to &#8216;day&#8217;.</p>
<p><strong>Setting a body id</strong></p>
<pre>var state = 'day';
document.getElementsByTagName('body')[0].id = state;</pre>
<p>A general breakdown of the code above is that it assigns the variable state a value of &#8216;day&#8217;, the second line then starts by selecting the document, finds all the elements with the tag name body (should always be just one) and then gives the first ( 0 nth element) the id of state.</p>
<p><strong>Including extra style sheets</strong></p>
<pre>var state = 'day';
var cssFile = 'css/' + state + '.css';
var link = document.createElement('link');
link.setAttribute('href', cssFile);
document.getElementsByTagName('head')[0].appendChild(link);</pre>
<p><strong>Enjoy and Explore</strong></p>
<p>Based on the three PHP methods demoed here there are a llimitless amount of different ways you can make your CSS dynamic, if you need some ideas though just see the taking it further boxout for more info.</p>
<p><strong>Taking it Further</strong></p>
<p>Dynamic CSS isn’t restricted to simple time and date manipulations. Any data that your server or the clients browser can access can be used. Whether it&#8217;s pre-determined states such as seasons or  based on data hosted elsewhere, a few extra ideas are below.</p>
<p><em>1) Location</em> &#8211; Retrieving the visitors location is a tricky thing although there are several popular libraries and snippets readily available to make things easier. Mozilla is also pioneering the methods in which a server and site can detect a users location. Having the background change to compliment your location could be an easy way to make your site more localised.</p>
<p><em>2) Weather</em> &#8211; Having your sites background change depending on the weather could add function as well as design to a site, visitors to a local harbour could quickly determine the current weather or water height before even getting to the page.<br />
RSS Feeds &#8211; Easily accessible and retrievable RSS feeds now span the spectrum of content on the web, colour palettes, political data, surveys and pretty much anything you could want is probably already in RSS format.</p>
<p><em>3) Local site data </em>- If your site has dynamic content why not compliment it with some dynamic styles. If you have a blog then you could have the background represent the category which was last blogged about.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites&amp;Description=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites&amp;Url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;title=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;title=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;title=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;bm_description=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;title=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;title=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites+@+http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/&amp;t=Dynamic+CSS+%26%238211%3B+Creating+Time+Sensitive+Sites" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2010/01/07/dynamic-css-creating-time-sensitive-sites/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Should stock photography be used on your website?</title>
		<link>http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/</link>
		<comments>http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 16:47:05 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=659</guid>
		<description><![CDATA[
			
				
			
		
No-one can disagree that the huge popularity of stock photography has shaped the way apperance of many websites on todays modern Internet. Who can resist those ethnically diverse teams, smiling at the camera around a laptop in a modern office? How about those beautiful outdoor shots of rolling hills and bright blue sky? They are [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2010%2F01%2F06%2Fshould-stock-photography-be-used-on-your-website%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2010%2F01%2F06%2Fshould-stock-photography-be-used-on-your-website%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>No-one can disagree that the huge popularity of stock photography has shaped the way apperance of many websites on todays modern Internet. Who can resist those ethnically diverse teams, smiling at the camera around a laptop in a modern office? How about those beautiful outdoor shots of rolling hills and bright blue sky? They are classic stock photography.</p>
<p>But should we think carefully about the use stock photos on our websites? Are we missing an opportunity and creating monotonous and predictable websites?</p>
<p><strong>What is Stock Photography</strong></p>
<p>Stock photography has gained a lot of momentum over the past 4 years. It is the term associated with professionally taken photographs that you can buy the rights to use on your website or printed material. There is a wide range of stock photography websites available online with two of the popular options being Getty and iStockPhoto.</p>
<p><a title="Getty" href="http://www.gettyimages.com" target="_blank">Getty</a> specialise in top quality and higher-end photography. They supply many of the news networks with photography for their stories. Their prices range from between £150 &#8211; £600 per image, depending on the sector and size chosen.</p>
<p><a title="iStockPhoto" href="http://www.istockphoto.com" target="_blank">iStockPhoto</a> (which is now owned by Getty) is one of the most popular galleries available and is community rather than corporate based. End users can submit their own photos for inclusion and these are then reviewed by iStockPhoto. Successful photos are available to purchase by end users and the photographer receives a commission. Costs are based on a credit system, with images based around between £1 and £15, depending on their size.</p>
<p><strong>Why should I use Stock Photography?</strong></p>
<p>One of the main reasons is budget. Choosing stock photography is almost always cheaper than commissioning a professional photographer to snap your employees, products or services. This does however depend on the number of photos that you are purchasing and the quality required.</p>
<p>Variation and range is another good reason. There are millions of stock photos available to purchase. The benefit of this is that you are more than likely to find a photo to suit your business and website.</p>
<p><strong>Why shouldn’t I use Stock Photography?</strong></p>
<p>We feel that one of the main problems with stock photography is repetition. Popular stock photos can be seen all over the Internet. When you buy a stock photo, you do not have the rights to use this exclusively, so you will no doubt find other websites, and possibly competitors using the same photos as you.</p>
<p>This undoubtably results in your website looking rather generic and convoluted. It is difficult to showcase your personality through generic photos that have been snapped from all around the world.  Sticking with the ethnically diverse team photo as above &#8211; why not show a nice photo of the actual people behind your business, rather than a staged and predictable photo like this?</p>
<p>Depending on the subject of your website, stock photography may not suit. If your website is very specialised or technical, you may not find any photos that suit. If this is the case, commissioning a photographer may be the only option.</p>
<p><strong>Conclusion</strong></p>
<p>For Strawberrysoup, using stock photography is always going to be a bit of a sticky subject. It is ultimately client dependent &#8211; are they based in a very specialised field, how many photos do they require and do they have the budget to hire a professional photographer?</p>
<p>For our new website, we are not going to be using stock photos. We feel that we have a brilliant team and a unique ethos &#8211; using stock photos would not do us justice. We want to showcase our team and our personality from a design and photographic perspective, rather than looking generic and like many other web design agencies out there.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Should+stock+photography+be+used+on+your+website%3F&amp;Description=Should+stock+photography+be+used+on+your+website%3F&amp;Url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;title=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;title=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;title=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;bm_description=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;title=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;title=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Should+stock+photography+be+used+on+your+website%3F+@+http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/&amp;t=Should+stock+photography+be+used+on+your+website%3F" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2010/01/06/should-stock-photography-be-used-on-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Internet Explorer 6 Debate</title>
		<link>http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:16:39 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=652</guid>
		<description><![CDATA[
			
				
			
		
We have been having a few debates recently at Strawberrysoup which mainly focus around cross browser interoperability and if the websites we create should support the archaic Microsoft Internet Explorer 6.
As every web developer and designer knows, the main problem that we face every day when developing websites is how they look over the many [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F12%2F18%2Fthe-internet-explorer-6-debate%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F12%2F18%2Fthe-internet-explorer-6-debate%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>We have been having a few debates recently at Strawberrysoup which mainly focus around cross browser interoperability and if the websites we create should support the archaic Microsoft Internet Explorer 6.</p>
<p><img class="alignleft size-full wp-image-654" title="Bring Down IE6" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/12/bd.png" alt="Bring Down IE6" width="117" height="120" />As every web developer and designer knows, the main problem that we face every day when developing websites is how they look over the many different browsers – Internet Explorer, Firefox, Chrome, Safari, Camino, Flock, Opera – the list goes on.</p>
<p>At Strawberrysoup, we build each website by testing in Firefox 3 (our favourite due to it&#8217;s standards compliance) and then tweak the site for the remaining browsers. As always, Internet Explorer 6 is the problem child, and can typically add 5% onto a budget due to the time taken to debug and fix.</p>
<p>We find that the difficultly arises when a designer creates a beautiful, usable and technologically advanced website for a client. It gets signed off and  when the developers try and fit/translate this design for a browser that is 10 years old – it just doesn’t happen.</p>
<p>One of the problems that we face when trying to justify this problem is the statistics. IE6 still has a market share of about 11% now (according to <a href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">http://www.w3schools.com/browsers/browsers_stats.asp</a>)  – but the good news is that this share of the market is reducing each month (it was 18% in January 2009). Microsoft’s forced IE7 and IE8 update has further reduced this share, but so has the increased exposure of Firefox (47%) and the more and more people using Google&#8217;s Chrome (8.5%) and Apple&#8217;s Safari (4%).</p>
<p>We work with a wide range of clients, some small businesses but increasingly we are working with larger companies and local councils. Local councils especially seem to use older browsers and they are unfortunately stuck with the cost of company wide system or browser update restricting their end users having the latest versions of software (even if the actual browser upgrade would be free.)</p>
<blockquote><p>A good analogy would be the same as ordering Sky HD, being excited about the stunning picture quality and then realising that your 14” portable TV doesn’t support most of the features so you end up with the basic cut down version – its disappointing to say the least.</p></blockquote>
<p>There is no doubt that other web design agencies in a similar predicament. We have heard that some have opted at the original spec stage, to mention that the site will have all of the bells and whistles on for Firefox, IE7, Safari and that IE6 will be supported, but only to a limited extent as even Microsoft has ended support for their legacy browser. They also mention other browsers such as Camino or Flock will be supported at an additional charge.</p>
<p>It seems that many agencies/freelancers are stuck in this dilemma for the near future – should we continue to support IE6 as much as possible (with CSS hacks and alike) or should we offer clients a cut down version of the originally signed off design? I suppose the answer to this question depends on budget, timeframes and the target market.</p>
<p>For more information on the browser dilemma, why not visit <a href="http://www.savethedevelopers.org" target="_blank">http://www.savethedevelopers.org</a> or <a href="http://www.bringdownie6.com" target="_blank">http://www.bringdownie6.com</a>.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=The+Internet+Explorer+6+Debate&amp;Description=The+Internet+Explorer+6+Debate&amp;Url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;title=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;title=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;title=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;bm_description=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;title=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;title=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+The+Internet+Explorer+6+Debate+@+http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/&amp;t=The+Internet+Explorer+6+Debate" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/12/18/the-internet-explorer-6-debate/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Increase Online Sales for Christmas</title>
		<link>http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 11:07:16 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Small Business]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=627</guid>
		<description><![CDATA[
			
				
			
		
If your business focuses around selling products to consumers, you will no doubt be looking forward to the festive period. Even during these tough economic times, consumers love nothing more than braving the cold and splashing their cash on their loved ones.
Over the past few years, eCommerce has jumped in leaps and bounds and now [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F12%2F14%2Fhow-to-increase-online-sales-for-christmas%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F12%2F14%2Fhow-to-increase-online-sales-for-christmas%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>If your business focuses around selling products to consumers, you will no doubt be looking forward to the festive period. Even during these tough economic times, consumers love nothing more than braving the cold and splashing their cash on their loved ones.</p>
<p>Over the past few years, eCommerce has jumped in leaps and bounds and now more and more of us are shopping online in the comfort of our own homes. But how can we ensure we are making the most out of our online business?</p>
<p>This article aims to describe the tools and techniques that you can use on the run up to Christmas to bolster your sales and take advantage of increased spending.</p>
<h2>Create a Blog</h2>
<p><img class="alignleft size-medium wp-image-632" title="Blog" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-11.13.57-300x251.png" alt="Blog" width="300" height="251" />A blog is a great (and free) way of describing, reviewing and publicising the products that you stock. Use each post as a showcase for your favourite products. By creating a blog and consistently adding new content, this content will be distributed around the blogging networks.</p>
<p>You can download <a href="http://www.wordpress.org">Wordpress</a> for free and install it within 5 minutes if you know what you are doing. There are also thousands of different themes available to choose from to make sure your blog suits your branding and looks unique.</p>
<p>If you don’t know how to install a blog, you can always use Wordpress.org and signup for free. They will host your blog, but they are designed for non-commercial use, so be careful as they could get removed without warning if they become overly commercial.</p>
<p>As your blog gains momentum in the number of posts and subscribers that it has, you will find that you start gaining some great search engine rankings for individual products. An product/lifestyle blog that has been created for this purpose can be found on <a href="http://www.dennisandmcgregor.co.uk/blog/">Dennis &amp; McGregor</a>. Within each blog post, you can create a simple button to direct users to your product page if you wish.</p>
<h2>Signup to Google Base</h2>
<p><img class="size-medium wp-image-634 alignright" title="Google" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-11.15.30-300x119.png" alt="Google" width="300" height="119" />Google loves creating free services and their <a href="http://www.google.com/base">Base</a> service is no exception. All you need to do is get your web developer to create an XML file (a simple text based file) containing your product information such as title, condition and price. The XML file can be uploaded to Google Base or automatically retrieved every day by Google from your website.</p>
<p>Once you have this file up and running, register with Google Base and within a couple of hours your products will be displayed on Googles “shopping” tab for everyone to see!</p>
<p>This tool is a great way of increasing traffic/sales on your website for specific products and comes with a suite of reports to use.</p>
<h2>Setup an eBay store</h2>
<p><a href="http://www.ebay.co.uk"><img class="alignleft size-full wp-image-635" title="eBay" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-11.16.19.png" alt="eBay" width="148" height="59" />eBay</a> is a great way of selling your new products online. As well as the well-known auction style listings, you can setup your very own eBay store for £15 per month plus listing/sale fees.</p>
<p>The process is really simple and a product can be added by either using the list functionality on the website, or by using software created by external vendors such as <a href="http://www.equinux.com/us/products/isale/index.html">iSale</a> (for Mac) or <a href="http://pages.ebay.com/blackthorne/">Blackthorne</a> (for Windows). eBay will give you a wide range of product options to select, the ability to host your images, add a description and choose a price.</p>
<p>Payment can be made in various forms too including cheque, cash on delivery or BACS. The most popular option is <a href="http://www.paypal.com">PayPal</a> &#8211; a free to signup service that charges you a percentage fee each time you receive money.</p>
<p>Another benefit of using eBay to promote and sell your products is that eBay gets some great search engine rankings. You will regularly see your eBay listings popping up in the search engine results when searching for your products in Google, Yahoo or BING.</p>
<h2>Register with Etsy</h2>
<p><a href="http://www.etsy.com"><img class="size-full wp-image-636 alignright" title="Screen shot 2009-12-14 at 11.16.51" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-11.16.51.png" alt="Screen shot 2009-12-14 at 11.16.51" width="154" height="81" />Etsy</a> is a fantastic way of selling products that you make. This obviously won’t be relevant to every retail business, but if you make your own posters, jewellery, clothing or home products, Etsy will be perfect.</p>
<p>Etsy basically works by you uploading your handmade products to the website, choosing a relevant category and adding your product information. End users can then search, browse and view your products online.</p>
<p>It costs just 20 cents to list an item on Etsy for 4 months plus a 3.5% transaction fee when a sale is made, so its a great way to increase your online sales.</p>
<h2>Use Google Adwords</h2>
<p>This is a great tool to use in short bursts over Christmas. As well as your natural search engine rankings that you have obtained through your website, blog and eBay store, <a href="http://adwords.google.co.uk ">Google Adwords</a> can be used to promote even more.</p>
<p>Adwords is ultimately a method of displaying adverts at the top and right of the Google search results. Users then see these adverts, click on them and are directed straight to a product, category or information about your business.</p>
<p>The service is fully customisable and can work on any scale of budget as the adverts stop showing when your daily budget runs out. As a guideline, your daily budget can start at £5.00 per day to receive a good level of traffic, but this really depends on your market.</p>
<p>To find out more about Google Adwords, there are some great articles and tutorials available online such as <a href="http://adwords.google.com/support/aw/bin/static.py?page=learningcenter.cs">Adwords Learning Centre</a>.</p>
<h2>Advertise on BuySellAds</h2>
<p><a href="http://www.buysellads.com"><img class="alignleft size-full wp-image-638" title="Screen shot 2009-12-14 at 11.17.53" src="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/12/Screen-shot-2009-12-14-at-11.17.53.png" alt="Screen shot 2009-12-14 at 11.17.53" width="177" height="46" />BuySellAds</a> is a reasonably new service which lets you display visual adverts on well known websites and blogs. The beauty of the service is that if you know that your potential customers frequent a particular blog or website regularly, you can advert on it!</p>
<p>Budgets are determined by the number of impressions that each website gets, with the higher visitor counts costing more money. You can easily advertise your products or services on websites/blogs that receive thousands of impressions (visits) for relatively little money.</p>
<p>The whole service is fully trackable and you have access to reporting showing you how many people saw your adverts, clicked through to your website and what the effective cost per click was.</p>
<p>From a billing perspective, the traditional model for BuySellAds has been to pay monthly, although they have just launched a pay-per-click model now too.</p>
<h2>Summary</h2>
<p>As you have read, there are many opportunities to increase your online sales over Christmas. The key to success is preparation as some of the options available take a few months to gain momentum (such as blogging to gain search engine rankings).</p>
<h2>Related Links</h2>
<ul>
<li>Wordpress &#8211; <a href="http://www.wordpress.org">http://www.wordpress.org</a> or <a href="http://www.wordpress.com">http://www.wordpress.com</a></li>
<li>Google Base &#8211; <a href="http://www.google.com/base">http://www.google.com/base</a></li>
<li>eBay Stores &#8211; <a href="http://stores.shop.ebay.co.uk">http://stores.shop.ebay.co.uk</a></li>
<li>Etsy &#8211; <a href="http://www.etsy.com">http://www.etsy.com</a></li>
<li>Google Adwords &#8211; <a href="http://adwords.google.co.uk ">http://adwords.google.co.uk </a></li>
<li>BuySellAds &#8211; <a href="http://www.buysellads.com">http://www.buysellads.com</a></li>
</ul>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=How+to+Increase+Online+Sales+for+Christmas&amp;Description=How+to+Increase+Online+Sales+for+Christmas&amp;Url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;title=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;title=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;title=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;bm_description=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;title=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;title=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+How+to+Increase+Online+Sales+for+Christmas+@+http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/&amp;t=How+to+Increase+Online+Sales+for+Christmas" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/12/14/how-to-increase-online-sales-for-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our Web Design Process</title>
		<link>http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 09:00:28 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Strawberrysoup]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=613</guid>
		<description><![CDATA[We have found that in order to be successful in the world of web design, a well thought out project process is essential. Not only does it help to clarify when certain team members are needed on a project, but it helps to demonstrate to clients that we are organised and interested in quality management.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F11%2F30%2Four-web-design-process%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F11%2F30%2Four-web-design-process%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Do you have a thorough web design process? We have found that in order to be successful in the world of web design, a well thought out project process is essential. Not only does it help to clarify when certain team members are needed on a project, but it helps to demonstrate to clients that we are organised and interested in quality management.</p>
<p>We try to make project management as easy as possible by using <a title="basecamp" href="http://basecamphq.com/" target="_blank">Basecamp</a> by 37Signals. This tool is great when teams are located around the UK or abroad. It gives each stakeholder access to the project, whereby they can review, contribute and upload their comments for all stakeholders to view and respond.</p>
<p>We follow a core project process to ensure all of the websites that we design and develop are the best possible quality. <a href="http://blog.strawberrysoup.co.uk/wp-content/uploads/2009/11/StrawberrysoupWeb-Design-Process.pdf" target="_blank">You can download a PDF view of our web design process here</a>.</p>
<p>Our methodology is as follows:</p>
<h2>Requirements Gathering</h2>
<ol>
<li>Contract awarded &amp; terms of business signed and returned</li>
<li>Initial meeting to discuss project, requirements and aims</li>
<li>User profiling (if required)</li>
</ol>
<p>To gain a full understanding of the project before any documentation and design is started, a number of detailed requirements gathering meetings are arranged with key stakeholders. From Strawberrysoup’s perspective, this consists of the project manager, the project lead developer, and the lead designer.</p>
<p>Having the most experienced members of the team involved during requirements gathering, gives us the chance to discuss and advise our client on any new functionality and technology that would potentially make the overall solution more effective and future-proofed.</p>
<p>If required, user profiling takes place during the requirements gathering phase. This is aimed at identifying key target audiences and their core reasons for visiting the website.</p>
<h2>Specification</h2>
<ol>
<li>Project schedule created and team members allocated</li>
<li>User profiles agreed (if required)</li>
<li>Site mapping created and signed off</li>
<li>Functional requirements written and signed off</li>
</ol>
<p>Once both the customer and Strawberrysoup are happy with the requirements discussed above, these are then transferred into two core documents &#8211; the sitemap and functional requirements. The sitemap is used to display the site hierarchy, layout and page linkages. The functional requirements document outlines everything that the website is going to functionally do &#8211; from user signup forms to full CMS controls. These two documents are used throughout the entire project to ensure the project remains focused and on track.</p>
<p>A project schedule is agreed and generated from the deadline launch date backwards to ensure all aspects of the project can be achieved within the given timeframes. Milestone deadlines are put in placed and each stakeholder informed where appropriate by the project manager to ensure all materials are supplied at the right time.</p>
<h2>Design</h2>
<ol>
<li>Homepage designed</li>
<li>Lower level pages designed</li>
<li>Overall website design signed off</li>
</ol>
<p>The next phase focuses on the website design. An initial design meeting is held to review the functional requirements, sitemap and user profiles if appropriate. This meeting gives our clients the opportunity to highlight any design preferences if appropriate. It also gives us the chance to question the customer on a number of design related questions and give them our design questionnaire to complete if necessary.</p>
<p>The design is developed and tweaked over time until it is agreed and signed off. Once the initial concept is agreed, we then design a number of lower level pages to ensure that the design of the entire site remains consistent as users navigate their way around.</p>
<h2>Development</h2>
<ol>
<li>Development team meeting to discuss overall project</li>
<li>Staging environment setup</li>
<li>Website development</li>
<li>Upload to staging environment for client review</li>
</ol>
<p>The next phase is when the actual development of the website begins. This is the largest part of the project in terms of time and normally consumes over 60% of the project timeframe. Regular liason between Strawberrysoup and our clients is required to ensure they are kept up to date with progress. The client may be given access to the staging environment to test elements if appropriate.</p>
<p>Any concerns regarding the build of the website can be discussed with either the project manager or lead developer to ensure the customer has more than one route to the development team.</p>
<h2>Testing</h2>
<ol>
<li>Functionality and stress testing</li>
<li>Browser interoperability</li>
<li>Usability testing</li>
</ol>
<p>After the development is completed, the website is tested fully. Depending on the project budget, this may include testing by the core project team and client, or the site may be released for beta testing by a wider audience. Testing is one of the most important phases of our web design process. It is typical for testing to last weeks or months, depending on the size of the project.</p>
<p>All bugs and amendments are identified during this phase and prioritised for fixing.</p>
<h2>Launch &amp; Review</h2>
<ol>
<li>Prelaunch meeting</li>
<li>Testing and review</li>
<li>Launch</li>
<li>Support and maintenance</li>
</ol>
<p>Once the website is tested fully, a prelaunch meeting is held with the client to discuss the launch plan. Final sign-off is then provided and the website is launched. Strawberrysoup remain available for any amendments that are required post launch through our support agreements or adhoc tweaks.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Our+Web+Design+Process&amp;Description=Our+Web+Design+Process&amp;Url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;title=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;title=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;title=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;bm_description=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;title=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;title=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Our+Web+Design+Process+@+http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/&amp;t=Our+Web+Design+Process" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/11/30/our-web-design-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Importance of Copywriting Content</title>
		<link>http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 14:58:43 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Small Business]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=597</guid>
		<description><![CDATA[You already know about the importance of having a well structured, usable and professionally designed website so there is no point of preaching to the converted about this - but what about the content?]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F11%2F24%2Fthe-importance-of-copywriting-content%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F11%2F24%2Fthe-importance-of-copywriting-content%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>You already know about the importance of having a well structured, usable and professionally designed website so there is no point in preaching to the converted about this &#8211; but what about the content?</p>
<p>We have found that from a client and agency perspective, content is regularly thought about during the final phases of the process. The sitemap has been created, wireframes are signed off and the design looks beautiful. Now the development has been finalised, tested and handed over to the client &#8211; who is looking after the content? Lets just knock up something quickly&#8230;.</p>
<p><strong>Evolution of Content</strong></p>
<p>Strawberrysoup was very different 5 years ago. There was just two of us and we were <a href="http://www.flickr.com/photos/strawberrysoup/3902632187/" target="_blank">working out of a shed in a garden</a>. The content of our website was therefore describing a completely different business and targeting different potential clients.</p>
<p>Neither of us were particularly good at English during school, so writing content always seemed like a long and arduous task, especially when faced with the task of writing lots of very similar pages such as portfolio items. On the same principles, we are reasonably technical, so when describing our services, the content contained a lot of jargon which meant that our potential customers struggled to understand certain aspects of it &#8211; so improvements could certainly be made!</p>
<p><strong>What is Copywriting?</strong></p>
<p>From our experience, a copywriter is ultimately someone that amends or rewrites content so that it makes more sense and is easier to read. Very similar to a UX analyst or usability technician, a copywriter makes content usable from a readers perspective.</p>
<p>We found the process quite simple and any good copywriter worth their weight will be flexible in how they work. They should initially ask questions aimed at understanding your business and its objectives. Following this, they will work with you to highlight a tone of voice that should be used throughout the content, such as informal, professional or approachable &#8211; Strawberrysoup was all three.</p>
<p>We work with a Bristol based copywriting agency called <a href="http://www.writers.uk.net " target="_blank">Writers</a> and they have made the whole process very simple for us. They have spent the last month or so revamping the Strawberrysoup website content (still to be added to our website!) and we are really pleased with the results.</p>
<p><strong>An Example from Strawberrysoup</strong></p>
<p>After our content was reviewed, our copywriters identified that rather than explaining something in a clear and concise paragraph, we waffled and used over-complicated words to bulk out our content. It&#8217;s not always about shortening the content, but restructuring it so it makes more sense and is easier to read. An example of this is on our About Us page:</p>
<blockquote><p>Strawberrysoup was launched on the 1st of June 2005 by two university friends (Neil and Keith) who had always dreamt of running their own design agency. They chose to specifically target small and medium sized businesses who were looking for a reliable and professional web design agency that they could work with, at a price that they could afford.</p>
<p>Now four years have passed, and we have evolved into an 8 strong team, working with a wide range of clients from small SME&#8217;s to large multinational blue chip organisations.</p>
<p>We still stick to our core principles of being 100% approachable, friendly and professional in everything we do. We also care about how running our business effects the environment.</p></blockquote>
<p>Here is the new content which is much more logical:</p>
<blockquote><p><strong>A bit about us</strong></p>
<p>We’ve expanded our team from just two in 2005 to eight today, and developed a healthy client list and portfolio along the way. We started by helping local businesses, and we still do. But we now work with large blue-chip multinationals, too, and plenty of other businesses and organisations in between.</p>
<p>With our combined expertise, we can allocate the right people to any job, large or small. You can find out a bit more about the team here, or get in touch to discuss a project.</p>
<p><strong>Why choose Strawberrysoup?</strong></p>
<p>Every website should be inviting, easy to use and enjoyable. And as well as being visually impressive and in tune with your business, it should give visitors the information they’re looking for as quickly and as effortlessly as possible. Get it wrong, and they’ll go straight to one of your competitors instead.</p>
<p>So as well as being excellent creative designers, we’re also here to think like your audience and offer strategic marketing expertise.</p>
<p>And to complete the picture, you’ll find us an approachable, helpful team who do what they love and love what they do.</p></blockquote>
<p><strong>Keep the Search Engines Happy</strong></p>
<p>Whilst having beautifully worded and concise content is essential to end users, we must remember that having fully search engine optimised content is just as important.</p>
<p>There is always going to be a fine line between content that is too heavily orientated to promoting keywords and content that reads like a professional novel, and your copywriter should be able to give recommendations on this too.</p>
<p>Remember that well optimised content will direct users from the search engines to your website, but what is the use if they cannot read the content or understand what is being described once they get there?</p>
<p><strong>Summary</strong></p>
<p>We would always recommend asking someone like a copywriter to review your content.</p>
<p>And don’t panic &#8211; it doesn’t need to be a professional agency. Ask someone who can cast a fresh view over the information. You can ask a friend or member of your family to help out &#8211; you will be surprised at how the content will improve after some outside help.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=The+Importance+of+Copywriting+Content&amp;Description=The+Importance+of+Copywriting+Content&amp;Url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;title=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;title=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;title=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;bm_description=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;title=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;title=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+The+Importance+of+Copywriting+Content+@+http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/&amp;t=The+Importance+of+Copywriting+Content" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/11/24/the-importance-of-copywriting-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accepting Payments Online &#8211; Understanding Payment Gateways/Payment Service Providers</title>
		<link>http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 21:18:04 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=570</guid>
		<description><![CDATA[A guide to payment gateways and payment service providers and the process that is followed to authorise a card/account online before an online transaction is completed successfully.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F11%2F18%2Funderstanding-payment-gatewayspayment-service-providers%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F11%2F18%2Funderstanding-payment-gatewayspayment-service-providers%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>In order to accept payments online, your eCommerce website needs to be linked to a secure payment gateway or payment service provider (PSP).</p>
<h2>Show Me The Money!</h2>
<p>A secure payment gateway is used to capture an end user’s card details and then send the information to a central banking system whereby the details are checked and confirmed or denied (depending on status of account). All of the details are sent electronically and encrypted (using secure socket layering or SSL) to ensure that it is secure. Most payment gateways and PSP’s send the data using a minimum of 128-bit encryption which has become the industry standard.</p>
<p>After the customer orders a product/service and their card is authorised, the money is collected from the customers debit/credit card and held at the merchant for a few days. After this period, the money is automatically sent directly to your nominated bank account in a &#8217;settlement&#8217;. This means that you will receive bulk payments which relate to more than customer at a time which can get a little confusing, but you will get the hang of it!</p>
<p>Most UK banks offer payment gateways, but some PSP&#8217;s require your business to have an Internet merchant account setup (similar to a merchant account for a PDQ machine) with your bank. A couple of examples of these are <a href="http://www.rbsworldpay.com" target="_blank">RBS WorldPay</a> and <a href="https://support.protx.com/apply/default.asp?PartnerID={FC540D3B-1CE1-47A1-83FC-C357272AA6C0}" target="_blank">SagePay</a> or if you do not have a merchant account, you can use other payment gateway’s like <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_wp-standard-overview-outside" target="_blank">PayPal Standard</a>. An important note is to ensure that your website is <a href="https://www.paypal.com/pcicompliance" target="_blank">PCI compliant</a> when accepting online payments.</p>
<h2>Keeping Track of Costs</h2>
<p>Payment service providers generally charge commission or a standard charge per transaction. As an example, SagePay (previously known as PROTX) offer a service where you pay £20 per month and can get setup online without any more transaction charges at their end (providing you stick below their transaction levels). At the banks end, if you choose to setup an Internet Merchant account your bank is likely to charge you a setup fee,  a recurring monthly fee and/or commission for each transaction for the privilege &#8211; so it pays dividends to do your research before commiting to anything.</p>
<p>If you want to try and cut down on costs as much as possible, you can skip the Internet merchant account with it&#8217;s initial setup fee and head straight for <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside" target="_blank">PayPal Payments Pro</a>. This service will let you to receive payments online with a monthly fee of £20 plus a transactional charge of between 1.9% and 3.4% depending on your sales volumes.</p>
<p>With most PSP&#8217;s like SagePay or PayPal, you can choose if you would prefer to use their payment pages and SSL certificates (which follows their branding)  or use your own SSL certificates and take payment on your website. Both are still highly secure, but offer different levels of integration. For Strawberrysoup&#8217;s larger traffic eCommerce websites, we always recommend using self-hosted SSL as it looks more professional and can help increase conversion rates as you stay on the same website.</p>
<h2>Summary</h2>
<p>This article only covers the basics but rest assured, no matter how big or small your business or eCommerce website is, there is a payment service provider that will suit your requirements. The chosen solution should be based on setup costs, fees, value add services like fraud monitoring and make sure you future proof your website. The chosen solution should be able to cope in 2 years time as switching is a long an arduous task &#8211; and not recommended.</p>
<p>If you would like to know more about accepting payments online through an eCommerce website, feel free to email us at <a href="mailto:hello@strawberrysoup.co.uk" target="_blank">hello@strawberrysoup.co.uk</a> or call 01243 373444. On a slightly seperate note, if you are looking for some great debit/credit card logos &#8211; check out <a href="http://www.thewebdesignblog.co.uk/downloads/free-png-credit-card-debit-card-and-payment-icons/" target="_blank">the web design blog</a> who have a beautiful (and free!) collection that you can use.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers&amp;Description=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers&amp;Url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;title=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;title=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;title=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;bm_description=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;title=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;title=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers+@+http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/&amp;t=Accepting+Payments+Online+%26%238211%3B+Understanding+Payment+Gateways%2FPayment+Service+Providers" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/11/18/understanding-payment-gatewayspayment-service-providers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How your business can survive the recession</title>
		<link>http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 08:31:49 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=525</guid>
		<description><![CDATA[With the world economy suffering on a global scale and current predictions for the near future less than rosy, how can UK businesses survive the recession/credit crunch and come out of the other side in a better position than when they started?]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F08%2F13%2Fhow-to-survive-the-recession%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F08%2F13%2Fhow-to-survive-the-recession%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>With the world economy suffering on a global scale and current predictions for the near future less than rosy, how can UK businesses survive the recession/credit crunch and come out of the other side in a better position than when they started?</p>
<p><strong>Differentiation</strong></p>
<p>You have no doubt heard about Innocent Drinks. Their marketing, PR and success have prompted many people to decide to start their own business. The number of potential clients that we meet explaining that they want to be ‘the next Innocent’ or that their branding should be ‘just like Innocent’ is staggering.</p>
<p>Innocent have succeeded due to the fact that they did things differently and it worked brilliantly. Their marketing department has done a fantastic job of creating a dedicated tribe of followers. Sooner or later there is going to be a new Innocent that everyone wants to be like &#8211; and now is the perfect time to start.</p>
<p>Differentiation can take many forms. Perhaps its the branding, product or service you offer, the way you deliver it, how you interact with your clients or your pricing strategy. It is very important to bear in mind that your differentiation must be commercially viable and strike a cord in your customers minds. Get people thinking “why didn’t we do things like that before?” or “what a great way of doing things”.</p>
<p><strong>Rebranding</strong></p>
<p>If your business’ image is beginning to look tired and out of date, a rebrand may be the perfect answer to create interest and motivate your team.</p>
<p>By creating a new logo, product name, packaging or even business name, your business can be perceived in a whole new way.</p>
<p>A professional graphic design agency should be used to ensure the best results are obtained. They can also be used to generate new ideas and help to formulate a brand manual advising how to use your logo and design with your product or service.</p>
<p><strong>Marketing &amp; PR</strong></p>
<p>It may not seem like the best time to be spending money on marketing or PR, but focused campaigns will ensure that your target market know about your business when the recession ends.</p>
<p>Marketing doesn’t need massive budgets and online marketing is a cost effective and tangible way of building a brand due to the fact that you can measure your campaign success.</p>
<p>Using popular social networking tools like Twitter, Facebook or Linked In to interact with your market and increase your followers is simple. All it takes is a unique idea to grab attention  and the medium to distribute the message and the rest will follow. Measuring success is also simple through the use of web stats, follower numbers or your number of fans.</p>
<p><strong>Pricing</strong></p>
<p>Depending on your market, reducing your prices during a recession may not be the way to go. Trying to increase sales by lowering prices will result in you ultimately lowering the value of your product or service. It may also lead to disgruntled clients who have previously paid higher prices for your products or service.</p>
<p>If you do decide to lower your prices, what will you do when the recession ends? You may find it difficult to justify a price increase or to add further value, thus alienating potential customers and your market.</p>
<p>I have read about some businesses who have actively increased their prices during this recession. Their theory behind this rise is to lower their number of clients that they have (and therefore the resource to manage them) but gain more revenue. This can be a risky strategy however again depends on your market and brand.</p>
<p><strong>Existing Customers</strong></p>
<p>It is always easier to sell to existing happy customers than it is to spend a lot of time and effort trying to gain new ones.<br />
They will no doubt be feeling the squeeze just as much as you are, however they may be more susceptible to paying for a new product or service as they have a relationship with you and know your business already.</p>
<p>Existing customers are also a great resource to trial new ideas, products and services and we have found that they are more than happy to give you constructive feedback on pricing or a product for you. You could offer an incentive to provide feedback such as a future discount or redeemable voucher if needed.</p>
<p><strong>Summary</strong></p>
<p>It goes without saying that a recession is always a nervous time for business. An uncertain future can lead to poor decision-making. It is important to take a step back, review and act on ways to capitalise from this situation and the points discussed above are only a few of the ways that you can help your business.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=How+your+business+can+survive+the+recession&amp;Description=How+your+business+can+survive+the+recession&amp;Url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;title=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;title=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;title=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;bm_description=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;title=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;title=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+How+your+business+can+survive+the+recession+@+http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/&amp;t=How+your+business+can+survive+the+recession" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/08/13/how-to-survive-the-recession/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Partnering with a Web Design Agency</title>
		<link>http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/</link>
		<comments>http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 10:17:39 +0000</pubDate>
		<dc:creator>Neil</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Strawberrysoup]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.strawberrysoup.co.uk/?p=512</guid>
		<description><![CDATA[
			
				
			
		
We all know that technology is a rapidly advancing industry and web design is no exception. It is no longer acceptable to follow the rest of the pack. It is almost expected that web design agencies are innovative in terms of both the technologies that they use and how they use them, whilst focusing on [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F08%2F06%2Fpartnering-with-a-web-design-agency%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.strawberrysoup.co.uk%2F2009%2F08%2F06%2Fpartnering-with-a-web-design-agency%2F&amp;source=strawberrysoup&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>We all know that technology is a rapidly advancing industry and web design is no exception. It is no longer acceptable to follow the rest of the pack. It is almost expected that web design agencies are innovative in terms of both the technologies that they use and how they use them, whilst focusing on underlying business principles such as time and money.</p>
<p>With the advent of the Internet and the .com boom, traditional graphic design agencies have chosen to offer web design services as an additional revenue stream. The problem is with the speed that the web design industry is advancing, these agencies are finding it increasingly difficult to keep up to date with the best practices, technologies and terminology to use. As a result, their key services can suffer and become diluted.</p>
<p>In order to concentrate on their core competences, graphic design agencies may find it necessary to look externally for a web design agency. The plus side to this is that the web design market is a saturated, however reliable web design agencies with both technical and business expertise are few and far between.</p>
<p>This blog post aims to help graphic design agencies by giving advice about how a relationship with a web design agency could work.</p>
<p><strong>Transparency</strong></p>
<p>We have worked with a wide range of graphic design and marketing agencies who have asked to pretend to work for them. This is fine during that initial phases of the project, however down the line it becomes increasingly difficult to manage. Clients calling the web designers directly will be surprised when the phone is answered under a different company name, or when they receive an email accidentally sent from the wrong email account &#8211; it’s always best to remain honest.</p>
<p>Some clients actually look at the relationship favourably as you have partnered with a dedicated web design team. Providing you manage the project successfully and have a good relationship with your client, there is no reason why they would go direct to the web design agency in the future.</p>
<p><strong>Pitching for Work</strong></p>
<p>Don’t be afraid to pitch together. There is nothing worse than a prospective client being answered with a blank face during a Q/A session, so bring along your web design partner as your technical arm.</p>
<p>They should add value to the pitch and act as consultants when discussing the technical aspects of the new website. They should also ask questions to ensure their understanding of the requirements is 100% during the proposal process.</p>
<p><strong>Markup &amp; Business is Business</strong></p>
<p>Your chosen web design partner must understand that whilst they are doing the leg-work in terms of the development of a website, as a business, you must also make your markup.</p>
<p>The percentage of the markup really depends on a range of factors, however we find it is always useful to be open and honest to your partner agency about how much you wish to make on average. We have found that markups can vary between 15% &#8211; 35% depending on the project type and scale.</p>
<p><strong>Advice and Support</strong></p>
<p>A professional web design agency will be more than willing to help you with any questions you have about design and how this links with the development. If you are unsure of how something will work online, don’t be afraid to just ask. In the initial stages of the relationship, it may be a steep learning curve to understand each others processes and management styles, but you will also no doubt learn something new on both sides of the fence.</p>
<p><strong>Project Management</strong></p>
<p>We have found in our past experience that the agency that receives the initial enquiry and is charging the markup will generally manage the project. This however does depend on your experience/background as you may feel more comfortable to give this responsibility to your partner agency.</p>
<p>You should bear in mind that if the project management is outsourced, your markup percentage will be reduced as more work is being done externally. This clearly has to be balanced by the stress of project management versus the difference in your markup.</p>
<p><strong>Further Support and Information</strong></p>
<p>If you are looking for a reliable and trustworthy web design partner for your design agency, why not get in touch with us? We have lots of experience with partner relationships and can help to answer any questions you have &#8211; just give us a call on 01243 373444 or email <a href="mailto:partners@strawberrysoup.co.uk" target="_blank">partners@strawberrysoup.co.uk</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Social Bookmarks</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://blinklist.com/index.php?Action=Blink/addblink.php&amp;Name=Partnering+with+a+Web+Design+Agency&amp;Description=Partnering+with+a+Web+Design+Agency&amp;Url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/" rel="nofollow" title="Add to&nbsp;BlinkList"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/blinklist.png" title="Add to&nbsp;BlinkList" alt="Add to&nbsp;BlinkList" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;title=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;title=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;title=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.mister-wong.com/index.php?action=addurl&amp;bm_url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;bm_description=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;Mister Wong"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/misterwong.png" title="Add to&nbsp;Mister Wong" alt="Add to&nbsp;Mister Wong" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;title=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;title=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;Stumble Upon"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/stumbleupon.png" title="Add to&nbsp;Stumble Upon" alt="Add to&nbsp;Stumble Upon" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://tipd.com/submit.php?url=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/" rel="nofollow" title="Add to&nbsp;Tip'd"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/tipd.png" title="Add to&nbsp;Tip'd" alt="Add to&nbsp;Tip'd" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Partnering+with+a+Web+Design+Agency+@+http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/&amp;t=Partnering+with+a+Web+Design+Agency" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://blog.strawberrysoup.co.uk/wp-content/plugins/social-bookmarks/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://blog.strawberrysoup.co.uk/2009/08/06/partnering-with-a-web-design-agency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
