<?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>shmoo web design suffolk</title>
	<atom:link href="http://www.shmoowebdesign.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shmoowebdesign.co.uk</link>
	<description>Helping small businesses on the web</description>
	<lastBuildDate>Tue, 16 Aug 2011 10:20:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Wedding Photographer Ipswich, Suffolk</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/wedding-photographer-ipswich-suffolk/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/wedding-photographer-ipswich-suffolk/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 09:31:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=71</guid>
		<description><![CDATA[Andy from Elemental Photohraphy is available to capture every amazing moment of your wedding. On you special day Andy can preserve every detail in both traditional and contemporary style with little fuss or interferance. All you photographic requirments are captured prior to the event to ensure your day goes as smoothly as possible and you [...]]]></description>
			<content:encoded><![CDATA[<p>Andy from Elemental Photohraphy is available to capture every amazing moment of your wedding. On you special day Andy can preserve every detail in both traditional and contemporary style with little fuss or interferance.</p>
<p>All you photographic requirments are captured prior to the event to ensure your day goes as smoothly as possible and you get the photographs you want.</p>
<p>Your photographs are displayed in a professionally printed hard back album which is yours to keep.</p>
<p>Andy is available throughout Ipswich, Suffolk, Norfolk and essex.</p>
<p>You can vistit his website here -</p>
<p><a href="http://www.elementalphotography.co.uk" target="_blank">Wedding Photographer Ipswich</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/wedding-photographer-ipswich-suffolk/feed/</wfw:commentRss>
		<slash:comments>16530</slash:comments>
		</item>
		<item>
		<title>Companies must have a website by law?</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/companies-must-have-a-website-by-law/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/companies-must-have-a-website-by-law/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 12:49:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[seo marketing]]></category>
		<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=67</guid>
		<description><![CDATA[I heard a rumour the other day from a sales guy from Yahoo. He told me that, he had heard, the uk government was considering plan to make it compulsary for uk companies to have a website. Anyone else heard anything about this? Please comment&#8230;]]></description>
			<content:encoded><![CDATA[<p>I heard a rumour the other day from a sales guy from Yahoo. He told me that, he had heard, the uk government was considering plan to make it compulsary for uk companies to have a <a href="http://www.loopwhole.co.uk/" target="_blank">website</a>.</p>
<p>Anyone else heard anything about this? Please comment&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/companies-must-have-a-website-by-law/feed/</wfw:commentRss>
		<slash:comments>6242</slash:comments>
		</item>
		<item>
		<title>PHP Summary of HTML String</title>
		<link>http://www.shmoowebdesign.co.uk/web-development/php-summary-of-html-string/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-development/php-summary-of-html-string/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 15:56:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=61</guid>
		<description><![CDATA[When building database driven applications you often want to display leading text or a summary of another pages content on, say, an index or category page. This is often the case with Content Management Systems, blogs and article websites. When doing this recently on a small application I was building I simple used: $descriptionSmall = [...]]]></description>
			<content:encoded><![CDATA[<p>When building database driven applications you often want to display leading text or a summary of another pages content on, say, an index or category page. This is often the case with <a href="http://www.8020marketing.co.uk/">Content Management Systems</a>, blogs and article <a href="http://www.loopwhole.co.uk" target="_blank">websites</a>. When doing this recently on a small application I was building I simple used:</p>
<p><code>$descriptionSmall = substr($description, 0, 200);</code></p>
<p>I used the substr function to limit the text to the first 200 characters. This was fine until I changed the $description variable to contain a string of HTML. The would break the application as the 200th character may be in the middle of an open HTML tag. It also doesn&#8217;t look too elegant in some cases as the 200th character may be in the middle of a word.</p>
<p>The solution:</p>
<p><code>preg_match('/^([^.!?\s]*[\.!?\s]+){0,50}/', strip_tags($description), $descriptionSmall);</code></p>
<p>This strips out any HTML tags from the string to only leave the text and them limits it to only 50 words!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-development/php-summary-of-html-string/feed/</wfw:commentRss>
		<slash:comments>36167</slash:comments>
		</item>
		<item>
		<title>Optimise your Meta Descriptions</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/optimise-your-meta-descriptions/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/optimise-your-meta-descriptions/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 13:21:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[seo marketing]]></category>
		<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=52</guid>
		<description><![CDATA[A Meta Description is something that every web page should have. You can see the Meta Description of any page by viewing the source code. In the top browser menu click on &#8216;view&#8217; then select either &#8216;view souce&#8217; or &#8216;view page source&#8217; depending whether you are using Internet Explorer or Firefox. This will bring up [...]]]></description>
			<content:encoded><![CDATA[<p>A Meta Description is something that every web page should have. You can see the Meta Description of any page by viewing the source code. In the top browser menu click on &#8216;view&#8217; then select either &#8216;view souce&#8217; or &#8216;view page source&#8217; depending whether you are using Internet Explorer or Firefox. This will bring up a new window full of the web pages code. Look for a line of code near the top that will look like this&#8230;</p>
<p><em>&lt;meta name=&#8221;description&#8221; content=&#8221;Shmoo web design, helping small businesses on the web with useful information and advice on improving your web presence.&#8221;&gt;</em></p>
<p>This Line of code is very important for search engines to identify web pages and their content. Most search engines will use this content as the page description in their listings (see below).</p>
<p><img class="alignnone size-full wp-image-55" title="metat_description" src="http://www.shmoowebdesign.co.uk/wp-content/uploads/2009/11/metat_description.jpg" alt="metat_description" width="577" height="96" /></p>
<p>If a page does not have a meta description the search engine will use text from the page that may nor correctly describe what the page is about or be out of context and therefore may deter a prospective visitor to your site from clicking on your link.</p>
<p>It is quite common that many websites use the same general meta description on every page of a website. This is not good practice as search engines individual Meta Descriptions to be unique to better help identify the page and subsequently help it rank better.</p>
<p>If you use a <a href="http://www.8020marketing.co.uk" target="_blank">CMS (content management system)</a> for your website you should be able to change these yourself. If not speak to your <a href="http://www.loopwhole.co.uk" target="_blank">web designer</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/optimise-your-meta-descriptions/feed/</wfw:commentRss>
		<slash:comments>44863</slash:comments>
		</item>
		<item>
		<title>How to find a web designer</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/how-to-find-a-web-designer/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/how-to-find-a-web-designer/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 12:08:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=48</guid>
		<description><![CDATA[Finding a web designer requires quite bit of though and research. Don&#8217;t just pick up the Yellow Pages and call the first first one you come across. First thing you should do is talk to like minded people, friends or business contacts about their experiences with web design companies. Once you have gathered a few [...]]]></description>
			<content:encoded><![CDATA[<p>Finding a web designer requires quite bit of though and research. Don&#8217;t just pick up the Yellow Pages and call the first first one you come across.</p>
<p>First thing you should do is talk to like minded people, friends or business contacts about their experiences with web design companies.</p>
<p>Once you have gathered a few names together research them online. Visit their websites, see if they have experience in your sector, if you like their style of design, if they meet your technical requirements.</p>
<p>Also see where they appear in Google for &#8216;web design in your locality e.g. &#8216;<a href="http://www.loopwhole.co.uk" target="_blank">web design in Suffolk</a>&#8216; if they don&#8217;t rank well for their own website they probably won&#8217;t be able to optimise your site that well.</p>
<p>Once you have whittled the options down to two or three arrange to meet with them. You are not going to be using them for a one off service you are going to be entering into an ongoing business relationship so it&#8217;s import to be able to communicate well with them.</p>
<p>Costs are always a concern and the price of a website can vary greatly. The larger the company you are dealing with the more a website may cost due to larger overheads, but you are also getting greater security. Having said that freelance designers can do just as good a job at a fraction of the cost.</p>
<p>Here are some UK web design directories that may be of some help&#8230;</p>
<p><a href="http://www.web-design-directory-uk.co.uk" target="_blank"><cite>www.<strong>web</strong>-<strong>design</strong>-<strong>directory</strong>-uk.co.uk</cite></a></p>
<p><a href="http://www.web-designers.velnetdesigns.co.uk" target="_blank"><cite>www.<strong>web</strong>-<strong>designer</strong>s.velnet<strong>design</strong>s.co.uk</cite></a></p>
<p><a href="http://www.web-design-directory.org.uk" target="_blank"><cite>www.<strong>web</strong>-<strong>design</strong>-<strong>directory</strong>.org.uk</cite></a></p>
<p><a href="http://www.design2go.co.uk" target="_blank"><cite>www.<strong>design</strong>2go.co.uk</cite></a></p>
<p><a href="http://www.ukwda.org" target="_blank">Uk Web design Association</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/how-to-find-a-web-designer/feed/</wfw:commentRss>
		<slash:comments>5913</slash:comments>
		</item>
		<item>
		<title>The best hosted, on demand CRM applications</title>
		<link>http://www.shmoowebdesign.co.uk/web-tools/thes-best-hosted-on-demand-crm-applications/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-tools/thes-best-hosted-on-demand-crm-applications/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 10:23:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web tools]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=37</guid>
		<description><![CDATA[Hosted, on-demand or web based CRM service provides a simpler, faster and cost-effective software for customer relationship management for businesses. Here are some of the best&#8230; Sales Force Basic usage starts at £17/user/month with a 14 day free trial. Infusionsoft Basic usage starts at $199/Month with a 15 free trial. Includes CRM, Email Marketing and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="file:///C:/Users/cookie/AppData/Local/Temp/moz-screenshot.png" alt="" />Hosted, on-demand or <a href="http://www.8020marketing.co.uk" target="_blank"><strong>web based CRM</strong></a> service provides a simpler, faster and cost-effective software for customer relationship management for businesses.</p>
<p>Here are some of the best&#8230;</p>
<p><strong><a href="http://www.salesforce.com" target="_blank">Sales Force</a></strong></p>
<p><img class="alignnone size-full wp-image-39" title="sf-logo" src="http://www.shmoowebdesign.co.uk/wp-content/uploads/2009/11/sf-logo.gif" alt="sf-logo" width="214" height="46" /></p>
<p>Basic usage starts at £17/user/month with a 14 day free trial.</p>
<p><a href="http://www.infusionsoft.com" target="_blank"><strong>Infusionsoft</strong></a></p>
<p><img class="alignnone size-full wp-image-40" title="logo" src="http://www.shmoowebdesign.co.uk/wp-content/uploads/2009/11/logo.gif" alt="logo" width="227" height="45" /></p>
<p>Basic usage starts at <span>$199/Month with a 15 free trial. Includes </span><a href="http://www.8020marketing.co.uk" target="_blank">CRM</a>, <a href="http://www.8020marketing.co.uk" target="_blank">Email Marketing</a> and <a href="http://www.8020marketing.co.uk" target="_blank">Automatic Follow-up</a> Engine.</p>
<p><a href="http://crm.zoho.com" target="_blank">Zoho CRM</a></p>
<p><img class="alignnone size-full wp-image-41" title="zoho-crm-logo" src="http://www.shmoowebdesign.co.uk/wp-content/uploads/2009/11/zoho-crm-logo.gif" alt="zoho-crm-logo" width="196" height="35" /></p>
<p>Zoho CRM has a free edition edition for up to 3 users. The professional edition starts at $ 12 / User / Month.</p>
<p>More to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-tools/thes-best-hosted-on-demand-crm-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mailchimp and wordpress</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/mailchimp-and-wordpress/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/mailchimp-and-wordpress/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:48:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web tools]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=32</guid>
		<description><![CDATA[The online email marketing tool Mailchimp has just got even better. It now integrates with WordPress, Twitter and Salesforce so you can now easily build you mailing lists automatically. MailChimp allows user to build mailing lists, design email campaigns, send and analyse the results from on online console. OK so there lots of products that [...]]]></description>
			<content:encoded><![CDATA[<p>The online <a href="http://www.8020marketing.co.uk" target="_blank">email marketing</a> tool <a href="http://www.mailchimp.com" target="_blank">Mailchimp </a>has just got even better. It now integrates with WordPress, Twitter and Salesforce so you can now easily build you mailing lists automatically.</p>
<p>MailChimp allows user to build mailing lists, design email campaigns, send and analyse the results from on online console. OK so there lots of products that are doing the same but these guys seem to be leading the way.</p>
<p>MailChimp is also free up 500 subscribers and 3000 emails per month.</p>
<p>For Worpress users you can install the Mailchip plugin and quickly and easily add your MailChimp signup form to your site!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/mailchimp-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>6390</slash:comments>
		</item>
		<item>
		<title>Which is the best CMS</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/which-is-the-best-cms/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/which-is-the-best-cms/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 15:13:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[web tools]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=24</guid>
		<description><![CDATA[I&#8217;m going to add my two pennies worth to this ongoing debate and I will try and update as often as I have new information. CMS or content management system are software systems that allow website owners to update the content of their website without needing any technical knowledge. I am going to try and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to add my two pennies worth to this ongoing debate and I will try  and update as often as I have new information.</p>
<p>CMS or content management system are software systems that allow website  owners to update the content of their website without needing any technical  knowledge.</p>
<p>I am going to try and give my reviews from a <a href="http://www.loopwhole.co.uk" target="_blank">Web designers</a> and an end users  point of view.</p>
<p>So the contenders so far are&#8230;</p>
<p><strong><a href="www.wordpress.org" target="_blank">WordPress</a></strong></p>
<p>WordPress started out just as a blogging tool but now people are realising it  can be a powerful <a href="http://www.8020marketing.co.uk" target="_blank">CMS</a>. Lots of designers are using  it to deploy small/medium websites.</p>
<p>As a designer I find it quite time consuming to implement complex designs  into the templating system.</p>
<p>As an end user if you are not using the blogging tools they overly complicate  the administration.</p>
<p><strong><a href="http://www.joomla.org" target="_blank">Joomla</a></strong></p>
<p>In essence a powerful and robust <a href="http://www.8020marketing.co.uk" target="_blank">Content Management  System</a>.</p>
<p>The first time I installed Joomla to try it out I went straight in and tried  to add some content to the home page of the site, I couldn&#8217;t figure it out in  twenty minutes so I gave up. Some may say I should have read the  instruction, but, in my opinion if I can&#8217;t figure it out I would not be happy  about passing it on to a client.</p>
<p><strong><a href="http://www.madebyfrog.com" target="_blank">Frog  CMS</a></strong></p>
<p>A relative newcomer to this debate but a great little CMS none the less. Easy  to implement designs into the template system and a very easy to use  backend.</p>
<p>The built in blogging system needs to be improved. More pluggins needed.  Generally it needs more people supporting it.</p>
<p>More to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/which-is-the-best-cms/feed/</wfw:commentRss>
		<slash:comments>6176</slash:comments>
		</item>
		<item>
		<title>SaaS Software as a service</title>
		<link>http://www.shmoowebdesign.co.uk/web-tools/saas-software-as-a-service/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-tools/saas-software-as-a-service/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 14:28:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web tools]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=21</guid>
		<description><![CDATA[The way businesses are using business critical software seems to be changing rapidly. The trend see them moving more and more towards Software as a service (SaaS) applications. What is basically means is that instead of buying a software license outright it is licensed on a demand basis usually online. The most common SaaS applications [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The way businesses are using business critical software seems to be changing  rapidly. </strong></p>
<p>The trend see them moving more and more towards Software as a service  (SaaS) applications.</p>
<p>What is basically means is that instead of buying a software license outright  it is licensed on a demand basis usually online. The most common SaaS  applications are licensed on a monthly basis in the form of a web based  application. There are lots of these SaaS web applications out there now, most  prominently <a href="http://www.8020marketing.co.uk" target="_blank">Customer Relationship Managers  (CRM)</a>, <a href="http://www.8020marketing.co.uk" target="_blank">Online Billing</a>, <a href="http://www.8020marketing.co.uk" target="_blank">Email Marketing</a> and  of course <a href="http://www.8020marketing.co.uk" target="_blank">Content Mangement Systems</a>.</p>
<p>These systems have great benefits:</p>
<p>As there is not the massive initial outlay, instead small monthly payments  which help with cash flow and Tax.</p>
<p>There is no painful upgrading procedures as they are all taken care of for  you online.</p>
<p>You can cease the service on a monthly basis.</p>
<p>As they are web based you can access them from any ware some even from your  mobile.</p>
<p>I will detail some of the best SaaS application in detail in future posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-tools/saas-software-as-a-service/feed/</wfw:commentRss>
		<slash:comments>7286</slash:comments>
		</item>
		<item>
		<title>Calls to action</title>
		<link>http://www.shmoowebdesign.co.uk/web-design/calls-to-action/</link>
		<comments>http://www.shmoowebdesign.co.uk/web-design/calls-to-action/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 13:31:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[small business advice]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shmoowebdesign.co.uk/?p=17</guid>
		<description><![CDATA[What do you want a visitor to your website to do? This is the called the &#8216;most wanted response&#8217; (MWR). We see it all the time on ecommerce sites, with &#8216;buy now&#8217; and &#8216;add to basket&#8217; everywhere your look. On brochure/service based sites, however, calls to action are often over looked. This may not be [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What do you want a visitor to your website to do?</strong></p>
<p>This is the called the &#8216;most wanted response&#8217; (MWR). We see it all the time  on <a title="ecommerce" href="http://www.8020marketing.co.uk" target="_blank">ecommerce</a> sites, with &#8216;buy now&#8217;  and &#8216;add to basket&#8217; everywhere your look. On brochure/service based sites,  however, calls to action are often over looked. This may not be the fault of the  <a href="http://www.loopwhole.co.uk" target="_blank">web designer</a>.  The client supplies the content and they add it to a page. If the content of the  page is enough to engage the user your want a response from them without them  having to break concentration and go look for the &#8216;contact us&#8217; link in the main  navigation. You want to make the user experience as smooth as possible and at  the same as getting your most wanted response.</p>
<p>Calls to action don&#8217;t have to be hard sell, garish buttons. Simple text links  at the bottom of an article can work just as well e.g. &#8216;Click here to get in  touch&#8217;.</p>
<p>It&#8217;s a no brainer, get some calls to action.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoowebdesign.co.uk/web-design/calls-to-action/feed/</wfw:commentRss>
		<slash:comments>6656</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.246 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-03 20:03:43 -->
<!-- Compression = gzip -->