<?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>mathayward.com blog</title>
	<atom:link href="http://www.mathayward.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mathayward.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 31 Jul 2010 09:05:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Position Fixed Tutorial</title>
		<link>http://www.mathayward.com/blog/index.php/2010/04/position-fixed-tutorial/</link>
		<comments>http://www.mathayward.com/blog/index.php/2010/04/position-fixed-tutorial/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 10:25:09 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/wp-blog/?p=91</guid>
		<description><![CDATA[If you’ve read my Position Fixed Showcase blog post, you’ll know that I’ve noticed a recent trend for fixed position elements and background image in website design. Here’s a tutorial on how to achieve this effect yourself.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve read my <a href="http://www.mathayward.com/blog/index.php/2010/04/position-fixed-showcase/">Position Fixed Showcase</a> blog post, you&#8217;ll know that I&#8217;ve noticed a recent trend for fixed position elements and background image in website design.  Here&#8217;s a tutorial on how to achieve this effect yourself.</p>
<h2>Fixed Background</h2>
<p>This is the easiest fixed position effect to achieve.</p>
<p>1. We&#8217;ll start by building a basic webpage in XHTML and CSS.  The webpage has a floated two div layout (navigation and content).</p>
<p><strong>XHTML</strong></p>
<div class="codesnip-container" ><div class="html4strict codesnip" style="font-family:monospace;"><span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;nav&quot;</span>&gt;</span><br />
&nbsp; &nbsp;<span class="sc2">&lt;<a href="http://december.com/html/4/element/ul.html"><span class="kw2">ul</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Home<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Link 1<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
&nbsp; &nbsp; &nbsp; <span class="sc2">&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;&lt;<a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a> <span class="kw3">href</span><span class="sy0">=</span><span class="st0">&quot;#&quot;</span>&gt;</span>Link 2<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/a.html"><span class="kw2">a</span></a>&gt;&lt;<a href="http://december.com/html/4/element/li.html"><span class="kw2">li</span></a>&gt;</span><br />
&nbsp; &nbsp;<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/ul.html"><span class="kw2">ul</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span><br />
<span class="sc2">&lt;<a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a> <span class="kw3">id</span><span class="sy0">=</span><span class="st0">&quot;content&quot;</span>&gt;</span><br />
&nbsp; &nbsp;<span class="sc2">&lt;<a href="http://december.com/html/4/element/p.html"><span class="kw2">p</span></a>&gt;</span>A lot of content that would cause the page to scroll&#8230;<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/p.html"><span class="kw2">p</span></a>&gt;</span><br />
<span class="sc2">&lt;<span class="sy0">/</span><a href="http://december.com/html/4/element/div.html"><span class="kw2">div</span></a>&gt;</span></div></div>
<p><strong>CSS</strong></p>
<div class="codesnip-container" ><div class="css codesnip" style="font-family:monospace;">body <span class="br0">&#123;</span><br />
&nbsp; &nbsp;<span class="kw1">background</span><span class="sy0">:</span> <span class="kw2">url</span><span class="br0">&#40;</span><span class="st0">&quot;bg.jpg&quot;</span><span class="br0">&#41;</span> <span class="kw2">no-repeat</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span><br />
<br />
<span class="re0">#nav</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp;<span class="kw1">background</span><span class="sy0">:</span> <span class="re0">#FFFFFF</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">width</span><span class="sy0">:</span> <span class="re3">300px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">margin</span><span class="sy0">:</span> <span class="re3">10px</span> <span class="re3">0px</span> <span class="re3">0px</span> <span class="re3">10px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">float</span><span class="sy0">:</span> <span class="kw1">left</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<span class="re0">#content</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp;<span class="kw1">background</span><span class="sy0">:</span> <span class="re0">#FFFFFF</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">width</span><span class="sy0">:</span> <span class="re3">450px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">float</span><span class="sy0">:</span> <span class="kw1">left</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">padding</span><span class="sy0">:</span> <span class="re3">10px</span> <span class="re3">10px</span> <span class="re3">10px</span> <span class="re3">10px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">margin</span><span class="sy0">:</span> <span class="re3">10px</span> <span class="re3">0px</span> <span class="re3">10px</span> <span class="re3">20px</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div></div>
<p>This will give us something like this:</p>
<img src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/screenshot_1-300x225.jpg" alt="Position Fixed Screenshot 1" title="screenshot_1" width="300" height="225" />
<p>But you&#8217;ll notice that, when you scroll through the content, the background image ends, leaving a lovely white space!</p>
<img src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/screenshot_2-300x225.jpg" alt="Position Fixed Tutorial Screenshot" title="screenshot_2" width="300" height="225" />
<p>2. So the solution?  Fix the position of background image.  And this is really simple. Simpy change the line of CSS that adds the background image to the body.</p>
<p><strong>CSS</strong></p>
<div class="codesnip-container" ><div class="css codesnip" style="font-family:monospace;">body <span class="br0">&#123;</span><br />
&nbsp; &nbsp;<span class="kw1">background</span><span class="sy0">:</span> <span class="kw2">url</span><span class="br0">&#40;</span><span class="st0">&quot;bg.jpg&quot;</span><span class="br0">&#41;</span> <span class="kw2">no-repeat</span> <span class="kw2">fixed</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div></div>
<p>Now, as you scroll through the content, the background image does not move!</p>
<img src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/screenshot_3-300x225.jpg" alt="Position Fixed Tutorial Screenshot" title="screenshot_3" width="300" height="225" />
<p><a href="http://www.mathayward.com/demos/position-fixed/demo-fixed-bg.html" target="_blank">View a demo</a></p>
<h2>Fixed Elements</h2>
<p>Unfortunately, at the moment, when scrolling through the content, the navigation disappears, and to use it, you&#8217;ll have to scroll all the way back up.  So let&#8217;s fix it to the browser window.</p>
<p>1. Using what you already have from before, add &#8220;<em>position: fixed</em>&#8221; to the navigation and position it at the top left of the browser window.</p>
<p><strong>CSS</strong></p>
<div class="codesnip-container" ><div class="css codesnip" style="font-family:monospace;"><span class="re0">#nav</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp;<span class="kw1">background</span><span class="sy0">:</span> <span class="re0">#FFFFFF</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">width</span><span class="sy0">:</span> <span class="re3">300px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">margin</span><span class="sy0">:</span> <span class="re3">10px</span> <span class="re3">0px</span> <span class="re3">0px</span> <span class="re3">10px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">float</span><span class="sy0">:</span> <span class="kw1">left</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">position</span><span class="sy0">:</span> <span class="kw2">fixed</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">top</span><span class="sy0">:</span> <span class="re3">0px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">left</span><span class="sy0">:</span> <span class="re3">0px</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div></div>
<img src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/screenshot_4-300x225.jpg" alt="Position Fixed Tutorial Screenshot" title="screenshot_4" width="300" height="225" />
<p>2. Oops!  The nav is definitely fixed to the top left of the browser window, but it&#8217;s also obscuring the content!</p>
<p>No problem, add some left margin to the content and you&#8217;re sorted.</p>
<p><strong>CSS</strong></p>
<div class="codesnip-container" ><div class="css codesnip" style="font-family:monospace;"><span class="re0">#content</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp;<span class="kw1">background</span><span class="sy0">:</span> <span class="re0">#FFFFFF</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">width</span><span class="sy0">:</span> <span class="re3">450px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">float</span><span class="sy0">:</span> <span class="kw1">left</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">padding</span><span class="sy0">:</span> <span class="re3">10px</span> <span class="re3">10px</span> <span class="re3">10px</span> <span class="re3">10px</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="kw1">margin</span><span class="sy0">:</span> <span class="re3">10px</span> <span class="re3">0px</span> <span class="re3">10px</span> <span class="re3">320px</span><span class="sy0">;</span><br />
<span class="br0">&#125;</span></div></div>
<img src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/screenshot_5-300x225.jpg" alt="Position Fixed Tutorial Screenshot" title="screenshot_5" width="300" height="225" />
<p><a href="http://www.mathayward.com/demos/position-fixed/demo-fixed-element.html" target="_blank">View a demo</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2010/04/position-fixed-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Position Fixed Showcase</title>
		<link>http://www.mathayward.com/blog/index.php/2010/04/position-fixed-showcase/</link>
		<comments>http://www.mathayward.com/blog/index.php/2010/04/position-fixed-showcase/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 21:00:45 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Showcases]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/wp-blog/?p=66</guid>
		<description><![CDATA[A recent trend I’ve noticed in website design is the use of fixed position elements and backgrounds. Fixing the position of an element within a browser window adds emphasis to it and draws the users attention. Here are a few of the sites I’ve noticed that use this attribute.]]></description>
			<content:encoded><![CDATA[<p>A recent trend I&#8217;ve noticed in website design is the use of fixed position elements and backgrounds.  Fixing the position of an element within a browser window adds emphasis to it and draws the users attention.  With backgrounds, using the CSS attribute, position: fixed, means that for large scrolling websites, background will not have to be repeated.</p>

<p>Here are a few of the sites I&#8217;ve noticed that use this attribute, and, if you&#8217;re interested, <a href="http://www.mathayward.com/blog/index.php/2010/04/position-fixed-tutorial/">here&#8217;s a tutorial for doing it yourself</a>.</p>
<h2>Fixed Elements</h2>
<div class="hr"><hr /></div>
<h3>Crush + Lovely</h3>
<a target="_blank" href="http://crushlovely.com/"><img title="Crush + Lovely" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_crushLovely.jpg" alt="Crush + Lovely" width="593" height="200" /></a>

<p>A fixed navigation means the user will never lose their way.</p>
<div class="hr"><hr /></div>
<h3>FRESH01</h3>
<a target="_blank" href="http://fresh01.co.za/"><img title="FRESH01" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_fresh01.jpg" alt="FRESH01" width="593" height="200" /></a>

<p>Another fixed navigation, but also check out the blue circles as your scroll, very clever.</p>
<div class="hr"><hr /></div>
<h3>Information Highwayman</h3>
<a target="_blank" href="http://informationhighwayman.com/"><img title="Information Highwayman" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_informationHighwayman.jpg" alt="Information Highwayman" width="593" height="200" /></a>

<p>Simply fixing the logo to where you are, means you won&#8217;t forget what site you&#8217;re on if you find something interesting.</p>
<div class="hr"><hr /></div>
<h3>James Charlick</h3>
<a target="_blank" href="http://www.jamescharlick.com/"><img title="James Charlick" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_jamesCharlick.jpg" alt="James Charlick" width="593" height="200" /></a>

<p>James Charlick uses fixed positioning to achieve a layered effect.</p>
<div class="hr"><hr /></div>
<h3>Keithar</h3>
<a target="_blank" href="http://keithar.com/"><img title="Keithar" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_keithar.jpg" alt="Keithar" width="593" height="200" /></a>

<p>Making a CV link the most prominent thing on the site is never a bad idea&#8230;</p>
<div class="hr"><hr /></div>
<h3>Proclaim</h3>
<a target="_blank" href="http://work.proclaim.se/"><img title="Proclaim" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_proclaim.jpg" alt="Proclaim" width="593" height="200" /></a>

<p>Main menu and recent tweets are always in the users eyeline.</p>
<div class="hr"><hr /></div>
<h3>Silly Poems</h3>
<a target="_blank" href="http://www.teamfannypack.com/sillypoems/"><img title="Silly Poems" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_sillyPoems.jpg" alt="Silly Poems" width="593" height="200" /></a>

<p>Main menu follows the user as they scroll through this one page website.</p>
<h2>Fixed Background</h2>
<div class="hr"><hr /></div>
<h3>Nomad Festival</h3>
<a target="_blank" href="http://www.nomad-festival.com/"><img title="Nomad Festival" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_festivalNomad.jpg" alt="Nomad Festival" width="593" height="200" /></a>

<p>A small fixed background, only at the top of the page, sets of the otherwise drab background colour.</p>
<div class="hr"><hr /></div>
<h3>Forme Bikes</h3>
<a target="_blank" href="http://www.formebikes.co.uk/"><img title="Forme Bikes" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_forme.jpg" alt="Forme Bikes" width="593" height="200" /></a>

<p>Using a fixed background, means this huge background doesn&#8217;t need to be even bigger&#8230;</p>
<div class="hr"><hr /></div>
<h3>English Squash and Racketball</h3>
<a target="_blank" href="http://www.englandsquashandracketball.com/"><img title="English Squash and Racketball" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_englishSquashRacketball.jpg" alt="English Squash and Racketball" width="593" height="200" /></a>

<p>This site has won a lot of awards and it&#8217;s easy to see why.  Attention to detail means you&#8217;re not staring at someones crotch while you read the latest news!</p>
<div class="hr"><hr /></div>
<h3>Meninos</h3>
<a target="_blank" href="http://www.meninos.us/"><img title="Meninos" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_meninos.jpg" alt="Meninos" width="593" height="200" /></a>

<p>Main menu and recent tweets are always in the users eyeline.</p>
<div class="hr"><hr /></div>
<h3>My Brain Art</h3>
<a target="_blank" href="http://mybrainart.com/"><img title="My Brain Art" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_myBrainArt.jpg" alt="My Brain Art" width="593" height="200" /></a>

<p>A well-designed site, using a fixed background means that the content is always well framed.</p>
<div class="hr"><hr /></div>
<h3>Preloaded</h3>
<a target="_blank" href="http://www.preloaded.com/"><img title="Preloaded" src="http://www.mathayward.com/blog/wp-content/uploads/2010/04/position_fixed_preloaded.jpg" alt="Preloaded" width="593" height="200" /></a>

<p>Using a tiling and fixed background for an even quicker download time!</p>]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2010/04/position-fixed-showcase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running in Pants for Haiti</title>
		<link>http://www.mathayward.com/blog/index.php/2010/01/running-in-pants-for-haiti/</link>
		<comments>http://www.mathayward.com/blog/index.php/2010/01/running-in-pants-for-haiti/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:52:08 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Event Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=124</guid>
		<description><![CDATA[On 15th January 2010 Tim Beaver ran through Old Market Square, Nottingham in his pants to raise money for Haiti’s Earthquake survivors.]]></description>
			<content:encoded><![CDATA[<p>On 15th January 2010 <a href="http://twitter.com/debelvoir" target="_blank">Tim Beaver</a> ran through <a href="http://www.bbc.co.uk/nottingham/content/webcams/old_market_square_webcam.shtml" target="_blank">Old Market Square</a>, Nottingham in his pants to raise money for Haiti&#8217;s Earthquake survivors.</p>
<p>After raising a thousand pounds in just 24 hours, Tim&#8217;s efforts managed to get featured in the <a href="http://www.thisisnottingham.co.uk/news/Running-pants-help-Haiti/article-1717615-detail/article.html" target="_blank">Nottingham Evening Post</a>, on BBC Radio Nottingham and on the <a href="http://www.bbc.co.uk/theoneshow/" target="_blank">One Show</a>.</p>
<p>If you would like to donate go to: <a href="http://www.justgiving.com/Slim-Beaver" target="_blank">www.justgiving.com/Slim-Beaver</a></p>
<!-- Start of Flickr Badge --><br /><script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157623090646583&amp;context=in%2Fset-72157623090646583%2F"></script><!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2010/01/running-in-pants-for-haiti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jack Pe&#241;ate in Nottingham</title>
		<link>http://www.mathayward.com/blog/index.php/2009/10/jack-peate-in-nottingham/</link>
		<comments>http://www.mathayward.com/blog/index.php/2009/10/jack-peate-in-nottingham/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 15:52:55 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Event Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=129</guid>
		<description><![CDATA[On Sunday night I was invited to photograph Jack Pe&#241;ate at Nottingham Trent University, part of his UK tour.]]></description>
			<content:encoded><![CDATA[<p>On Sunday night I was invited to photograph <a href="http://www.jackpenate.com">Jack Pe&ntilde;ate</a> at <a href="http://www.ntu.ac.uk/">Nottingham Trent University</a>, part of his UK tour.</p><p>Jack was awesome, as is his new album, &#8220;Everything is New&#8221; and the support act, <a href="http://www.myspace.com/theophiluslondon">Theophilus London</a> was crazy&#8230;in a good way.</p>
<!-- Start of Flickr Badge --><br /><script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157622676601910&amp;context=in%2Fset-72157622676601910%2F"></script><!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2009/10/jack-peate-in-nottingham/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hayley and Dean&#8217;s Wedding</title>
		<link>http://www.mathayward.com/blog/index.php/2009/07/hayley-and-deans-wedding/</link>
		<comments>http://www.mathayward.com/blog/index.php/2009/07/hayley-and-deans-wedding/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 15:55:18 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Wedding Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=131</guid>
		<description><![CDATA[Last week I set off to Beverley in East Yorkshire to photograph Hayley and Dean's wedding.]]></description>
			<content:encoded><![CDATA[<p>Last week I set off to Beverley in East Yorkshire to photograph Hayley and Dean&#8217;s wedding.  Although this was a registry office affair, the local authorities had chosen an <a href="http://www.beverleyinpictures.co.uk/walkergatehouse.html?pic=95" target="_blank">elegant 18th century house</a> as the place to carry out civil ceremonies, so I managed to get some nice shots with a bit of character.</p>
<p>The reception took place at <a href="http://www.beverleyrufc.co.uk/" target="_blank">Beverley Rugby Club</a> where, I think, the best photos were taken round the back of the clubhouse, amongst the bins and empty gas tanks.</p>
<!-- Start of Flickr Badge --><br /><script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157621524335945&amp;context=in%2Fset-72157621524335945%2F"></script><br /><!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2009/07/hayley-and-deans-wedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oliver! by Stage Productions</title>
		<link>http://www.mathayward.com/blog/index.php/2009/02/oliver-by-stage-productions/</link>
		<comments>http://www.mathayward.com/blog/index.php/2009/02/oliver-by-stage-productions/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 15:56:28 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Event Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=134</guid>
		<description><![CDATA[Earlier this month I left work early to travel to the Regent's Theatre in Stoke-on-Trent where I photographed the final dress rehearsal of Oliver!, by Stage Productions.]]></description>
			<content:encoded><![CDATA[<p>Earlier this month I left work early to travel to the Regent&#8217;s Theatre in Stoke-on-Trent where I photographed the final dress rehearsal of Oliver!, by <a href="http://stage-productions.com">Stage Productions</a>.</p>
<p>For an &#8220;amateur&#8221; company the quality of acting and production was excellent, so much so that I went back to sit in the audience for the Saturday performance.</p>
<!-- Start of Flickr Badge --><br /><script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157622677364822&amp;context=in%2Fset-72157622677364822%2F"></script><!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2009/02/oliver-by-stage-productions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Much searching and finally a result</title>
		<link>http://www.mathayward.com/blog/index.php/2009/01/much-searching-and-finally-a-result/</link>
		<comments>http://www.mathayward.com/blog/index.php/2009/01/much-searching-and-finally-a-result/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 15:57:42 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Graphic Design]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=136</guid>
		<description><![CDATA[After much searching on my old computer I finally found my Graphic Design work.]]></description>
			<content:encoded><![CDATA[<p>After much searching on my old computer I finally found my Graphic Design work.  For some reason I had saved it onto the drive I had partitioned specifically for Program Files.</p><p>Anyway within a couple of hours of finding them I have now added a <a href="http://mathayward.com/category.aspx?cat=graphicdesign">graphic design</a> section to the website.</p><p>I also spent some time updating the <a href="http://mathayward.com/category.aspx?cat=webdesign">web design</a> section.</p><p>This weekend I&#8217;m hoping to add some new features to the site, including a comments function for each page and make the whole site database driven to save me time in future.</p><p>Keep &#8216;em peeled!</p>]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2009/01/much-searching-and-finally-a-result/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cat &amp; Geoff&#8217;s wedding</title>
		<link>http://www.mathayward.com/blog/index.php/2008/10/cat-geoffs-wedding/</link>
		<comments>http://www.mathayward.com/blog/index.php/2008/10/cat-geoffs-wedding/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:58:28 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Wedding Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=138</guid>
		<description><![CDATA[At the weekend I was honoured to photograph my friends' Cat and Geoff's wedding at the Derby Conference Centre.]]></description>
			<content:encoded><![CDATA[<p>At the weekend I was honoured to photograph my friends&#8217; Cat and Geoff&#8217;s wedding at the <a href="http://www.thederbyconferencecentre.com">Derby Conference Centre</a>, a Grade II listed, 1930&#8217;s Art Deco building.</p>
<p>Unfortunately we were hit with wet weather so couldn&#8217;t take any outdoor photographs, but the indoor ones turned out quite well anyway.</p>
<p>Besides the best shots were to come later on at the reception when the Groom and his band, formed just the wedding, played a small set to get everyone dancing.  Not to mention some members of High Peak Samba who turned up with their plethora of percussion instruments to wake us all up.</p>
<!-- Start of Flickr Badge --><br /><script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157608446736824&amp;context=in%2Fset-72157608446736824%2F"></script><br /><!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2008/10/cat-geoffs-wedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stacey and Jason&#8217;s wedding</title>
		<link>http://www.mathayward.com/blog/index.php/2008/09/stacey-and-jasons-wedding/</link>
		<comments>http://www.mathayward.com/blog/index.php/2008/09/stacey-and-jasons-wedding/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 16:00:09 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Wedding Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=142</guid>
		<description><![CDATA[Last weekend I shot my first wedding.  Stacey and Jason are relatives of friends of mine and I was honoured to be asked to take their wedding photographs.]]></description>
			<content:encoded><![CDATA[<p>Last weekend I shot my first wedding.  Stacey and Jason are relatives of friends of mine and I was honoured to be asked to take their wedding photographs.</p><p>Being my first attempt at the job I was quite nervous in the run up to the day, but having my Brother as &#8220;assistant&#8221; really helped me to overcome that, and I think my shots came out quite well.</p><p>The wedding venue was the <a href="http://www.corushotels.com/elstree/">Corus Hotel in Elstree</a>, a Tudor-style building, full of character and set in 10 acres of natural woodland, so locations for shots weren&#8217;t hard to come by.</p><p>I have another wedding to shoot in October for some very good friends of mine, then hopefully I should get some more work off the back of these.</p><p><strong>Update:</strong> I have 4 more weddings booked in to shoot for 2009/2010!</p>
<!-- Start of Flickr Badge -->
<script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157607818515398&amp;context=in%2Fset-72157607818515398%2F"></script>
<!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2008/09/stacey-and-jasons-wedding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cotswold wildlife park</title>
		<link>http://www.mathayward.com/blog/index.php/2008/08/cotswold-wildlife-park/</link>
		<comments>http://www.mathayward.com/blog/index.php/2008/08/cotswold-wildlife-park/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 16:00:39 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Wildlife Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=144</guid>
		<description><![CDATA[For the firs time in what feels like an eternity I had nothing to do at the weekend, so I decided to pop to Cotswold Wildlife Park with my girlfriend.]]></description>
			<content:encoded><![CDATA[<p>For the firs time in what feels like an eternity I had nothing to do at the weekend, so I decided to pop to Cotswold Wildlife Park with my girlfriend.</p><p>The park had an abundance of species of wildlife set in some fantastic gardens, meaning photo opportunities were rife.</p><p>After many attempts I managed to get a decent photograph of a <a href="http://www.flickr.com/photos/mathaywarduk/2730902295/">Squirrel Monkey</a> which just didn&#8217;t seem to want to sit still!</p><p>But even more pleasing were the pictures of the <a href="http://www.flickr.com/photos/mathaywarduk/2730907965/">Burrowing Owl</a> and <a href="http://www.flickr.com/photos/mathaywarduk/2730947437/">Eagle Owl</a>.</p><!-- Start of Flickr Badge -->
<script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157606533199426&amp;context=in%2Fset-72157606533199426%2F"></script>
<!-- End of Flickr Badge -->
<br />]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2008/08/cotswold-wildlife-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A weekend in Dublin</title>
		<link>http://www.mathayward.com/blog/index.php/2008/08/a-weekend-in-dublin/</link>
		<comments>http://www.mathayward.com/blog/index.php/2008/08/a-weekend-in-dublin/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 15:59:14 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Travel Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=140</guid>
		<description><![CDATA[I've just got back from Dublin where I spent last weekend.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just got back from Dublin where I spent last weekend.  Not being a fan of stout I was very lucky to find a pub that served something other than Guinness, I nice pint of <a href="http://www.bass.com/">Bass</a>, very tasty.</p><p>We managed to visit the Guinness Storehouse, Dublin Castle, Christchurch Cathedral in the weekend as well as the pubs of Temple Bar which I found much more interesting.  Here are a few shots I took in Ireland&#8217;s capital.</p>
<!-- Start of Flickr Badge --><br /><script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157607625177900&amp;context=in%2Fset-72157607625177900%2F"></script><br /><!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2008/08/a-weekend-in-dublin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday in the Algarve</title>
		<link>http://www.mathayward.com/blog/index.php/2008/07/holiday-in-the-algarve-2/</link>
		<comments>http://www.mathayward.com/blog/index.php/2008/07/holiday-in-the-algarve-2/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 21:19:42 +0000</pubDate>
		<dc:creator>mathayward</dc:creator>
				<category><![CDATA[Travel Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/?p=146</guid>
		<description><![CDATA[Being invited to Portugal by the girlfriends parents when you haven&#8217;t met them yet can be quite daunting, but the prospect of a bit of sunshine helped me to say yes.  I managed to meet them before going which, thankfully, put my mind to rest.We stayed in a villa outside Portim&#227;o, which luckily had [...]]]></description>
			<content:encoded><![CDATA[<p>Being invited to Portugal by the girlfriends parents when you haven&#8217;t met them yet can be quite daunting, but the prospect of a bit of sunshine helped me to say yes.  I managed to meet them before going which, thankfully, put my mind to rest.</p><p>We stayed in a villa outside <a href="http://www.google.co.uk/url?sa=t&#038;source=web&#038;ct=res&#038;cd=4&#038;url=http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FPortim%25C3%25A3o&#038;ei=ZmL3SKuGM5vUQIL7gN8O&#038;usg=AFQjCNEzciSj3d8b0aOayfBQDclvOsve6Q&#038;sig2=pIwEyzujM84UI7KRdepqcA">Portim&atilde;o</a>, which luckily had a pool, because the 36&deg;C temperatures were often unbearable.  Unfortunately with the villa being in the middle of nowhere, opportunities to whip out my trusty Canon were few and far between, but I managed a few, including quite an impressive one of the <a href="http://www.flickr.com/photos/mathaywarduk/2692335442/">villa&#8217;s chimney</a>!</p><!-- Start of Flickr Badge -->
<script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157606484997619&amp;context=in%2Fset-72157606484997619%2F"></script>
<!-- End of Flickr Badge -->
<br />]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2008/07/holiday-in-the-algarve-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A tartan spring</title>
		<link>http://www.mathayward.com/blog/index.php/2008/04/a-tartan-spring/</link>
		<comments>http://www.mathayward.com/blog/index.php/2008/04/a-tartan-spring/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 16:02:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Travel Photography]]></category>

		<guid isPermaLink="false">http://www.mathayward.com/blog/index.php/2008/04/a-tartan-spring/</guid>
		<description><![CDATA[The Highlands of Scotland is perhaps the most breathtaking place I have ever visited.With wilderness around ever corner, beautiful old buildings and horned beasts, plenty of photo opportunities arouse.We stayed in an old Lock Keepers cottage on the Caledonian Canal, which left us within easy reach of Loch Ness, Inverness, Ben Nevis, Fort Augustus and [...]]]></description>
			<content:encoded><![CDATA[<p>The Highlands of Scotland is perhaps the most breathtaking place I have ever visited.</p><p>With wilderness around ever corner, beautiful old buildings and horned beasts, plenty of photo opportunities arouse.</p><p>We stayed in an old <a href="http://www.wildernesscottages.co.uk/cottagePage.asp?cottageId=142">Lock Keepers cottage</a> on the <a href="http://en.wikipedia.org/wiki/Caledonian_canal">Caledonian Canal</a>, which left us within easy reach of Loch Ness, Inverness, Ben Nevis, Fort Augustus and Fort William.</p><p>On the way home I managed to snap some pictures at Fort George before the weather changed and we were caught in a spring snowstorm, which left the poor baby lambs feeling a bit nippy!</p><!-- Start of Flickr Badge -->
<script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=5&amp;display=random&amp;size=s&amp;layout=h&amp;source=user_set&amp;user=10783873%40N07&amp;set=72157606485023593&amp;context=in%2Fset-72157606485023593%2F"></script>
<!-- End of Flickr Badge -->]]></content:encoded>
			<wfw:commentRss>http://www.mathayward.com/blog/index.php/2008/04/a-tartan-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
