<?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"
	>

<channel>
	<title>Alasdair Mackenzie</title>
	<atom:link href="http://alasdairmackenzie.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://alasdairmackenzie.com</link>
	<description>Stuff I like: Technology, games, athletics and stuff</description>
	<pubDate>Fri, 11 Apr 2008 04:04:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Bad Google: Can anyone at Google write XHTML?</title>
		<link>http://alasdairmackenzie.com/index.php/2008/04/10/bad-google-can-anyone-in-google-write-xhtml/</link>
		<comments>http://alasdairmackenzie.com/index.php/2008/04/10/bad-google-can-anyone-in-google-write-xhtml/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 20:38:57 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2008/04/10/bad-google-can-anyone-in-google-write-xhtml/</guid>
		<description><![CDATA[
What is Google? Well, Google is a publicly run company that was founded in 1998. It also happens to provided almost 4 billion search results per month. Its used by around 55% of people in the United States and is the number one search engine. Oh, and it turns over about $4billion (although thats bound [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://alasdairmackenzie.com/wp-content/uploads/2008/04/clip-image002.jpg"><img src="http://alasdairmackenzie.com/wp-content/uploads/2008/04/clip-image002-thumb.jpg" class="alignright" alt="clip_image002" height="127" /></a></p>
<p>What is Google? Well, Google is a publicly run company that was founded in 1998. It also happens to provided almost 4 billion search results per month. Its used by around 55% of people in the United States and is the number one search engine. Oh, and it turns over about $4billion (although thats bound to be much more now).</p>
<p>So why cant it get a simple web page right? Google.com has 50 validation errors when queried with W3C Html Validation Service. Now, I know that some of these errors are a consequence of other problems, but my argument still stands. Surely one of the 17,000 has suggested that they fix it?</p>
<p>Whats wrong with the biggest Internet companys web site&#8230;</p>
<p><strong>The Head</strong></p>
<ol>
<li>No doctype  <a href="http://www.w3.org/QA/Tips/Doctype">Dont forget to  add a doctype</a> is the title of a page in the <a href="http://www.w3.org/">W3C guidelines</a>, so why has Google forgotton? Maybe to shove the  browser into Quirks Mode? Hmmm&#8230; More <a href="http://www.quirksmode.org/css/quirksmode.html">about quirks mode.</a> Oh,  and if your Google, heres <a href="http://validator.w3.org/docs/help.html#faq-doctype">how to define a  doctype</a>.</li>
<li>The style tags have no attribute type. &lt;style&gt;&lt;/style&gt; should be  &lt;style type=text/css&gt;&lt;/style&gt; Maybe this is a doctype issue?</li>
<li>The script tags have no attribute type &lt;script&gt;&lt;/script&gt; should  be &lt;script type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;.</li>
<li>We can let Google away with no Meta data (I suppose).</li>
<li>A language would be nice. Lets just presume that Google has its own made up  one.</li>
</ol>
<p><strong>The Body</strong></p>
<ol>
<li>The main tag is insane. &lt;body bgcolor=#ffffff text=#000000 link=#0000cc  vlink=#551a8b alink=#ff0000 onload=&#8221;sf();if(document.images){new  Image().src=&#8217;/images/nav_logo3.png&#8217;}&#8221; topmargin=3 marginheight=3&gt; The old  school page properties are a) old and b) pointless as there is a style element  defined in the head.  And there are no quotes around these, which is a parsers  worst nightmare!! Some of them, like TOPMARGIN, are not even real attributes.  Blaming it all on the incorrect doctype is simply not good enough here.</li>
<li>The JavaScript is executable, but not pretty.  There is a delimiter (;)  after the first function but not inside the if statement.</li>
<li>Span tags are used for the menu system. A much better idea would be an  unordered list. &lt;ul&gt;&lt;li  style=selected&gt;Web&lt;/li&gt;&#8230;&lt;li&gt;Mail&lt;/li&gt;&lt;/ul&gt;</li>
<li>There are more attributes on the page without quote around them</li>
<li>More out of date tags like &lt;center&gt;</li>
<li>Tables to mark up the search. This is one of my pet hates in web design.  Tables are for tabular data!!</li>
<li>&lt;br&gt; is outdated in itself -a big company like Google should be using  semantic HTML &lt;br/&gt;, but that isnt even the issue here. There are  multiple occurrences of two line breaks (&lt;br/&gt;&lt;br/&gt;) being next to  each other - these should be on their own.</li>
<li>There are also a load of horrible mistakes that mean <a href="http://validator.w3.org/check?uri=www.google.com&amp;charset=%28detect+automatically%29&amp;doctype=Inline&amp;group=0">Google  won&#8217;t validate</a>. An example would be using &amp; instead of &amp; or not  closing a &lt;a&gt; tag.</li>
</ol>
<p>I remember reading an article in .net about accessibility and Google. It was  an interview with one of Googles disability gurus (who also happened to be  visually impaired). He was adamant that Google take care to make sure screen  readers can read Googles pages. What now strikes me as odd is that he used the  phrase modern screen readers. Googles landing page isnt even modern! Granted  Google alt all their images, but that doesnt excuse the long &lt;span&gt; menu  which doesnt provide any way of skipping past it. The screen reader on my  machine, WebbIE (part of Thunder), reads out every single item in the span tag  by default. Not nice.</p>
<p>The only thing that I could <strong>maybe</strong> forgive Googles lacklustre homepage  is that it renders perfectly even if CSS is disabled. That means that it can  cater for audiences far and wide running 20,000 year old machines. Okay, I  exaggerate, but why not have an alternative to the main page that handles older  browsers.</p>
<p>Dont get me wrong Im no accessibility or web design guru, but common sense  should tell Google to update the home page.</p>
<p>I might be making a bold statement by saying that Google is the be all and  end all of the internet, so I wont. I will say, however, that it would be nice  to see one of the most visited pages on earth validate.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F04%2F10%2Fbad-google-can-anyone-in-google-write-xhtml%2F&amp;title=Bad+Google%3A+Can+anyone+at+Google+write+XHTML%3F" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2008/04/10/bad-google-can-anyone-in-google-write-xhtml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Acid 3 - Results are um.. interesting&#8230;</title>
		<link>http://alasdairmackenzie.com/index.php/2008/03/11/acid-3-results-are-interesting/</link>
		<comments>http://alasdairmackenzie.com/index.php/2008/03/11/acid-3-results-are-interesting/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 13:00:42 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2008/03/11/acid-3-results-are-interesting/</guid>
		<description><![CDATA[What is Acid? a set of browser tests defined by the Web Standards Project (originally created by Todd Fahrner) 

Acid 1 (1998) was designed to test CSS v1
Acid 2 (2005) was designed to test HTML and CSS v2 (results)
Acid 3 (2008) was designed to test much more&#8230; (in fact see the official&#160; web standard website [...]]]></description>
			<content:encoded><![CDATA[<p>What is Acid? a set of browser tests defined by the <a href="http://www.webstandards.org">Web Standards Project</a> (originally created by Todd Fahrner) </p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Acid1">Acid 1</a> (1998) was designed to test CSS v1
<li><a href="http://en.wikipedia.org/wiki/Acid2">Acid 2</a> (2005) was designed to test HTML and CSS v2 (<a href="http://www.howtocreate.co.uk/acid/">results</a>)
<li><a href="http://en.wikipedia.org/wiki/Acid3">Acid 3</a> (2008) was designed to test much more&#8230; (in fact <a href="http://www.webstandards.org/action/acid3/">see the official&nbsp; web standard website for details</a> and take the test)</li>
</ul>
<p> Now&#8230; Check the <a href="http://www.anomalousanomaly.com/2008/03/06/acid-3/">latest Acid 3 results</a>.</p>
<p>Internet Explorer (IE) 8 is does very badly, IE 7 does a wee bit better and IE 5.5 does even better!!!! (and let&#8217;s not mention IE 6)</p>
<p>Draw conclusions for yourself. :-p</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F03%2F11%2Facid-3-results-are-interesting%2F&amp;title=Acid+3+-+Results+are+um..+interesting%26%238230%3B" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2008/03/11/acid-3-results-are-interesting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft, Internet Explorer 8 and Super Standards</title>
		<link>http://alasdairmackenzie.com/index.php/2008/02/20/microsoft-internet-explorer-8-and-super-standards/</link>
		<comments>http://alasdairmackenzie.com/index.php/2008/02/20/microsoft-internet-explorer-8-and-super-standards/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 01:15:07 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[Internet Explorer]]></category>

		<category><![CDATA[Standards Mode]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2008/02/20/microsoft-internet-explorer-8-and-super-standards/</guid>
		<description><![CDATA[It&#8217;s about time Microsoft started letting some hints drop about the next version of the worlds most popular browser.&#160; Recently (19 December 2007), Microsoft has started to reveal the features&#8230;

Passes Acid 2 test - YES 
Backwards Compatibility - YES 
Contains &#8220;Super Standards&#8221; support - Hmmmm YES 

I&#8217;m not too sure how I feel about this. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s about time Microsoft started letting some hints drop about the next version of the worlds most popular browser.&nbsp; Recently (19 December 2007), Microsoft has started to <a href="http://blogs.msdn.com/ie/archive/2008/01/21/compatibility-and-ie8.aspx">reveal the features</a>&#8230;
<ul>
<li>Passes Acid 2 test - YES </li>
<li>Backwards Compatibility - YES </li>
<li>Contains &#8220;<a href="http://blogs.msdn.com/ie/archive/2008/01/21/compatibility-and-ie8.aspx">Super Standards</a>&#8221; support - Hmmmm YES </li>
</ul>
<p>I&#8217;m not too sure how I feel about this. I&#8217;ve read a lot of articles that praise the team&#8217;s efforts and think that it&#8217;s a good idea, but I’m not too sure about specifying a browser for the simple reason that it closes the market for other browsers (more on that point once I’ve explained the new mode). </p>
<p>In this post I&#8217;m going to tell you what it is, how it&#8217;s been done and what I think.</p>
<p><span id="more-72"></span></p>
<h3>So, what&#8217;s it like then?</h3>
<ul>
<li>&#8220;Quirks mode&#8221; remains the same, and compatible with current content. </li>
<li>&#8220;Standards mode&#8221; remains the same as IE7, and compatible with current content. </li>
<li>If you (the page developer) really want the best standards support IE8 can give, you can get it by inserting a simple &lt;meta&gt; element. </li>
</ul>
<h3>And how is it done?</h3>
<p>Via a meta tag:</p>
<p class="highlight">meta http-equiv=&#8221;X-UA-Compatible&#8221; content=&#8221;IE=8;FF=3;OtherUA=4&#8243;</p>
<p>If I&#8217;m being honest then I wouldn&#8217;t have done it that way.</p>
<p>&#8230;back to my point about closing the market for other browsers. Okay, I know what you’re thinking now, “OtherUA=4” means that no one browser will be left out, right? Wrong. Why bother with the IE=8, FF=3 then?</p>
<ul>
<li>Read more about previous attempts to save the world (<a href="http://en.wikipedia.org/wiki/Quirks_mode">quirks mode</a>).</li>
<li>This is a <a href="http://arstechnica.com/articles/paedia/ie8-super-standards-mode.ars">great article on super standards mode</a>.</li>
<li>And an <a href="http://alistapart.com/articles/beyonddoctype">article about the specifications from Aaron Gustafson</a>, who was a member of the WaSP-Microsoft task force (who devised the scheme). </li>
</ul>
<p class="highlight">One quick note on Aaron Gustafson&#8217;s article, he says,
<p class="highlight">&#8220;Having the ability to lock your site to a particular browser version is fantastic for ensuring that your site will be usable well into the future&#8221;
<p class="highlight">What about how far back browsers will have to support?&nbsp; In 10 years time there might be documents floating about with &#8220;otherUA=4&#8243;.&nbsp; What if it&#8217;s on version 999,999 and it hits this page?</p>
<p>  <small>And if I&#8217;m being entirely honesty I&#8217;m a bit confused about how this is all going to work in the real world.  Please comment if you think I&#8217;m wrong :-p</small></p>
]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2008/02/20/microsoft-internet-explorer-8-and-super-standards/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Power of WordPress Themes</title>
		<link>http://alasdairmackenzie.com/index.php/2008/01/28/the-power-of-wordpress-templates/</link>
		<comments>http://alasdairmackenzie.com/index.php/2008/01/28/the-power-of-wordpress-templates/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 06:38:56 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[stylesheet]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2008/01/28/the-power-of-wordpress-templates/</guid>
		<description><![CDATA[Okay, I admit that WordPress template file structure annoys me, but it is pretty powerful (once you mess around with it a bit).>If you toggle between the stylesheets I have associated with this site then you can see a few other designs I use.
In Firefox: View-&#62;Page Style-&#62; Select one.
I know they aren�t drastically different in [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Okay, I admit that WordPress template file structure annoys me, but it is pretty powerful (once you mess around with it a bit).>If you toggle between the stylesheets I have associated with this site then you can see a few other designs I use.</p>
<p class="highlight">In Firefox: View-&gt;Page Style-&gt; Select one.</p>
<p class="MsoNormal">I know they aren�t drastically different in structure, but I happen to like the way my page is laid out. So&#8230; :-p</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2008%2F01%2F28%2Fthe-power-of-wordpress-templates%2F&amp;title=The+Power+of+WordPress+Themes" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2008/01/28/the-power-of-wordpress-templates/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Internet Explorer 8</title>
		<link>http://alasdairmackenzie.com/index.php/2007/12/27/internet-explorer-8/</link>
		<comments>http://alasdairmackenzie.com/index.php/2007/12/27/internet-explorer-8/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 00:46:24 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2007/12/27/internet-explorer-8/</guid>
		<description><![CDATA[Nick White, a project manager for Windows Vista, has posted some good news about the next release of Internet Explorer 8 - it renders the Acid 2 test perfectly. Welcome news!
There will also be no more hasLayout, which is a good shout as it was originally designed to be an internal data structure and was [...]]]></description>
			<content:encoded><![CDATA[<p>Nick White, a project manager for Windows Vista, has posted some <a href="http://windowsvistablog.com/blogs/windowsvista/archive/2007/12/19/ie8-achieves-web-standards-milestone.aspx">good news about the next release of Internet Explorer 8</a> - it renders the <a href="http://www.webstandards.org/action/acid2/">Acid 2</a> test perfectly. Welcome news!</p>
<p>There will also be no more <a href="http://msdn2.microsoft.com/en-us/library/bb250481.aspx">hasLayout</a>, which is a good shout as it was originally designed to be an internal data structure and was never meant to be exposed.</p>
<p>More in the <a href="http://blogs.msdn.com/ie/default.aspx">Internet explorer 8 team blog</a>.</p>
<p>Good Times. : )</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F27%2Finternet-explorer-8%2F&amp;title=Internet+Explorer+8" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2007/12/27/internet-explorer-8/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Hacks</title>
		<link>http://alasdairmackenzie.com/index.php/2007/12/14/css-hacks/</link>
		<comments>http://alasdairmackenzie.com/index.php/2007/12/14/css-hacks/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 21:44:45 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2007/12/14/css-hacks/</guid>
		<description><![CDATA[&#8220;But the fact remains that every browser out there has its quirks, and while problems should generally be dealt with by amending your design on a global basis, sometimes that&#8217;s not possible or practical&#8221; - .net mag.
I couldn&#8217;t disagree more. The fact is that browser standards will never improve if the attitude of web professionals [...]]]></description>
			<content:encoded><![CDATA[<p class="highlight"><em>&#8220;But the fact remains that every browser out there has its quirks, and while problems should generally be dealt with by amending your design on a global basis, sometimes that&#8217;s not possible or practical&#8221; - .net mag.</em></p>
<hr />I couldn&#8217;t disagree more. The fact is that <strong>browser standards will never improve</strong> if the attitude of web professionals is that hacks are <em>&#8216;designed to cater for browser shortcomings&#8217;</em>.</p>
<p>All that happens is that the web site becomes complex (with loads of horrible mark-up) and the vendor has to keep the rendering bug in order to make sure they don&#8217;t break old web sites.</p>
<p>There is a really good argument <strong>against</strong> <a href="http://www.digital-web.com/articles/keep_css_simple/">using hacks on Digital Web by Peter-Paul Koch</a>.  He also writes and maintains the brilliant <a href="http://www.quirksmode.org/">Quirksmode.org</a> web site.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F12%2F14%2Fcss-hacks%2F&amp;title=CSS+Hacks" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2007/12/14/css-hacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google off / Google on&#8230;</title>
		<link>http://alasdairmackenzie.com/index.php/2007/11/24/google-off-google-on/</link>
		<comments>http://alasdairmackenzie.com/index.php/2007/11/24/google-off-google-on/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 13:35:17 +0000</pubDate>
		<dc:creator>Ally</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2007/11/24/google-off-google-on/</guid>
		<description><![CDATA[If this looks familiar then it’s a shame.

[if IE]> <link rel="stylesheet" type="text/css" href="iehacks.css" /> <![endif]-->.

For years Microsoft provided, knowingly and unwittingly (usually because of parsing errors in Internet Explorer), the ability to ‘hack’ away at a web page to make it look right in Internet explorer. 

In my opinion it is wrong to change the way the web works to suit a particular vendor, but it’s the norm and, admittedly, it does help solve a lot of problems (and I have used it).

Anyway, enough said about Microsoft, Google’s at it now!]]></description>
			<content:encoded><![CDATA[<p><a href="http://alasdairmackenzie.com/wp-content/uploads/2007/11/image3.png"><img class="alignright" height="102" alt="image" src="http://alasdairmackenzie.com/wp-content/uploads/2007/11/image3-thumb.png" width="140"></a>If this looks familiar then it&#8217;s a shame.</p>
<p class="highlight"><em><code>[if IE]&gt; &lt;link rel="stylesheet" type="text/css" href="iehacks.css" /&gt; &lt;![endif]--&gt;</code></em></p>
<p>For years Microsoft provided, knowingly and unwittingly (usually because of <a href="http://blogs.msdn.com/ie/archive/2005/10/12/480242.aspx">parsing errors/ conditional comments</a>), the ability to &#8216;hack&#8217; away at a web page to make it look right in Internet explorer.</p>
<p>In my opinion it is wrong to change the way the web works to suit a particular vendor, but it&#8217;s the norm and, admittedly, it does help solve a lot of problems (and I have used it).</p>
<p>Anyway, enough said about Microsoft, Google&#8217;s at it now! **[see note] </p>
<p><span id="more-56"></span></p>
<p class="hightlight"><em>&lt;!&#8211;googleoff: index&#8211;&gt;&lt;a href=&#8221;/help/accessibility.html&#8221; tabindex=&#8221;1&#8243; id=&#8221;accesslink&#8221;&gt;Accessibility&lt;/a&gt;&lt;!&#8211;googleon: index&#8211;&gt;</em></p>
<p>&#8220;The googleoff/googleon tags disable the indexing of a part of a web page. The result is that those pages do not appear in search results when users search for the tagged word or phrase. For example, some developers use googleoff/googleon tags to comment out a navigation bar in static HTML pages.&#8221; [<a href="http://www.geekzilla.co.uk/ViewC8614968-56ED-4729-9C12-F01677DAC412.htm">Paul Haymen</a>]</p>
<p>I&#8217;m all for meta tags to do this:</p>
<p class="hightlight"><code><em>&lt;meta name=&#8221;robots&#8221; content=&#8221;noindex, nofollow&#8221; /&gt;</em></code></p>
<p>But, as I said, it&#8217;s my feeling that custom code / tags in HTML documents should be avoided, but I suppose getting higher in Google outweighs the disadvantages for 99.9% of people (and just in case you&#8217;re wondering where that accessibility example came from: <a href="http://www.adobe.com/">adobe</a>.com, which has a PageRank 10 by the way - and, at least, a $30,000 <a href="http://www.google.com/enterprise/gsa/">GSA</a> investment).</p>
<p>I&#8217;ve also no idea when Google introduced this. The earliest mention I can find is January 2007.</p>
<p>You would think organizations would have learned not to tinker, after all theW3C is there for a reason.</p>
<p>If you want to find out more about it then <a href="http://www.geekzilla.co.uk/ViewC8614968-56ED-4729-9C12-F01677DAC412.htm">Paul Hayman has written a concise tutorial about GoogleOff</a>.</p>
<p style="background: #eeeeee 0% 50%; color: #444444; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial">**Note: I should point out that this is not actually implemented in the Google Web Search. It&#8217;s a function of <a href="http://www.google.com/enterprise/gsa/">Google Appliance</a>, which is for enterprise search (which is besides the point).</p>
]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2007/11/24/google-off-google-on/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Acid 2 - Screenshots and Information</title>
		<link>http://alasdairmackenzie.com/index.php/2007/10/09/acid-2-screenshots-and-information/</link>
		<comments>http://alasdairmackenzie.com/index.php/2007/10/09/acid-2-screenshots-and-information/#comments</comments>
		<pubDate>Tue, 09 Oct 2007 16:20:26 +0000</pubDate>
		<dc:creator>Alasdair</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/index.php/2007/10/09/acid-2-screenshots-and-information/</guid>
		<description><![CDATA[I&#8217;ve been thinking about comparing all the major browsers in regards to the Acid 2 test, but I found this brilliant page on How to create that goes into a lot of detail about the acid 2 test and includes screenshots too.










]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">I&#8217;ve been thinking about comparing all the major browsers in regards to the Acid 2 test, but I found this brilliant page on How to create that goes into <a href="http://www.howtocreate.co.uk/acid/">a lot of detail about the acid 2 test</a> and includes screenshots too.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F10%2F09%2Facid-2-screenshots-and-information%2F&amp;title=Acid+2+-+Screenshots+and+Information" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2007/10/09/acid-2-screenshots-and-information/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS 3 - The Long Road to a Brighter Place</title>
		<link>http://alasdairmackenzie.com/index.php/2007/09/20/css-3-the-long-road-to-a-brighter-place/</link>
		<comments>http://alasdairmackenzie.com/index.php/2007/09/20/css-3-the-long-road-to-a-brighter-place/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 19:19:47 +0000</pubDate>
		<dc:creator>Ally</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/?p=20</guid>
		<description><![CDATA[ In the past few years CSS has really come though and to not use it is frowned upon by peers, but the problem is that it isn&#8217;t implemented the same inside every browser.  Some browsers render complex CSS perfectly and some perform pretty badly.  The Acid 2 test is a pretty good [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://upload.wikimedia.org/wikipedia/commons/b/bb/Acid2_reference.png" class="alignright" height="100" width="100" /> In the past few years CSS has really come though and to not use it is frowned upon by peers, but the problem is that it isn&#8217;t implemented the same inside every browser.  Some browsers render complex CSS perfectly and some perform pretty badly.  The <a href="http://www.webstandards.org/action/acid2/">Acid 2</a> test is a pretty good indicator of how good the browser is in this department. You can see some comparisons on the <a href="http://en.wikipedia.org/wiki/Acid2">Acid 2 test Wikipedia</a> page.</p>
<p>Over six years in the making <a href="http://www.w3.org/TR/2001/WD-css3-multicol-20010118/">CSS 3</a> will help spice things up and make life easier, especially for multi-column based sites (like newspapers), but I can&#8217;t help but feel that it&#8217;s going to be at least 5 years before every browser is compatible&#8230; and by that I mean we&#8217;ll be waiting on IE.</p>
<p>Note: There is a nice web site that previews CSS 3 called <a href="http://www.css3.info/preview/">CSS info</a>.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-3-the-long-road-to-a-brighter-place%2F&amp;title=CSS+3+-+The+Long+Road+to+a+Brighter+Place" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2007/09/20/css-3-the-long-road-to-a-brighter-place/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS - Consistency</title>
		<link>http://alasdairmackenzie.com/index.php/2007/09/20/css-consistency/</link>
		<comments>http://alasdairmackenzie.com/index.php/2007/09/20/css-consistency/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 19:03:20 +0000</pubDate>
		<dc:creator>Ally</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alasdairmackenzie.com/?p=54</guid>
		<description><![CDATA[Every product is different; some drinks are fizzier than others.&#160; This is because there is no right answer and&#160; it comes down to what the manufacturer thinks is best.&#160; And browsers are no exception.
Cascading Style Sheets (CSS) simplifies web development in an arbitrary number of ways by reducing complexity and improving semantic structure, but the [...]]]></description>
			<content:encoded><![CDATA[<p>Every product is different; some drinks are fizzier than others.&nbsp; This is because there is no right answer and&nbsp; it comes down to what the manufacturer thinks is best.&nbsp; And browsers are no exception.</p>
<p>Cascading Style Sheets (CSS) simplifies web development in an arbitrary number of ways by reducing complexity and improving semantic structure, but the one thing that really!, really! bugs me about CSS is how some browsers have different and sometimes strange defaults.</p>
<p>This can cause problems down the line for developers, so the best way to get round this is to zero the defaults.&nbsp; <a href="http://developer.yahoo.com/yui/reset/">Yahoo developer</a> have a very good solution for this called the &#8220;reset.css&#8221;</p>
<div class="highlight" style="font-size: x-small; line-height: 80%">
<p>/*</p>
<p>Copyright (c) 2007, Yahoo! Inc. All rights reserved.</p>
<p>Code licensed under the BSD License:</p>
<p><a href="http://developer.yahoo.net/yui/license.txt">http://developer.yahoo.net/yui/license.txt</a></p>
<p>version: 2.3.1</p>
<p>*/</p>
<p>body {color:#000;background:#FFF;}</p>
<p>body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}</p>
<p>table{border-collapse:collapse;border-spacing:0;}</p>
<p>fieldset,img{border:0;}</p>
<p>address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}</p>
<p>li {list-style:none;}</p>
<p>caption,th {text-align:left;}</p>
<p>h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}</p>
<p>q:before,q:after{content:&#8221;;}</p>
<p>abbr,acronym {border:0;font-variant:normal;}</p>
<p>sup,sub {line-height:-1px;vertical-align: text-top;}</p>
<p>sub {vertical-align:text-bottom;}</p>
<p>input, textarea, select{font-family:inherit;font-size:inherit;font-weight:inherit;}</p>
<p>&nbsp;</p>
</div>
<p>It would be nice to have someway of saying to the browser &#8220;Hey! I want to set everything to 0&#8243;.&nbsp; It worries me that Microsoft might realize this and we&#8217;ll end up with some obscure Internet Explorer conditional comment to do it&#8230;</p>
<div class="highlight" style="font-size: x-small; line-height: 80%">&lt;!&#8211;[if IE]&gt;&lt;style&gt;document{ resetall:0;}&lt;/style&gt;&lt;![endif]&#8211;&gt;</div>
<p>*shudders* Standards are becoming more and more important and I&#8217;m pretty sure Microsoft won&#8217;t walk down that kind of road again, but hey! you never know.</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://del.icio.us/favicon.ico" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Falasdairmackenzie.com%2Findex.php%2F2007%2F09%2F20%2Fcss-consistency%2F&amp;title=CSS+-+Consistency" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://alasdairmackenzie.com/index.php/2007/09/20/css-consistency/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
