<?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>Nick O&#039;Sullivan &#124; Web Design and Development</title>
	<atom:link href="http://nick-osullivan.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://nick-osullivan.co.uk</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 20 Feb 2012 13:05:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Web development &amp; design blogs</title>
		<link>http://nick-osullivan.co.uk/blogs-you-should-follow/</link>
		<comments>http://nick-osullivan.co.uk/blogs-you-should-follow/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 01:18:57 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=293</guid>
		<description><![CDATA[Here are some of the web development &#038; design blogs I follow.]]></description>
			<content:encoded><![CDATA[<p>Here are some of the web development &#038; design blogs I follow. If web development &#038; design is your thing, you should too!</p>
<p><strong>Smashing Magazine</strong><br />
<a href="http://www.smashingmagazine.com/" target="_blank"><img src="http://nick-osullivan.co.uk/wp-content/uploads/2011/06/smash.jpg" alt="" title="smash" width="550" height="200" class="alignnone size-full wp-image-296" /></a></p>
<p><strong>Nettuts+</strong><br />
<a href="http://net.tutsplus.com/" target="_blank"><img src="http://nick-osullivan.co.uk/wp-content/uploads/2011/06/nettuts.jpg" alt="" title="nettuts" width="550" height="200" class="alignnone size-full wp-image-300" /></a></p>
<p><strong>CSS Globe</strong><br />
<a href="http://cssglobe.com/" target="_blank"><img src="http://nick-osullivan.co.uk/wp-content/uploads/2011/06/cssglobe.jpg" alt="" title="cssglobe" width="550" height="200" class="alignnone size-full wp-image-304" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/blogs-you-should-follow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Steve Edmonds Drum Tutor</title>
		<link>http://nick-osullivan.co.uk/steve-edmonds-drum-tutor-5/</link>
		<comments>http://nick-osullivan.co.uk/steve-edmonds-drum-tutor-5/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 00:04:31 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=233</guid>
		<description><![CDATA[Website for drum tutor Steve Edmonds. It's purpose is to bring in custom for Steve's drum kit lessons. The website has got great feedback from users and really helps to bring in business for Steve. ]]></description>
			<content:encoded><![CDATA[<p>This site was made for a UK drum tutor based in West Sussex. Steve gave me a few ideas of what he wanted and we had a good talk over what was going to be included. I then jumped into designing the site for him and he loved the first draft which is what we went with (seen above, click to enlarge or visit the site).</p>
<p>Shortly after this, I produced the fully functional website. Steve was delighted with it and was very happy with the speed at which it took to deliver the final product.</p>
<p>The website has got great feedback from users and really helps to bring in business for Steve.</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> HTML<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> CSS<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Javascript</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Graphic Design</p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/steve-edmonds-drum-tutor-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross browser CSS gradients</title>
		<link>http://nick-osullivan.co.uk/cross-browser-css-gradients/</link>
		<comments>http://nick-osullivan.co.uk/cross-browser-css-gradients/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 22:51:53 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=128</guid>
		<description><![CDATA[Get cross browser CSS gradients in 4 lines. Even works in IE 5.5+.]]></description>
			<content:encoded><![CDATA[<p>Most people know that it&#8217;s possible to create gradient backgrounds now with CSS3 in firefox, chrome safari. </p>
<p>With the following  4 lines of CSS you can get the same gradient in all CSS3 compatible browsers and IE 5.5+.</p>
<pre class="brush: css;">background-image:-moz-linear-gradient(top, #ededed, #fff);/* FF3.6 */
background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0, #ededed),color-stop(1, #ffffff)); /* Saf4+, Chrome */
filter:  progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', EndColorStr='#ffffff'); /* IE 5.5,IE6,IE7 */
-ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorStr='#ededed', EndColorStr='#ffffff')&quot;; /* IE8 */</pre>
<p>Check out the <a href="http://nick-osullivan.co.uk/demos/cssgradient.html" target="_blank"><strong>DEMO</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/cross-browser-css-gradients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BCP 350th Anniversary</title>
		<link>http://nick-osullivan.co.uk/bcp-350th-anniversary-2/</link>
		<comments>http://nick-osullivan.co.uk/bcp-350th-anniversary-2/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 23:20:06 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=250</guid>
		<description><![CDATA[Site to celebrate the 350th anniversary of The Book of Common Prayer. This was a very enjoyable project to work on and I got great feedback from the client and users.]]></description>
			<content:encoded><![CDATA[<p>This site was made for The Prayer Book Society who wanted a site to celebrate the 350th anniversary of The Book of Common Prayer. This was a very enjoyable project to work on and I got great feedback from the client and users.</p>
<p>Take a look at the site by clicking &#8216;Launch Project&#8217; on the right.</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> HTML<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> CSS<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Javascript<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> PHP</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Mailing List<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Maintenance </p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/bcp-350th-anniversary-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free icon sets</title>
		<link>http://nick-osullivan.co.uk/free-icon-sets/</link>
		<comments>http://nick-osullivan.co.uk/free-icon-sets/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 00:40:24 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=262</guid>
		<description><![CDATA[Check these free icon sets out that I use regularly. ]]></description>
			<content:encoded><![CDATA[<p>Below are a few icon sets I use regularly. Enjoy.</p>
<p><strong>FAMFAMFAM Silk Icons</strong><br />
“Silk” is a smooth, free icon set, containing over 700 16-by-16 pixel icons in strokably-soft PNG format. Very useful. <a href="http://www.famfamfam.com/lab/icons/silk/" target="_blank"><img class="alignnone size-full wp-image-281" title="silk" src="http://nick-osullivan.co.uk/wp-content/uploads/2010/04/silk.jpg" alt="" width="550" height="200" /></a></p>
<p><strong>Socialize Icon Set</strong><br />
A nice, fresh looking set of Social Icons.<br />
<a href="http://dryicons.com/free-icons/preview/socialize-icons-set/" target="_blank"><img src="http://nick-osullivan.co.uk/wp-content/uploads/2010/04/socialize.jpg" alt="" title="socialize" width="550" height="200" class="alignnone size-full wp-image-287" /></a></p>
<p><strong>Function Icon Set</strong><br />
128 icons for use in any project, nice variety here.<br />
<a href="http://wefunction.com/2008/07/function-free-icon-set/" target="_blank"><img src="http://nick-osullivan.co.uk/wp-content/uploads/2010/04/function.jpg" alt="" title="function" width="550" height="200" class="alignnone size-full wp-image-290" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/free-icon-sets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subsplash Logo</title>
		<link>http://nick-osullivan.co.uk/subsplash-logo/</link>
		<comments>http://nick-osullivan.co.uk/subsplash-logo/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 15:23:51 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Logos]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=54</guid>
		<description><![CDATA[Logo design for Brighton's dubstep promotion company Subsplash.]]></description>
			<content:encoded><![CDATA[<p>Logo design for Brighton&#8217;s dubstep promotion company Subsplash.</p>
<p>This logo has been used in flyers, posters, stickers, banners and merchandise.</p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/subsplash-logo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>TB&#124;PR Website</title>
		<link>http://nick-osullivan.co.uk/trevor-butler-pr/</link>
		<comments>http://nick-osullivan.co.uk/trevor-butler-pr/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:55:32 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=19</guid>
		<description><![CDATA[Website designed and developed for PR company TB&#124;PR.]]></description>
			<content:encoded><![CDATA[<p>This is a website developed for TB|PR.</p>
<p>The website was designed and developed from scratch, keeping simplicity and ease of use in mind.</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> HTML<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> CSS<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Javascript<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> PHP</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Graphic Design</p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/trevor-butler-pr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subsplash Website</title>
		<link>http://nick-osullivan.co.uk/subsplash/</link>
		<comments>http://nick-osullivan.co.uk/subsplash/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:14:58 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=6</guid>
		<description><![CDATA[Fully featured website for dubstep promotion company Subsplash.]]></description>
			<content:encoded><![CDATA[<p>This site was made for the dubstep promotion company Subsplash. They are based in Brighton and I&#8217;ve helped them beyond the creation of this website from scratch. My other work for them included banners, leaflets, stickers and other print. I also designed their logo which can be viewed <a href="http://nick-osullivan.co.uk/subsplash-logo/">here</a>.</p>
<p>The website has got great feedback from users. It&#8217;s updated frequently and used by a great number of people, the client was very happy.</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> HTML<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> CSS<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Javascript<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> PHP</p>
<p><img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> eCommerce<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Server setup<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Maintenance<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Graphic Design<br />
<img src="http://nick-osullivan.co.uk/tick.png" alt="- " /> Internet Radio</p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/subsplash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://nick-osullivan.co.uk/hello-world/</link>
		<comments>http://nick-osullivan.co.uk/hello-world/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:03:11 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Site Announcements]]></category>

		<guid isPermaLink="false">http://nick-osullivan.co.uk/?p=1</guid>
		<description><![CDATA[... And so it begins!]]></description>
			<content:encoded><![CDATA[<p>&#8230; And so it begins!</p>
<p>Along with the new site I will be starting to blog here, so watch this space!</p>
]]></content:encoded>
			<wfw:commentRss>http://nick-osullivan.co.uk/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

