<?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>Amersham Websites</title>
	<atom:link href="http://www.amershamwebsites.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amershamwebsites.co.uk</link>
	<description>amersham websites</description>
	<lastBuildDate>Sun, 08 Apr 2012 13:12:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Creating a jQuery plugin</title>
		<link>http://www.amershamwebsites.co.uk/2012/04/05/creating-a-jquery-plugin/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/04/05/creating-a-jquery-plugin/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 10:50:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=496</guid>
		<description><![CDATA[Many people have asked me how easy it is to create a jQuery plugin so I thought I&#8217;d have a go at trying to explain it, I hope this makes sense. I am presuming you know the basics about setting up jQuery on your page and how to include a javascript file. Step 1 Firstly [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Many people have asked me how easy it is to create a jQuery plugin so I thought I&#8217;d have a go at trying to explain it, I hope this makes sense.</p>
<p>I am presuming you know the basics about setting up jQuery on your page and how to include a javascript file.</p>
<h3>Step 1</h3>
<p>Firstly create a new javascript file (advanced javascript users can code this within their current javascript pattern, although advanced javascript users probably wont be reading this, am I still talking?) call the file something relevant to your plugin, in this example we will call it external.jquery.js, this file needs to be called after the jquery library file:</p>
<p><pre><code>&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;external.jquery.js&quot;&gt;&lt;/script&gt;</code></pre></p>
<h3>Step 2</h3>
<p>No you can begin to build the plugin, within the external.jquery.js file setup the self invoking function:</p>
<p><pre><code>(function($){
&nbsp;&nbsp;&nbsp;&nbsp;//code in here
})(jQuery);</code></pre></p>
<h3>Step 3</h3>
<p>Now you need to add the function extension so calling your function will work, we will call our extension plugin externalLinks:</p>
<p><pre><code>(function($){
&nbsp;&nbsp;&nbsp;&nbsp;$.fn.externalLinks = function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//function routine here
&nbsp;&nbsp;&nbsp;&nbsp;}
})(jQuery);</code></pre></p>
<h3>Step 4</h3>
<p>We can now add our routine to the function, this can be what ever you want to do, in our example I will check for a rel attribute with a value of external and if present then add on a target=&#8221;_blank&#8221;, obviously you can do what ever you want:</p>
<p><pre><code>(function($){
&nbsp;&nbsp;&nbsp;&nbsp;$.fn.externalLinks = function(){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//loop through the selected dom elements
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;this.each(function(i,obj){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //find the anchors tags within
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $anchors = $(obj).find(&quot;a&quot;).get();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $.each($anchors, function(j,ele){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //if external rel set target _blank
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (ele.rel == &#039;external&#039;){
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ele.target = &#039;_blank&#039;;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; });
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; });
&nbsp;&nbsp;&nbsp;&nbsp;}
})(jQuery);</code></pre></p>
<h3>Step 5</h3>
<p>All that&#8217;s left to do now is tell the function which elements you want to run the external links function on, to do this you need to put in a separate call using the jquery selector call shown below:</p>
<p><code>$(&#039;body&#039;).externalLinks();</code></p>
<p>That&#8217;s it, the above snippet will run the external links function on all links with the body tag. Here is our example <a href="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/04/external.jquery.js">external links plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/04/05/creating-a-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developer Buckinghamshire</title>
		<link>http://www.amershamwebsites.co.uk/2012/03/26/developer-buckinghamshire/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/03/26/developer-buckinghamshire/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:48:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=488</guid>
		<description><![CDATA[Need a developer in Buckinghamshire? Why not get in contact with us, we have a vast amount of experience and should be able to complete most web project requirements, if not we will make a recommendation to set you on your way successfully. We dont charge for consultation so drop us a line.]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<h2>Need a developer in Buckinghamshire?</h2>
<p>Why not get in contact with us, we have a vast amount of experience and should be able to complete most web project requirements, if not we will make a recommendation to set you on your way successfully. We dont charge for consultation so drop us a line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/03/26/developer-buckinghamshire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Security</title>
		<link>http://www.amershamwebsites.co.uk/2012/02/17/website-security/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/02/17/website-security/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 08:55:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=463</guid>
		<description><![CDATA[Here at Amersham Websites we take website security very seriously, we now provide all of our websites with a Limit Login Attempts plugin, this allows you to administer the amount of login attempts accepted before locking the user out, and also you can administer the amount of time the user is locked out for, we [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><img class="wp-image-464 alignright" title="Security" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/02/lock.png" alt="" width="132" height="132" />Here at Amersham Websites we take website security very seriously, we now provide all of our websites with a <a href="http://wordpress.org/extend/plugins/limit-login-attempts/">Limit Login Attempts</a> plugin, this allows you to administer the amount of login attempts accepted before locking the user out, and also you can administer the amount of time the user is locked out for, we find this very useful and will restrict hackers constantly bombarding your login page with attempts to gain entry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/02/17/website-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress functions on non wordpress pages</title>
		<link>http://www.amershamwebsites.co.uk/2012/02/11/wordpress-functions-on-non-wordpress-pages/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/02/11/wordpress-functions-on-non-wordpress-pages/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 12:24:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=448</guid>
		<description><![CDATA[The problem If you have insalled wordpress somewhere other than the root of your site how can you access the wordpress functions on a non wordpress page? So for example I had installed wordpress at ww.mydomain.com/wp/ but I wanted to access the wordpress functions on a page at www.mydomain/nonwordpress.php The solution Took me a little [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><strong>The problem</strong></p>
<p>If you have insalled wordpress somewhere other than the root of your site how can you access the wordpress functions on a non wordpress page? So for example I had installed wordpress at ww.mydomain.com/wp/ but I wanted to access the wordpress functions on a page at www.mydomain/nonwordpress.php</p>
<p><strong>The solution</strong></p>
<p>Took me a little while to work this out and I tried lots of different methods but then I discovered simply adding in a call to the wp-blog-header.php did the trick, I actually replaced my own db connect as the wp-blog-header.php will connect you to the wp database, luckily for me my sites database was the same as the wordpress one.</p>
<p>So on the page you need the wordpress functionality simply include:</p>
<p><code>require(&#039;wp/wp-blog-header.php&#039;); // wp is the location your installation of wordpresss</code></p>
<p>This helped me anyway, hope it helps someone else too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/02/11/wordpress-functions-on-non-wordpress-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top-teks.co.uk phase in wordpress</title>
		<link>http://www.amershamwebsites.co.uk/2012/02/11/top-teks-co-uk-phase-in-wordpress/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/02/11/top-teks-co-uk-phase-in-wordpress/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 12:09:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=441</guid>
		<description><![CDATA[This week has seen the staged migration of topteks across to the wordpress platform. Top-teks.co.uk were one of Amersham Websites first customers and where the first to have a bespoke admin system built for them. This was built from scratch and was a really cool admin system built specificaly for their business requirements. With the [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><img class="size-medium wp-image-444 alignright" title="Topteks WordPress News Section" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/02/news-300x149.png" alt="" width="300" height="149" /><strong>This week has seen the staged migration of topteks across to the wordpress platform.</strong></p>
<p>Top-teks.co.uk were one of Amersham Websites first customers and where the first to have a bespoke admin system built for them. This was built from scratch and was a really cool admin system built specificaly for their business requirements.</p>
<p>With the ever improving power of the wordpress platform it was a simple decision for them to request to be migrated across, however this was not an easy task for us to implement as the existing catalog and orders data was to remain on the old platform until stage 2 of the migration.</p>
<p>So the first stage was to create an admin system to be able to create stand alone pages and have these pages look and feel part of the main current site, this was pretty technically straight forward however the issue came when trying to link it all together. When on the wordpress pages it was easy to link out as everything is all administrable but trying to link from the old platform to the new platform was an issue unless we hardcoded the links, but even then we would have the problem that the links would change structure so this would not be very reliable.</p>
<p>What we managed to find out was we could include all the functions and power of wordpress within the non wordpress structure by adding an include to point at the new platform, simple as that, now all the regular wp functions are available so we could change the old links to now be dynamically created through either a wp menu item or a wp links. If any one else is trying to do a similar thing then read my article about wordpress functions on a non wordpress platform.</p>
<p><a href="http://www.top-teks.co.uk/uk/category/news/">Top-teks new wordpress pages</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/02/11/top-teks-co-uk-phase-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Basic&#8217;s</title>
		<link>http://www.amershamwebsites.co.uk/2012/01/17/wordpress-basics/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/01/17/wordpress-basics/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 20:40:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=412</guid>
		<description><![CDATA[After spending numerous hours explaining to many clients how to use the wordpress platform I thought it would be helpful to produce a basic guide to using and performing basic functions, whilst most people do know how to do it I thought it would be a good idea to document for those who have forgotten [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>After spending numerous hours explaining to many clients how to use the wordpress platform I thought it would be helpful to produce a basic guide to using and performing basic functions, whilst most people do know how to do it I thought it would be a good idea to document for those who have forgotten through lack of use or those who are new to the wordpress platform.</p>
<p><strong>Logging in</strong></p>
<p><img class="size-full wp-image-413 alignright" title="address" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/01/address.png" alt="" width="266" height="35" />The first hurdle will be to get into the admin area, you will have been given a link and a user name and password already but if you are not sure of the link most domains admin web address will be your domain name then /wp-admin/ so for example www.yourdomain.com/wp-admin/. From here you can enter your credentials and on success will be taken to the admin area (or other area if you have a redirect rule on).</p>
<p><strong>Adding a post</strong></p>
<p><img class="wp-image-418 alignright" title="adminscreen" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/01/adminscreen-e1326832421484.png" alt="" width="133" height="115" />Another basic that will become like second nature when done a few times. From the admin home page (dashboard), on the left hand side of the page there will be a posts link, hover over this (if you&#8217;re on wp 3 or above) and a dropdown of options will appear, choose the &#8216;Add New&#8217; option and this will take you to the add new post page.</p>
<p>From here you can add a title in the &#8216;Enter title here&#8217; input box and below this is the text editor box, to make life easier make sure the visual tab is selected (you will need to know basic HTML for the HTML tab), in here you can put your post content, maybe it would be a news article post so you would put your  news content in the text editor area. You have the option to add media (pictures or video) with the button just above the text editor area.</p>
<p>Remember to categorise your post, fo example if this was a news article you would categorise it in that category, if that category doesnt exist you can add a category, the categories are on the right hand side of the page.</p>
<p><strong>Adding a page</strong></p>
<p><img class="size-full wp-image-428 alignright" title="pageadmin" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/01/pageadmin-e1326833241374.png" alt="" width="156" height="125" />This is very similar to adding a post, find the pages link in the left hand navigation, then click add new, here you will presented with a simiar page to the add post page, similar to this you will hve to fill in the &#8216;page title&#8217; and then populate the page with text from the text editor pane.</p>
<p>You will not have categories but you can however choose a parent page for this page if the page was belonging to another page, you can also selected a page template which you might have different layouts on if you have had that configured for you.</p>
<p><strong>Adding an Image</strong></p>
<p><img class="size-medium wp-image-435 alignright" title="mediapage" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2012/01/mediapage-300x139.png" alt="" width="300" height="139" />From the left nav click media then click &#8216;Add New&#8217;, dependent on what browser you have, you might see an image like the one shown or you could just see a select files button, if you see the &#8216;Drop files here&#8217;  you can simply drag the files from your computer into that area on the web page and it will upload the image automatically. If you only have the select files button this is pretty simple too, just click that button and it will pop up the normal style file locator, simply select your image from your computer and submit and this will initiated the same process.</p>
<p>Once the image has loaded you will see a list of options for your image, the most important of these is &#8216;title&#8217; and &#8216;alt&#8217;, make sure these are filled in and represent a description of your image, this is for accessibility, some users are unable to see images and have tools to read to them the description.</p>
<p>If you are on the post page when you are trying to add an image (most likely you will be) then you will also see some option to insert into post, you will see an array on image sizes select the most suitable for you and click insert into post, that&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/01/17/wordpress-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Admin Help Section</title>
		<link>http://www.amershamwebsites.co.uk/2012/01/09/admin-help-section/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/01/09/admin-help-section/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 09:12:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=389</guid>
		<description><![CDATA[Do to increasing questions about the wordpress admin platform I get, I have now created a wordpress article category and any questions or issues I come across I will post about to help aid support on your wordpress platform, hopefully some of these will help you solve your issues. Let me know any other questions [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Do to increasing questions about the wordpress admin platform I get, I have now created a wordpress article category and any questions or issues I come across I will post about to help aid support on your wordpress platform, hopefully some of these will help you solve your issues. Let me know any other questions you have and I will attempt to answer them.</p>
<p><a href="http://www.amershamwebsites.co.uk/category/articles/wordpress-articles/">Amersham Websites WordPress Help</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/01/09/admin-help-section/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Directory for Image Paths</title>
		<link>http://www.amershamwebsites.co.uk/2012/01/09/get-directory-for-image-paths/</link>
		<comments>http://www.amershamwebsites.co.uk/2012/01/09/get-directory-for-image-paths/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 09:04:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=382</guid>
		<description><![CDATA[I am trying to post little snippets of help as I remember them and this issue was a bit annoying when I started out with wordpress but like most issues once solved it was pretty straight forward to fix, now a few clients have asked me about this too so here is the issue and [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>I am trying to post little snippets of help as I remember them and this issue was a bit annoying when I started out with wordpress but like most issues once solved it was pretty straight forward to fix, now a few clients have asked me about this too so here is the issue and solution.</p>
<p><strong>The Issue</strong></p>
<p>Trying to insert an image into a file (not using the wysiwyg editor, but manually coding it) and the relative image path is not looking into the right folder for the images for example:</p>
<p><code>&amp;lt;img src=&quot;../../images/facebook.png&quot; alt=&quot;Facebook&quot; /&amp;gt;</code></p>
<p><strong>The Solution</strong></p>
<p>My solution for this was to try and form the whole image url without making it relative thus making the path a lot more reliable. Using the bloginfo() function you could retrieve the directory that you needed, so for most themes you would form the image path like this:</p>
<p><code>&amp;lt;img src=&quot;&amp;lt;?php bloginfo( &#039;template_directory&#039; ); ?&amp;gt;/images/facebook.png&quot; alt=&quot;Facebook&quot; /&amp;gt;</code></p>
<p>In some cases you might have a child theme and need to point the image towards the child themes image directory, in which case the code would look like this:</p>
<p><code>&amp;lt;img src=&quot;&amp;lt;?php bloginfo( &#039;stylesheet_directory&#039; ); ?&amp;gt;/images/facebook.png&quot; alt=&quot;Facebook&quot; /&amp;gt;</code></p>
<p>Obviously this is presuming your images are kept in a directory called &#8216;images&#8217; you can substitute this folder name for your own name if it different.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2012/01/09/get-directory-for-image-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Widgets not saving</title>
		<link>http://www.amershamwebsites.co.uk/2011/12/30/wordpress-widgets-not-saving/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/12/30/wordpress-widgets-not-saving/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 12:16:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=363</guid>
		<description><![CDATA[This has had me stumped for hours but I finally got to the bottom of it. I will do a more comprehensive article on this subject at a later date, but here is the issue and solution for those who come across this. The issue When dragging a widget into the widget area in the [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>This has had me stumped for hours but I finally got to the bottom of it. I will do a more comprehensive article on this subject at a later date, but here is the issue and solution for those who come across this.</p>
<p><strong>The issue</strong></p>
<p>When dragging a widget into the widget area in the admin panel it successfully drags and seems to save but if you do a refresh of that page the widget has been removed from the widget area.</p>
<p><strong>The solution</strong></p>
<p>When declaring the widget ID and Widget name they need to have a relationship, the id needs to be the same as the name but lower case and spaces substituted for hypens, so below is a correct declaration for a widget area:<br />
<pre><code>
register_sidebar(array(
&#039;id&#039; =&amp;gt; &#039;header-login&#039;,
&#039;description&#039; =&amp;gt; __( &#039;The widget area for the logon form&#039;),
&#039;name&#039; =&amp;gt; &#039;Header Login&#039;,
&#039;before_widget&#039; =&amp;gt; &#039;&#039;,
&#039;after_widget&#039; =&amp;gt; &#039;&#039;,
&#039;before_title&#039; =&amp;gt; &#039;&#039;,
&#039;after_title&#039; =&amp;gt; &#039;&#039;,
));
</code></pre></p>
<p>I hope this helps as it wasted 3 hours of my day <img src='http://www.amershamwebsites.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/12/30/wordpress-widgets-not-saving/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Show posts short code</title>
		<link>http://www.amershamwebsites.co.uk/2011/12/22/show-posts-short-code/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/12/22/show-posts-short-code/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 11:31:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=353</guid>
		<description><![CDATA[Shortcodes are a really useful tool to perform functionailty or grab data that you require in your post without the need for complex code knowledge. Using predefined snippets you can pull in the required data you need. We have developed this shortcode for ourselves specificaly for pulling in posts, if you feel this would benefit [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Shortcodes are a really useful tool to perform functionailty or grab data that you require in your post without the need for complex code knowledge. Using predefined snippets you can pull in the required data you need. We have developed this shortcode for ourselves specificaly for pulling in posts, if you feel this would benefit your wordpress platform then let us know and we can install for you.</p>
<p>Using this show posts shortcode could not be simplier, the shortcode will just list out posts from a certain category, with this you can configure the amount of posts, the order of the posts. The snippt below is the shortcode you would just paste into your post, and below that is the shortcode results working.</p>
<p>Shortcode:<br />
<strong><ul class="scrollable">		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/04/05/creating-a-jquery-plugin/" title="Creating a jQuery plugin">Creating a jQuery plugin</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/03/26/developer-buckinghamshire/" title="Developer Buckinghamshire">Developer Buckinghamshire</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/02/17/website-security/" title="Website Security">Website Security</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/02/11/wordpress-functions-on-non-wordpress-pages/" title="Wordpress functions on non wordpress pages">Wordpress functions on non wordpress pages</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/01/17/wordpress-basics/" title="Wordpress Basic's">Wordpress Basic's</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/01/09/get-directory-for-image-paths/" title="Get Directory for Image Paths">Get Directory for Image Paths</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/30/wordpress-widgets-not-saving/" title="Wordpress Widgets not saving">Wordpress Widgets not saving</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/22/show-posts-short-code/" title="Show posts short code">Show posts short code</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/21/wordpress-3-3/" title="Wordpress 3.3">Wordpress 3.3</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/20/html-canvas-tag/" title="HTML Canvas tag">HTML Canvas tag</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/11/14/why-use-wordpress/" title="Why use wordpress?">Why use wordpress?</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/05/19/search-engine-optimisation/" title="Search Engine Optimisation">Search Engine Optimisation</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/05/17/what-is-html5/" title="What is HTML5?">What is HTML5?</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/01/14/choosing-a-website/" title="Choosing a website">Choosing a website</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/01/14/web-term-glossary/" title="Web Term Glossary">Web Term Glossary</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/01/01/article-1/" title="What is the difference between CSS and HTML?">What is the difference between CSS and HTML?</a>
		</li></ul></strong></p>
<p><strong>Category</strong> &#8211; The id of the category you want to display, this defaults to showing all.<br />
<strong>Num</strong> &#8211; The amount of posts you want to show, defaults to 5, -1 will show all.<br />
<strong>Order by</strong> &#8211; Defaults to date.<br />
<strong>Order</strong> &#8211; Either asc for ascending or desc for descending, defaults to asc.</p>
<p>Shortcode in action:<br />
<ul class="scrollable">		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/04/05/creating-a-jquery-plugin/" title="Creating a jQuery plugin">Creating a jQuery plugin</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/03/26/developer-buckinghamshire/" title="Developer Buckinghamshire">Developer Buckinghamshire</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/02/17/website-security/" title="Website Security">Website Security</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/02/11/wordpress-functions-on-non-wordpress-pages/" title="Wordpress functions on non wordpress pages">Wordpress functions on non wordpress pages</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/01/17/wordpress-basics/" title="Wordpress Basic's">Wordpress Basic's</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2012/01/09/get-directory-for-image-paths/" title="Get Directory for Image Paths">Get Directory for Image Paths</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/30/wordpress-widgets-not-saving/" title="Wordpress Widgets not saving">Wordpress Widgets not saving</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/22/show-posts-short-code/" title="Show posts short code">Show posts short code</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/21/wordpress-3-3/" title="Wordpress 3.3">Wordpress 3.3</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/12/20/html-canvas-tag/" title="HTML Canvas tag">HTML Canvas tag</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/11/14/why-use-wordpress/" title="Why use wordpress?">Why use wordpress?</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/05/19/search-engine-optimisation/" title="Search Engine Optimisation">Search Engine Optimisation</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/05/17/what-is-html5/" title="What is HTML5?">What is HTML5?</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/01/14/choosing-a-website/" title="Choosing a website">Choosing a website</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/01/14/web-term-glossary/" title="Web Term Glossary">Web Term Glossary</a>
		</li>		<li>
			<a href ="http://www.amershamwebsites.co.uk/2011/01/01/article-1/" title="What is the difference between CSS and HTML?">What is the difference between CSS and HTML?</a>
		</li></ul></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/12/22/show-posts-short-code/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3</title>
		<link>http://www.amershamwebsites.co.uk/2011/12/21/wordpress-3-3/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/12/21/wordpress-3-3/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 14:38:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=343</guid>
		<description><![CDATA[With the new release of wordpress 3.3 Amersham Websites were real keen to try it out, named &#8216;Sonny&#8217; after a Jazz musician, here at Amersham Websites we are calling it wordpress 3.3 as we are not as geeky. There is a new drag and drop uploader which makes uploading media that much easier, as if [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>With the new release of wordpress 3.3 Amersham Websites were real keen to try it out, named &#8216;Sonny&#8217; after a Jazz musician, here at Amersham Websites we are calling it wordpress 3.3 as we are not as geeky.</p>
<p>There is a new drag and drop uploader which makes uploading media that much easier, as if it wasnt easy enough anyway this new method allows it to be even more user friendly. There are also new pointer tips for first time users which is excellent help if you are a first time user to the wordpress platform. The left admin navigation now has flyout sub navigation making it easier to see all the navigation on the screen.</p>
<p>We have installed it here on Amersham Websites and are pretty impressed with it, it has caused no compatibility issues with any of our existing plugins.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/12/21/wordpress-3-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Canvas tag</title>
		<link>http://www.amershamwebsites.co.uk/2011/12/20/html-canvas-tag/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/12/20/html-canvas-tag/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 12:55:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=328</guid>
		<description><![CDATA[I have recently been playing around with the new html canvas tag and seeing what its capabilities are, I&#8217;ve been quite impressed and it seems for drawing dynamic data this is going to be a real strong tool. You can also use it for animations which could mean this will replace flash, at the moment [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>I have recently been playing around with the new html canvas tag and seeing what its capabilities are, I&#8217;ve been quite impressed and it seems for drawing dynamic data this is going to be a real strong tool. You can also use it for animations which could mean this will replace flash, at the moment it is only supported in the latest browsers so is a little way off being available to all users however as most good developers will do, you can code a fall back if the users browser doesn&#8217;t support the canvas tag, either a description or an advisory message would be a good fall back.</p>
<p>Here is a clock I found that is used with the canvas tag and javascript. Have a look:</p>
<p><canvas height="150" width="150" id="canvas"><br />
Older browsers will not see the canvas object, please upgrade to see.<br />
</canvas></p>
<p>Using the setinterval function every second it changes the canvas image, you can change the colours, widths, heights and even shapes to what ever you want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/12/20/html-canvas-tag/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AWL launch ppronline.co.uk</title>
		<link>http://www.amershamwebsites.co.uk/2011/12/07/awl-launch-ppronline-co-uk/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/12/07/awl-launch-ppronline-co-uk/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 19:58:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=309</guid>
		<description><![CDATA[It&#8217;s with great pleasure Amersham Websites launch one of their first recruitment themed websites, www.pppronline.co.uk was launch in the early evening of 7th December 2011. This website has a fully customisable admin panel wth the requirement to add jobs, news, testimonials and edit pages. There are numerous custom widgets that have been built for PPR. [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><img class="size-medium wp-image-307 alignright" title="PPR Online" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2011/12/ppro-249x300.png" alt="" width="249" height="300" />It&#8217;s with great pleasure Amersham Websites launch one of their first recruitment themed websites, www.pppronline.co.uk was launch in the early evening of 7th December 2011.</p>
<p>This website has a fully customisable admin panel wth the requirement to add jobs, news, testimonials and edit pages. There are numerous custom widgets that have been built for PPR.</p>
<p>Amersham Websites would like to thank everyone at PPR for their help during the development process.</p>
<p>Check out their site <a href="http://www.ppronline.co.uk">www.ppronline.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/12/07/awl-launch-ppronline-co-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PPR Online</title>
		<link>http://www.amershamwebsites.co.uk/2011/12/07/ppr-online/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/12/07/ppr-online/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 19:53:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=306</guid>
		<description><![CDATA[PPR Online are a recruitment company, they required a website that not only was as visually appealing as a brochure website but also had the user friendly nature of a jobs board website, I think we successfully delivered this. PPR&#8217;s homepage has a fully customisable rotating banner animation, it has a jobs widget that scrolls [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>PPR Online are a recruitment company, they required a website that not only was as visually appealing as a brochure website but also had the user friendly nature of a jobs board website, I think we successfully delivered this.</p>
<p>PPR&#8217;s homepage has a fully customisable rotating banner animation, it has a jobs widget that scrolls the latest jobs, it shows all the brand colours in the form of icons and also has a useful footer widget area all of course fully customisable.</p>
<p>This site as all at Amersham Websites is content managed, every element is controlled within the admin panel.</p>
<p>PPR&#8217;s site also needed the ability for users to register and login, so it has a custom user management system integrated too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/12/07/ppr-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why use wordpress?</title>
		<link>http://www.amershamwebsites.co.uk/2011/11/14/why-use-wordpress/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/11/14/why-use-wordpress/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 13:27:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=271</guid>
		<description><![CDATA[Amersham Websites Ltd (AWL) view We use WordPress at AWL as it is a very easy to use interface. Our clients often do not have any coding knowledge and so WordPress provides the perfect software to enable them to update web content without the need to have any coding knowledge. It is an open source [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><strong>Amersham Websites Ltd (AWL) view</strong></p>
<p>We use WordPress at AWL as it is a very easy to use interface. Our clients often do not have any coding knowledge and so WordPress provides the perfect software to enable them to update web content without the need to have any coding knowledge.</p>
<p>It is an open source software, meaning that it is free to install. The fee we charge covers the use of a theme, which is the unique way in which the website is styled, and this can be chosen from our <a href="http://www.amershamwebsites.co.uk/choose-a-website/">theme selector</a>.  We also charge for tailoring this theme to your company’s individual taste however if you do not want to have us create a style for you and you think you have what it takes to create your own look then we can just set you up a themed website and host it for you.</p>
<p><strong>More about WordPress</strong></p>
<p>WordPress started in 2003 with a single bit of code to enhance the typography of everyday writing and initially had fewer users than you can count on your fingers and toes. Since then it has grown to be the largest self-hosted blogging tool in the world, used on millions of sites and seen by tens of millions of people every day.</p>
<p>WordPress started as just a blogging system, but has evolved to be used as a full content management system and so much more through the thousands of plugins, widgets and themes: WordPress is limited only by your imagination.</p>
<p>WordPress is also a piece software that has been developed to follow all of the Web Standards and so keeps your blog or website compliant to all of the rules that have to be followed when running a website.</p>
<p>Search Engines have to be definitely kept in mind when building a website to ensure that its design attracts maximum traffic for your business. WordPress uses different functions which allow it to be search engine friendly. For example sending pings to other sites, making categories, tagging your posts and use of h1/h2 tags etc.</p>
<p>There are of course alternative pieces of software that compete for attention in this market however the above outlines why we at AWL feel that WordPress is the most accessible software for our clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/11/14/why-use-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beauty Scrutiny</title>
		<link>http://www.amershamwebsites.co.uk/2011/11/01/beauty-scrutiny/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/11/01/beauty-scrutiny/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 19:11:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=228</guid>
		<description><![CDATA[This is a beauty blog website that is currently in development, this site is fully content managed with a wordpress powered admin system.]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>This is a beauty blog website that is currently in development, this site is fully content managed with a wordpress powered admin system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/11/01/beauty-scrutiny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amersham Websites launch Aquatic Imports</title>
		<link>http://www.amershamwebsites.co.uk/2011/09/28/amersham-websites-to-launch-aquatic-imports/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/09/28/amersham-websites-to-launch-aquatic-imports/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 08:37:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=224</guid>
		<description><![CDATA[Amersham Website lauch the first stage of the new look Aquatic imports, there are plans to move the the back end admin system across to one of Amersham websites bespoke content management systems. See Site]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Amersham Website lauch the first stage of the new look Aquatic imports, there are plans to move the the back end admin system across to one of Amersham websites bespoke content management systems.</p>
<p><a href="http://www.aquaticimports.com" target="_blank">See Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/09/28/amersham-websites-to-launch-aquatic-imports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amersham Websites sponsor muscular dystrophy golfers</title>
		<link>http://www.amershamwebsites.co.uk/2011/05/26/amersham-websites-sponsor-muscular-dystrophy-golfers/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/05/26/amersham-websites-sponsor-muscular-dystrophy-golfers/#comments</comments>
		<pubDate>Thu, 26 May 2011 12:34:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=207</guid>
		<description><![CDATA[Amersham Websites have sponsored 4 golfers to take part in a charity golf marathon. This event will see the 4 amateur golfers completing 4 different golf courses in 1 day for Muscular Dystrophy. The 72 holes will be completed in an estimated 16 hours covering an estimated 20 miles. The director of Amersham Websites director [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p><img class="size-full wp-image-213 alignright" title="mdc_logo_mdc" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2011/05/mdc_logo_mdc.gif" alt="" width="155" height="65" />Amersham Websites have sponsored 4 golfers to take part in a charity golf marathon. This event will see the 4 amateur golfers completing 4 different golf courses in 1 day for Muscular Dystrophy.</p>
<p>The 72 holes will be completed in an estimated 16 hours covering an estimated 20 miles. The director of Amersham Websites director Danny Jordan will be one of the 4 golfers, he is hoping with the help of his 3 other golfing buddies to raise over £1000 for <a href="http://www.muscular-dystrophy.org/">Muscular Dystrophy</a>.</p>
<p>Amersham Websites would like to encourage people to give generously to this wonderful charity and to do so please use this link  <a rel="nofollow" href="http://uk.virginmoneygiving.com/DannyJordan" target="_blank">http://uk.virginmoneygiving.com/DannyJordan</a></p>
<p>All the best from Amersham Websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/05/26/amersham-websites-sponsor-muscular-dystrophy-golfers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimisation</title>
		<link>http://www.amershamwebsites.co.uk/2011/05/19/search-engine-optimisation/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/05/19/search-engine-optimisation/#comments</comments>
		<pubDate>Thu, 19 May 2011 09:29:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=196</guid>
		<description><![CDATA[Search engine opitimisation is taken very seriously by companies as even the most aesthetically pleasing of websites with the best content don&#8217;t always generate enough traffic from search engines. Here is a few tips that we have come up with to help you get up to speed. How do search engines work? Spiders are sent [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Search engine opitimisation is taken very seriously by companies as even the most aesthetically pleasing of websites with the best content don&#8217;t always generate enough traffic from search engines. Here is a few tips that we have come up with to help you get up to speed.</p>
<h3>How do search engines work?</h3>
<p>Spiders are sent out by search engines across the internet, these spiders check websites for words that have been searched for on the internet, anything relevant gets inserted into a database of links.</p>
<p>This database is where the search engine looks every time a search on the internet is initiated. The contents of this database ranks of of the entries and displays them according to rank.</p>
<h3>How does SEO get you into search results?</h3>
<p>It is real important that when these spider visit your site they can find the keywords and phrases that people will often use when searching, if spiders find these words in plenty on your site it will rank highly, but this is not to say you over kill the word, search engines will penalise you for abusing the keyword on a page, so you need to start to think about what words terms people will search for on the web to get the page you have.</p>
<h3>The need for SEO specialists</h3>
<p>Reading up on SEO you will become aware that specialists are very useful, they can point you in the right direction as constantly changing (dynamic) sites are important so by you contributing to the content with the knowledge of what content to write this will make life a whole lot easier and more productive.</p>
<h3>Overview</h3>
<p>SEO is a constant process, it will be a mixing of good HTML code originally by the developer and then good content writing by the site administrator, also on top of this getting links into your site from other websites is a massive factor in getting up the rankings in search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/05/19/search-engine-optimisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is HTML5?</title>
		<link>http://www.amershamwebsites.co.uk/2011/05/17/what-is-html5/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/05/17/what-is-html5/#comments</comments>
		<pubDate>Tue, 17 May 2011 16:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=191</guid>
		<description><![CDATA[Quick definition: It&#8217;s the new verson of HTML. More Reading: HTML5 is the term for the new version of HTML, well what is HTML? HTML is hyper text mark-up language and is the code used to build a web page, all browsers understand HTML and will build a web page out of it. So why [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Quick definition: It&#8217;s the new verson of HTML.</p>
<p>More Reading: HTML5 is the term for the new version of HTML, well what is HTML? HTML is hyper text mark-up language and is the code used to build a web page, all browsers understand HTML and will build a web page out of it. So why change it? This new version of HTML is all about roling with new technologies, as they are developed browser vendors are integrating them into their browsers. What does this mean to me? If you are having a site built then your developer should be fully aware of HTML 5 and all its new features making sure your site can take advantage of these.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/05/17/what-is-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Total Testing UK Limited</title>
		<link>http://www.amershamwebsites.co.uk/2011/03/10/total-testing-uk-limited/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/03/10/total-testing-uk-limited/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 17:05:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=184</guid>
		<description><![CDATA[This site was constructed for a local electrician who&#8217;s business was for electrical testing, this was constructed on the wordpress framework and has a fully customisable content management system. The content management system allows my client to add/edit unlimited pages, create menus and add images.]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>This site was constructed for a local electrician who&#8217;s business was for electrical testing, this was constructed on the wordpress framework and has a fully customisable content management system.</p>
<p>The content management system allows my client to add/edit unlimited pages, create menus and add images.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/03/10/total-testing-uk-limited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing a website</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/14/choosing-a-website/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/14/choosing-a-website/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 08:47:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=157</guid>
		<description><![CDATA[We thought give you a guide through all the things you will need to have in place for you to have a website, whether you have your own hosting package and domain already sorted to if you know nothing about the process the list below should help you on your quest to having your own [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>We thought give you a guide through all the things you will need to have in place for you to have a website, whether you have your own hosting package and domain already sorted to if you know nothing about the process the list below should help you on your quest to having your own website:</p>
<ul>
<li>Decide the type of website you need, from e-commerce to just an informational website.</li>
<li>The content, so this means the images and text or video you want on your website, most design companies will help you in writing this but remember this website is your business marketing tool so you are best placed to write the content.</li>
<li>The layout and design, this can be left up to the design company doing your website but some clients will have certain colours that they need to stick to or corporate design standards that you need to tell the designers about.</li>
<li>The logo, most companies will already have an existing logo but if you need one you can request one when you get your site designed.</li>
<li>Hosting, all sites need hosting and most design companies will provide this for you but if you have your own hosting package then you will have to let them know that.</li>
<li>Domain Name &#8211; You can register this yourself or have the company building your site register it for you, but make sure it is available for purchase, use <a href="http://www.123-reg.co.uk/domain-names/" target="_blank">www.123-reg.co.uk </a>to check your domain name is available.</li>
</ul>
<p>Here at Amersham Websites we can provide part of this package or we can provide the whole package for you just use our <a href="http://www.amershamwebsites.co.uk/contact/">contact</a> form and we will get in contact with you giving you our best price.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/14/choosing-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Term Glossary</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/14/web-term-glossary/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/14/web-term-glossary/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 08:06:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=152</guid>
		<description><![CDATA[Here are a few terms that you might hear whilst researching your website and maybe are not too sure what means, hopefully this glossary will help clear a few things up. HTML &#8211; Hyper Text Mark-up Language, This is the language web browsers use to display the information on the page. CSS &#8211; Cascading Style [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Here are a few terms that you might hear whilst researching your website and maybe are not too sure what means, hopefully this glossary will help clear a few things up.</p>
<ul>
<li>HTML &#8211; Hyper Text Mark-up Language, This is the language web browsers use to display the information on the page.</li>
<li>CSS &#8211; Cascading Style Sheet, This is a style language that tells the browser how to display the information received.</li>
<li>SEO &#8211; Seacrh Engine Optimisation, this is making sure your website has the best chance at succeeding in search engine results such as Google.</li>
<li>CMS &#8211; Content Management System, This is a web tool that you can use to define what content you have on your website i.e the text and images on your site.</li>
<li>E-commerce &#8211; A website dedicated to selling products/services.</li>
<li>Web Browser &#8211; The software you use to view the internet pages i.e internet explorer or firefox.</li>
<li>Domain Name &#8211; A name that identifies a website i.e http://www.amershamwebsites.co.uk</li>
<li>Web Host &#8211; This is where all your files that make up your web site are kept all websites need a host.</li>
<li>Javascript &#8211; A language used by web developers to manipulate things happening on a web page.</li>
<li>Cookie &#8211; Information from a website stored on your computer by your web browser, this is used by the website so they remember what you did on the site last time i.e added something to your basket or logged in etc.</li>
</ul>
<p>If there are still some terms that are not on the list, let us know by our <a href="http://www.amershamwebsites.co.uk/contact/">contact</a> page and we&#8217;ll get an answer up for you as soon as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/14/web-term-glossary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contract Cameras</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/11/contract-cameras/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/11/contract-cameras/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 18:34:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=125</guid>
		<description><![CDATA[This is owned by the same company as the Top-teks site we also built, it is a similar theme and layout however this site is on the wordpress frame work which all our new sites are now on and so this site is much more customisable.]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>This is owned by the same company as the Top-teks site we also built, it is a similar theme and layout however this site is on the wordpress frame work which all our new sites are now on and so this site is much more customisable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/11/contract-cameras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aquatics Imports</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/11/aquatics-imports/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/11/aquatics-imports/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 18:12:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=120</guid>
		<description><![CDATA[This site project was just a cosmetic rebrand, we tidied up the front end code and the styles and imagery of the site, there was a legacy back end admin system already developed so this was just a cosmetic fix, this was only the first part of the project, there are now plans to move [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>This site project was just a cosmetic rebrand, we tidied up the front end code and the styles and imagery of the site, there was a legacy back end admin system already developed so this was just a cosmetic fix, this was only the first part of the project, there are now plans to move them across to the wordpress platform creating a newer more powerful custom content management system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/11/aquatics-imports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amersham Websites gets new look</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/04/amersham-websites-gets-new-look/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/04/amersham-websites-gets-new-look/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 12:23:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=101</guid>
		<description><![CDATA[Here at Amersham Websites we have successfully built a new platform for our existing site, this platform uses wordpress and a bespoke theme, we hope to be using the same platform across all of our new clients sights and maybe some existing ones as we believe this is one of the most powerful content management [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Here at Amersham Websites we have successfully built a new platform for our existing site, this platform uses wordpress and a bespoke theme, we hope to be using the same platform across all of our new clients sights and maybe some existing ones as we believe this is one of the most powerful content management systems there is.</p>
<p>The new look is quite a drastic change from the old look but is very contemporary and we believe make the site a lot more user friendly and useful.<img class="size-medium wp-image-103  alignright" title="Old look" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2011/01/oldawl-300x129.png" alt="Old look" width="184" height="79" /><a rel="attachment wp-att-103" href="http://www.amershamwebsites.co.uk/2011/01/amersham-websites-gets-new-look/oldawl/"><br />
</a></p>
<p style="text-align: left;">We have added in an <a href="http://www.amershamwebsites.co.uk/category/articles/">articles</a> section providing useful information for web novices and more advanced articles about code and changing trends more higher skilled developers. As well as this we have a <a href="http://www.amershamwebsites.co.uk/category/news/">news</a> section keeping clients upto date on all the news surrounding our company and possibly information with regards to their sites.</p>
<p style="text-align: left;"><img class="size-medium wp-image-174 alignright" title="amershamwebsites-logo" src="http://www.amershamwebsites.co.uk/wp-content/uploads/2011/01/amershamwebsites-logo-300x159.png" alt="" width="187" height="99" />Our portfolio has also been updated to include our recent clients websites, this has a host of big clients in, for more information go to our <a href="http://www.amershamwebsites.co.uk/category/portfolio/">portfolio page</a> to see exactly what we did for them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/04/amersham-websites-gets-new-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All platforms supported</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/02/all-platforms-supported/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/02/all-platforms-supported/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 16:54:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/?p=61</guid>
		<description><![CDATA[Here at Amersham Websites we are constantly trying to keep up to date with all the latest browsers and user devices, we recognise the need to have your web sites or web application working in all platforms. Below is a list of current browsers that are fully supported: Internet Explorer 7 Internet Explorer 8 Internet [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Here at Amersham Websites we are constantly trying to keep up to date with all the latest browsers and user devices, we recognise the need to have your web sites or web application working in all platforms. Below is a list of current browsers that are fully supported:</p>
<ul>
<li>Internet Explorer 7</li>
<li>Internet Explorer 8</li>
<li>Internet Explorer 9</li>
<li>Firefox 3 +</li>
<li>Safari</li>
<li>Chrome</li>
</ul>
<p>The following browser are functionally supported:</p>
<ul>
<li>Internet Explorer 6</li>
<li>Opera</li>
</ul>
<p>If you have any other browsers that you need support for then please specify this when briefing us in your requirements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/02/all-platforms-supported/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All sites now content managed</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/01/all-sites-now-content-managed/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/01/all-sites-now-content-managed/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 15:09:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/aml_cms/?p=37</guid>
		<description><![CDATA[All sites now content managed]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Amersham websites are now providing a content magaement system with all of their websites, this will enable as much control as you want, the less level of control you need the cheaper it will be for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/01/all-sites-now-content-managed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the difference between CSS and HTML?</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/01/article-1/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/01/article-1/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 14:57:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/aml_cms/?p=34</guid>
		<description><![CDATA[HTML is used to structure content. CSS is used for formatting structured content. Okay, it sounds a bit technical and confusing. But please continue reading. It will all make sense to you soon. Back in the good old days when Madonna was a virgin and a guy called Tim Berners Lee invented the World Wide [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>HTML is used to structure content. CSS is used for formatting structured content.</p>
<p>Okay, it sounds a bit technical and confusing. But please continue reading. It will all make sense to you soon.</p>
<p>Back in the good old days when Madonna was a virgin and a guy called Tim Berners Lee invented the World Wide Web, the language HTML was only used to add structure to text. An author could mark his text by stating &#8220;this is a headline&#8221; or &#8220;this is a paragraph&#8221; using HTML tags such as <code>&amp;lt;h1&amp;gt;</code> and <code>&amp;lt;p&amp;gt;</code>.</p>
<p>As the Web gained popularity, designers started looking for possibilities to add layout to online documents. To meet this demand, the browser producers (at that time Netscape and Microsoft) invented new HTML tags such as for example <code>&amp;lt;font&amp;gt;</code> which differed from the original HTML tags by defining layout &#8211; and not structure.</p>
<p>This also led to a situation where original structure tags such as &lt;table&gt; were increasingly being misused to layout pages instead of adding structure to text. Many new layout tags such as &lt;blink&gt; were only supported by one type of browser. &#8220;You need browser X to view this page&#8221; became a common disclaimer on web sites.</p>
<p>CSS was invented to remedy this situation by providing web designers with sophisticated layout opportunities supported by all browsers. At the same time, separation of the presentation style of documents from the content of documents, makes site maintenance a lot easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/01/article-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Amersham Websites</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/01/welcome-to-amersham-websites/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/01/welcome-to-amersham-websites/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 14:29:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/aml_cms/?p=22</guid>
		<description><![CDATA[Hello and welcome to Amersham Websites Limited, We are presuming that the reason you are here is to get some web work done, whether you need a full website or a small piece of development to your existing site we are pretty sure we can offer you a solution. Firstly you probably want to check [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Hello and welcome to Amersham Websites Limited, We are presuming that the reason you are here is to get some web work done, whether you need a full website or a small piece of development to your existing site we are pretty sure we can offer you a solution.</p>
<p>Firstly you probably want to check out some of the work we have done so far we get on over to the <a href="http://www.amershamwebsites.co.uk/category/portfolio/">portfolio page</a> and check some out if you like what you see get in contact with us.</p>
<p>For more in depth info on the Amersham web company check out our <a href="http://www.amershamwebsites.co.uk/about/">about us</a> page, for more info on websites check out our <a href="http://www.amershamwebsites.co.uk/category/articles/">article pages</a>, here you should find articles from basics as what is code to more advanced thoughts on what you should be looking out for. Don&#8217;t forget we also have a <a href="http://www.amershamwebsites.co.uk/category/news/">news</a> section in which you can keep up to date with all the goings on in Amersham Websites.</p>
<p>We hope you find everything you need to know about us on this site if you have any further questions please use our <a href="http://www.amershamwebsites.co.uk/contact/">contact page</a> to let us know what you want.</p>
<h2>What they say</h2><div id="quotearea"><div id="quoterotator">
Loading Quotes...
</div></div>
<script type="text/javascript">quoteRotator.delay=8;quoteRotator.fadeDuration=4;quoteRotator.fadeoutDuration=2;quoteRotator.quotesInit();</script>

]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/01/welcome-to-amersham-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Southall Tyres</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/01/southall-tyres/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/01/southall-tyres/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 14:14:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Older Projects]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/aml_cms/?p=17</guid>
		<description><![CDATA[A Tyre company based in Middlesex, the website is a unique tool that helps customer find out all they want, giving them a unique tool to find out directions from their house and tyre sizes and all the various services they offer. Here a list of key features: Drop down navigaton Directions finder Tyre size [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>A Tyre company based in Middlesex, the website is a unique tool that helps customer find out all they want, giving them a unique tool to find out directions from their house and tyre sizes and all the various services they offer. Here a list of key features:</p>
<ul>
<li>Drop down navigaton</li>
<li>Directions finder</li>
<li>Tyre size guide</li>
</ul>
<p>The technologies used were:</p>
<ul>
<li>PHP</li>
<li>Javascript</li>
<li>jQuery</li>
<li>CSS</li>
<li>HTML</li>
<li>AJAX</li>
</ul>
<p>To see the site live visit <a href="http://www.southalldiscounttyres.co.uk" target="_blank">www.southalldiscounttyres.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/01/southall-tyres/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top-teks</title>
		<link>http://www.amershamwebsites.co.uk/2011/01/01/top-teks/</link>
		<comments>http://www.amershamwebsites.co.uk/2011/01/01/top-teks/#comments</comments>
		<pubDate>Sat, 01 Jan 2011 13:36:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.amershamwebsites.co.uk/aml_cms/?p=10</guid>
		<description><![CDATA[Top-teks.co.uk is a professional camera supplier company, they needed a brand new ecommerce website with full content management. we delivered the following features to the site: Content management system Shopping basket Search tool Payment gateway CMS rotating banners User registration/log in Newsletter subscription Browse shopping The content management system used was built completely from scratch. [...]]]></description>
			<content:encoded><![CDATA[
<!-- wp-jquery-lightbox, a WordPress plugin by ulfben --> 
<p>Top-teks.co.uk is a professional camera supplier company, they needed a brand new ecommerce website with full content management. we delivered the following features to the site:</p>
<ul>
<li>Content management system</li>
<li>Shopping basket</li>
<li>Search tool</li>
<li>Payment gateway</li>
<li>CMS rotating banners</li>
<li>User registration/log in</li>
<li>Newsletter subscription</li>
<li>Browse shopping</li>
</ul>
<p>The content management system used was built completely from scratch. The technologies used were:</p>
<ul>
<li>PHP</li>
<li>Javascript</li>
<li>jQuery</li>
<li>HTML</li>
<li>CSS</li>
</ul>
<p>If you would like a site similar to this then use our <a href="http://www.amershamwebsites.co.uk/contact/">contact form</a>.</p>
<p>To have a closer look at this site visit <a href="http://www.top-teks.co.uk" target="_blank">www.top-teks.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.amershamwebsites.co.uk/2011/01/01/top-teks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

