<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jonny Haynes</title>
	
	<link>http://www.jonnyhaynes.com</link>
	<description>Standards compliant CSS &amp; XHTML web design, graphic design and photography by Jonny Haynes.</description>
	<lastBuildDate>Wed, 14 Oct 2009 19:57:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/jonnyhaynes-feed" type="application/rss+xml" /><feedburner:emailServiceId>jonnyhaynes-feed</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Photo restoration</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/YvYJVXyhW-I/</link>
		<comments>http://www.jonnyhaynes.com/2009/10/photo-restoration/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 19:56:58 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Photo]]></category>
		<category><![CDATA[Restoration]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=460</guid>
		<description><![CDATA[Some of you will have seen my tweets over the weekend about me restoring a photo for my Nannan.
It&#8217;s a very old photo, dating back some 50 years and shows her, her mother and her mother-in-law on my Nannan&#8217;s wedding day.

The photo took me ages to restore, but was totally worth it to see the [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you will have seen my tweets over the weekend about me restoring a photo for my Nannan.</p>
<p>It&#8217;s a very old photo, dating back some 50 years and shows her, her mother and her mother-in-law on my Nannan&#8217;s wedding day.</p>
<p><span id="more-460"></span></p>
<p>The photo took me ages to restore, but was totally worth it to see the look on my Nannan&#8217;s face, when I presented it to her on her birthday.</p>
<p>Priceless!</p>
<p>The photo and the original are below.</p>
<h4>Original</h4>
<p><img class="aligncenter size-full wp-image-462" title="Original photo" src="http://www.jonnyhaynes.com/wp-content/uploads/2009/10/scan00031.jpg" alt="Original photo" width="410" /></p>
<h4>Restored photo</h4>
<p><img style="display: block; margin-left: auto; margin-right: auto; border: 0px initial initial;" title="Restored photo" src="http://www.jonnyhaynes.com/wp-content/uploads/2009/10/nannan-wedding.jpg" alt="Restored photo" width="410" /></p>
<p>Not a bad result, even if I do say so myself. :-D</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/YvYJVXyhW-I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/10/photo-restoration/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/10/photo-restoration/</feedburner:origLink></item>
		<item>
		<title>RGBA transparency and IE6</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/ajqGkTpsKFY/</link>
		<comments>http://www.jonnyhaynes.com/2009/10/rgba-transparency-and-ie6/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 08:45:08 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Text]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[RGBA]]></category>
		<category><![CDATA[Transparency]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=454</guid>
		<description><![CDATA[I&#8217;ve been playing around with CSS3 a lot lately and as always, IE6 is a major pain in the ass!
I was using the new RGBA property and noticed that IE totally ignores it. The colour displayed this way is non-existent.

The fix
So I began experimenting.
I noticed that, when the standard RGB or Hexidecimal value is placed [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with CSS3 a lot lately and as always, IE6 is a major pain in the ass!</p>
<p>I was using the new RGBA property and noticed that IE totally ignores it. The colour displayed this way is non-existent.</p>
<p><span id="more-454"></span></p>
<h4>The fix</h4>
<p>So I began experimenting.</p>
<p>I noticed that, when the standard RGB or Hexidecimal value is placed in the CSS as well, IE uses that value to display the colour.</p>
<p>But depending on the stacking order, depends how more standards compliant browsers display the colour.</p>
<p>If the RGBA value is first and the RGB value second.</p>
<p>e.g.<br />
<code>background: rgba(255, 255, 255, 0.5);<br />
 background: rgb(255, 255, 255);</code></p>
<p>All browsers display the RGB colour.</p>
<p><em>However.</em></p>
<p>If the RGBA value is second.</p>
<p>e.g.<br />
<code>background: rgb(255, 255, 255);<br />
background: rgba(255, 255, 255, 0.5);</code></p>
<p>Safari/Chrome &amp; Firefox will display the RGBA colour whilst IE displays the RGB colour.</p>
<p>That&#8217;s a nice neat little fix. Hope you find it useful.</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/ajqGkTpsKFY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/10/rgba-transparency-and-ie6/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/10/rgba-transparency-and-ie6/</feedburner:origLink></item>
		<item>
		<title>@font-face, the time is now!</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/7nggKNbyKlw/</link>
		<comments>http://www.jonnyhaynes.com/2009/10/font-face-the-time-is-now/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:00:33 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[@font-face]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Magic]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=450</guid>
		<description><![CDATA[Want to use awesome fonts on your website? Fed up of mastering Cufon, sIFR et al? Don&#8217;t want to pay for services like Typekit?
Then look no further.
The time is now to start using the magical @font-face.

Font Squirrel
On the Font Squirrel website, you have access to around 100 &#8216;font kits&#8216;. The kits include everything you need [...]]]></description>
			<content:encoded><![CDATA[<p>Want to use awesome fonts on your website? Fed up of mastering Cufon, sIFR et al? Don&#8217;t want to pay for services like Typekit?</p>
<p>Then look no further.</p>
<p>The time is now to start using the magical <em>@font-face</em>.</p>
<p><span id="more-450"></span></p>
<h4>Font Squirrel</h4>
<p>On the <a href="http://www.fontsquirrel.com">Font Squirrel</a> website, you have access to around 100 &#8216;<em>font kits</em>&#8216;. The kits include everything you need to use the beautiful fonts on your website.</p>
<p>There&#8217;s the .TTF and the ever elusive .EOT.</p>
<p><em>For those that don&#8217;t know, the .EOT file is needed for IE. Microsoft have implemented the @font-face declaration in every browser since and including IE6. .EOT is a proprietary format belonging to Microsoft.</em></p>
<p>The kit even include the license that you can upload to your server, to stop any arguments about the usage of the font.</p>
<h4>@font-face</h4>
<p>This is great, web designers everywhere can rejoice, they&#8217;ve been waiting for this moment for years.</p>
<p>There&#8217;s now a viable way to use @font-face and <a href="http://www.fontsquirrel.com">Font Squirrel</a> has an ever growing collection of fonts available, all totally free, with the correct license.</p>
<p>What more could you ask for?</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/7nggKNbyKlw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/10/font-face-the-time-is-now/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/10/font-face-the-time-is-now/</feedburner:origLink></item>
		<item>
		<title>Stop that changing I.P. address</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/m6nK0NHCXCc/</link>
		<comments>http://www.jonnyhaynes.com/2009/09/stop-that-changing-i-p-address/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 09:49:54 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Apple Mac]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[I.P. Address]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=448</guid>
		<description><![CDATA[Just a quick one today, pointed out by @crayons.
I use the built in Sites feature on my Mac for internal development purposes. Something I&#8217;ve noticed is that the I.P. address I need to access keeps changing. It was really starting to get annoying.

When I mentioned it to @crayons, he pointed out that I can change [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick one today, pointed out by <a href="http://twitter.com/crayonz">@crayons</a>.</p>
<p>I use the built in Sites feature on my Mac for internal development purposes. Something I&#8217;ve noticed is that the I.P. address I need to access keeps changing. It was really starting to get annoying.</p>
<p><span id="more-448"></span></p>
<p>When I mentioned it to @crayons, he pointed out that I can change the options on my network settings from &#8216;<em>Using DHCP</em>&#8216; to &#8216;<em>Using DHCP with manual address</em>&#8216;.</p>
<p>Now before you do that, copy down the I.P. address and then all you&#8217;ve got to do is just paste it into the relevant text box.</p>
<p>Simples!</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/m6nK0NHCXCc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/09/stop-that-changing-i-p-address/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/09/stop-that-changing-i-p-address/</feedburner:origLink></item>
		<item>
		<title>The end is nigh IE6</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/bPONgm6uqAo/</link>
		<comments>http://www.jonnyhaynes.com/2009/09/the-end-is-nigh-ie6/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 10:25:48 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Text]]></category>
		<category><![CDATA[Chrome Frame]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE6]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=441</guid>
		<description><![CDATA[I was recently introduced to an article by Charles Miller. (Cheers @jamesjefferies)
In it he explains the benefits of Google Chrome Frame.

Google Chrome Frame
Google Chrome Frame is an early-stage open source plug-in that seamlessly brings Google Chrome&#8217;s open web technologies and speedy JavaScript engine to Internet Explorer. With Google Chrome Frame, you can:

Start using open web [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently introduced to an <a href="http://fishbowl.pastiche.org/2009/09/23/google_you_clever_bastards/">article</a> by Charles Miller. (Cheers <a href="http://twitter.com/jamesjefferies">@jamesjefferies</a>)</p>
<p>In it he explains the benefits of <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a>.</p>
<p><span id="more-441"></span></p>
<h4>Google Chrome Frame</h4>
<blockquote><p>Google Chrome Frame is an early-stage open source plug-in that seamlessly brings Google Chrome&#8217;s open web technologies and speedy JavaScript engine to Internet Explorer. With Google Chrome Frame, you can:</p>
<ul>
<li>Start using open web technologies &#8211; like the HTML5 <code>canvas</code> tag &#8211; right away, even technologies that aren&#8217;t yet supported in Internet Explorer 6, 7, or 8.</li>
<li>Take advantage of JavaScript performance improvements to make your apps faster and more responsive.</li>
</ul>
</blockquote>
<p>Basically for most web pages, all you have to do is add a single tag to your pages and detect whether your users have installed Google Chrome Frame.</p>
<ul>
<li>If Google Chrome Frame is not installed, you can direct your users to an installation page.</li>
<li>If Google Chrome Frame is installed, it detects the tag you added and works automatically.</li>
</ul>
<p>And that&#8217;s it.</p>
<p>No trickery like <a href="http://ie6update.com/">IE6 Update</a>, which, incidentally, I think is a great way to get users to update their browser, even if it is unethical.</p>
<p>Not only will your users not have to upgrade their browser, which for many large corporate organisations, could cost millions of pounds upgrading turn-of-the-century Intranets written to work in, and only in, Internet Explorer 6.</p>
<p>Users can benefit from open source, up and coming software, and see the web at it&#8217;s best!</p>
<p>What do you think?</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/bPONgm6uqAo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/09/the-end-is-nigh-ie6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/09/the-end-is-nigh-ie6/</feedburner:origLink></item>
		<item>
		<title>Sorry</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/lCeFn_4mau0/</link>
		<comments>http://www.jonnyhaynes.com/2009/09/sorry/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 10:58:38 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Text]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Site news]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=438</guid>
		<description><![CDATA[This is the first post in a long while, and I have perfectly good reasons for this.

A new job
I&#8217;ve just started a new job, working for Ebuyer.com, one of the largest Internet resellers of brand name computer technology and consumer electronics products based in Howden in the North of the UK.
I&#8217;m hoping this move will [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first post in a long while, and I have perfectly good reasons for this.</p>
<p><span id="more-438"></span></p>
<h4>A new job</h4>
<p>I&#8217;ve just started a new job, working for <a href="http://www.ebuyer.com">Ebuyer.com</a>, one of the largest Internet resellers of brand name computer technology and consumer electronics products based in Howden in the North of the UK.</p>
<p>I&#8217;m hoping this move will allow me to grow my potential and learn loads of new skills. I&#8217;ve been there a couple of months already and I&#8217;m really enjoying my time there. Everybody is a great laugh.</p>
<p>I really enjoyed my time at TechnoPhobia and I&#8217;m really grateful for the opportunity they provided me as a young fledgling designer.</p>
<h4 style="font-size: 1em;">A new band</h4>
<p>Those of you that know me a little bit more, will know that I&#8217;ve joined a new band, <a href="http://www.myspace.com/curryquiche">Curry Quiche</a>. They&#8217;re an alternative rock band.</p>
<p>It started out as me doing a favour for my mate when their bass player left them in the shit, but I quite enjoyed my time with the band, so decided to join permanently.</p>
<p>I&#8217;m also in the process of developing their <a href="http://www.curryquiche.com">website</a>, check it out. Steve&#8217;s done some great work on the illustration. Remember though, it&#8217;s work in progress.</p>
<h4 style="font-size: 1em;">A new website</h4>
<p>When I launched this in february of this year, I was never quite happy with it. There&#8217;s still a few niggles and some unfinished bits &#8230; so I&#8217;ve decided to scrap it and start again. I&#8217;ve been working on my new site for a while now, and hopefully it&#8217;ll be live before the end of the month.</p>
<p>I&#8217;ll also have some great pieces to add to my portfolio that I&#8217;ve been working on. But you&#8217;ll have to wait to see them all.</p>
<p><em>Thanks for sticking around, hopefully now I&#8217;ll be able to share some more of my wisdom with you and get back to posting regularly. </em></p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/lCeFn_4mau0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/09/sorry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/09/sorry/</feedburner:origLink></item>
		<item>
		<title>Novl Cuisine</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/0yGiHyPFbcY/</link>
		<comments>http://www.jonnyhaynes.com/2009/08/novl-cuisine/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:08:30 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Challenge]]></category>
		<category><![CDATA[Novl Cuisine]]></category>
		<category><![CDATA[Poster]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=434</guid>
		<description><![CDATA[Over at Novl Cuisine a couple of friends of mine are trying complete the ridiculous task of designing a poster, every day, for a year.
To give them a helping hand, every now and then they ask someone t step in as a guest poster and I was thrilled to be one of them.

So here&#8217;s my [...]]]></description>
			<content:encoded><![CDATA[<p>Over at <a href="http://novlcuisine.com/">Novl Cuisine</a> a couple of friends of mine are trying complete the ridiculous task of designing a poster, every day, for a year.</p>
<p>To give them a helping hand, every now and then they ask someone t step in as a guest poster and I was thrilled to be one of them.</p>
<p><span id="more-434"></span></p>
<p>So here&#8217;s my entry for 31st July.</p>
<p><a href="http://novlcuisine.com/005_mrha_gp/"><img src="http://www.jonnyhaynes.com/wp-content/uploads/2009/08/005_MrHa_GP.jpg" alt="Political Correctness" width="410" height="581" /></a></p>
<p>I thought I&#8217;d have a go at illustrator, it&#8217;s a tool I don&#8217;t use very often and I&#8217;m pleased with the result.</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/0yGiHyPFbcY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/08/novl-cuisine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/08/novl-cuisine/</feedburner:origLink></item>
		<item>
		<title>Adblock Plus warning</title>
		<link>http://feedproxy.google.com/~r/jonnyhaynes-feed/~3/B-5NOm2sOVc/</link>
		<comments>http://www.jonnyhaynes.com/2009/06/adblock-plus-warning/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 07:29:23 +0000</pubDate>
		<dc:creator>Jonny Haynes</dc:creator>
				<category><![CDATA[Text]]></category>
		<category><![CDATA[Adblock]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Warning]]></category>

		<guid isPermaLink="false">http://www.jonnyhaynes.com/?p=429</guid>
		<description><![CDATA[This was quite frustrating, until we figured it out.
Whilst developing a site, I noticed that the main column on the index page had suddenly disappeared. It was working fine earlier and I couldn&#8217;t figure out what had happened.

Background
The site is a recruitment site, and the index page has job adverts on it.
So, after some time, [...]]]></description>
			<content:encoded><![CDATA[<p>This was quite frustrating, until we figured it out.</p>
<p>Whilst developing a site, I noticed that the main column on the index page had suddenly disappeared. It was working fine earlier and I couldn&#8217;t figure out what had happened.</p>
<p><span id="more-429"></span></p>
<h4>Background</h4>
<p>The site is a recruitment site, and the index page has job adverts on it.</p>
<p>So, after some time, it eventually dawned on me.</p>
<p>It was working fine on one instance of Firefox, without Adblock installed. But on an instance <em>with</em> Adblock installed it wasn&#8217;t working. Strange.</p>
<h4>The problem</h4>
<p>So I looked at the generated code. On the copy of Firefox with Adblock installed, there was an inline style added to the containing div, set to <em>display: none;</em>.</p>
<p>Although a little annoying, I was impressed with how Adblock worked. It had obviously scanned the page for anything with a class or ID of &#8216;advert&#8217; and added the inline style. This was confirmed once I&#8217;d disabled the plugin.</p>
<h4 style="font-size: 1em;">The fix</h4>
<p>This was easy to fix, I just changed the div&#8217;s ID to something else, and changed the appropriate styles. Ta da! Easily fixed.</p>
<p>So, be careful what you name your divs as this may have an effect on how a user views your site.</p>
<img src="http://feeds.feedburner.com/~r/jonnyhaynes-feed/~4/B-5NOm2sOVc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jonnyhaynes.com/2009/06/adblock-plus-warning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jonnyhaynes.com/2009/06/adblock-plus-warning/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.518 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-11 12:42:01 -->
