<?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>Idiot Banter &#187; CSS &amp; XHTML</title>
	<atom:link href="http://www.idiotbanter.com/category/blog/css-xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.idiotbanter.com</link>
	<description>Nonsense about Front-End Web Development, Music Business and Snowboarding by Matt McCausland</description>
	<lastBuildDate>Tue, 08 Nov 2011 00:36:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>jQuery Tic Tac Toe Updated</title>
		<link>http://www.idiotbanter.com/2011/11/07/jquery-tic-tac-toe-updated/</link>
		<comments>http://www.idiotbanter.com/2011/11/07/jquery-tic-tac-toe-updated/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 00:34:49 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/?p=737</guid>
		<description><![CDATA[It&#8217;s been a few years, but I finally got around to making my jQuery Tic Tac Toe smarter. Previously, the computer would just pick a random available square, not any more. The computer now figures out if you&#8217;re about to win, or if it&#8217;s about to win, and makes it&#8217;s decision accordingly. Good luck!]]></description>
			<content:encoded><![CDATA[<p><a href="/examples/jquery/tictactoe/TicTacToe.html" target="_blank"><img src="http://www.idiotbanter.com/wp-content/uploads/2008/11/picture-1.png" alt="" title="Tic Tac Toe" width="300" class="LeftImage" /></a> It&#8217;s been a few years, but I finally got around to making my <a href="/examples/jquery/tictactoe/TicTacToe.html" target="_blank">jQuery Tic Tac Toe</a> smarter. Previously, the computer would just pick a random available square, not any more. The computer now figures out if you&#8217;re about to win, or if it&#8217;s about to win, and makes it&#8217;s decision accordingly.</p>
<p><a href="/examples/jquery/tictactoe/TicTacToe.html" target="_blank">Good luck!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2011/11/07/jquery-tic-tac-toe-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100% Fluid Layouts &#8211; More Effort Than They&#8217;re Worth</title>
		<link>http://www.idiotbanter.com/2008/09/16/100-fluid-layouts-more-effort-than-theyre-worth/</link>
		<comments>http://www.idiotbanter.com/2008/09/16/100-fluid-layouts-more-effort-than-theyre-worth/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 02:43:11 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/?p=297</guid>
		<description><![CDATA[One of my main goals while re-designing this website was to create a 100% fluid layout. 100% fluid layouts aren&#8217;t something you see very often and I wanted the experience of having created one. I also figured that, as with doing anything for the first time, I might learn something new, and I did. I [...]]]></description>
			<content:encoded><![CDATA[<p>One of my main goals while re-designing this website was to create a 100% fluid layout. 100% fluid layouts aren&#8217;t something you see very often and I wanted the experience of having created one. I also figured that, as with doing anything for the first time, I might learn something new, and I did. I learned that 100% fluid layouts are more effort than they are worth.</p>
<h4>100% Fluid Layout?</h4>
<p>There are fixed width layouts (everything specified in pixels), and there are <a href="http://www.alistapart.com/articles/elastic/" title="A List Apart: Elastic Design">elastic layouts</a> (most things specified in pixels but one main fluid column), but I&#8217;m talking about a 100% fluid layout. All widths, margins and padding specified in percentages and all text sizes specified in em. The entire site grows and shrinks with the browser and when the text size is increased and decreased everything flows to accommodate. When calculating percentages I left as many decimal places as possible in the style sheet so that the browser could interpret it to the best of it&#8217;s ability. It&#8217;s 100% fluid and it&#8217;s beautiful, until you start using it.</p>
<h4>Paragraphs And Images</h4>
<p>The biggest problem with fluid layouts is that they&#8217;re fluid, when the browser is wide the site is wide and when the browser is squished the site is squished, obviously. But what happens when the browser is so wide an entire paragraph fits on one line? Suddenly your site is a little less usable than it used to be. Maybe width isn&#8217;t something that should be left up to the end user.</p>
<p>When my new design was done I started adding <a href="/category/portfolio" title="My Portfolio">my portfolio</a> which includes screen shots of some of the work I&#8217;ve done. The images are 700px wide and jpgs do not scale, so when the browser width drops below a certain amount of pixels the images start falling out of their containers. My only option was to add a min-width declaration to the entire site. The second I added min-width my site was no longer 100% fluid.</p>
<h4>Fluid Layouts In A Professional Setting</h4>
<p>I work for a media company as a Front-End Web Developer where I cut everything from full websites and micro sites to video players, email newsletters and everything in between. I have never even considered using anything but 100% fixed width layouts when cutting anything at work, it&#8217;s just not practical.</p>
<p>When I am asked to cut a Photoshop mock it is expected that I make it pixel for pixel exactly the same as the mock. I&#8217;ve never worked on a project that wasn&#8217;t short for time and when the clock is ticking it isn&#8217;t worth it to try to figure out &#8220;what happens when the user expands their browser window&#8221; or &#8220;what if the guy with the 30 inch monitor has his browser maximized?&#8221;. We go out of our way to make sure every site has a sweet scalable background image so the site doesn&#8217;t look broken in those situations but there are too many variables and too much hacking older browsers involved to make a 100% fluid layout a viable business option.</p>
<h4>I Did Learn A Few Things</h4>
<p>Despite all of my complaining I am still glad I got the chance to attempt a 100% fluid layout. The math involved to figure out the margins was the hardest math I&#8217;ve done in the past few years and it was a little exciting to see the entire site scale on a huge monitor at work. If the ability to scale images was easier than it currently is fluid layouts would be the norm but as it stands fixed width wins every time.</p>
<h4>Margins In EMs?</h4>
<p>I was under the impression that margins should be in percentages but doesn&#8217;t it make more sense for them to be in ems so they scale with the text? Someone please explain this to me.</p>
<h4>I&#8217;m Not The First</h4>
<p>A lot of people, all smarter than me, have already written about this subject. <a href="http://www.456bereastreet.com/archive/200504/about_fluid_and_fixed_width_layouts/" title="About fluid and fixed width layouts">See what they have to say</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/09/16/100-fluid-layouts-more-effort-than-theyre-worth/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This Website Has Been Re-Designed</title>
		<link>http://www.idiotbanter.com/2008/09/06/this-website-has-been-re-designed/</link>
		<comments>http://www.idiotbanter.com/2008/09/06/this-website-has-been-re-designed/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 22:40:12 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS & XHTML]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/?p=286</guid>
		<description><![CDATA[After 3 months of pixel-pushing Idiot Banter has a new look. The old theme was excellent and I still really like it but I felt the need to do some of the more creative things I&#8217;ve had in mind that I don&#8217;t get to use while working for other people. The new design is all [...]]]></description>
			<content:encoded><![CDATA[<p>After 3 months of pixel-pushing Idiot Banter has a new look.</p>
<p>The old theme was excellent and I still really like it but I felt the need to do some of the more creative things I&#8217;ve had in mind that I don&#8217;t get to use while working for other people. The new design is all about experimenting and pushing the boundaries of CSS and XHTML. Don&#8217;t get me wrong, none of this is ground breaking, but it&#8217;s my playground where I can use some more advanced code and not have to worry about selling ads. </p>
<p>The old theme was created when I was a Web Designer so it was very graphic heavy. I am now a Front-End Developer so I&#8217;ve focused on code more than graphics.</p>
<h4>Some Highlights</h4>
<dl>
<dt>100% fluid layout</dt>
<dd>I was determined to finally create a 100% fluid layout and I did, but I don&#8217;t really see the point. It&#8217;s never practical when doing client work and as soon as you add graphics or even images to your posts you have to start adding fixed width or min-widths otherwise things get messy. It turned out to be more work than it was worth and it broke my heart to have to add a min-width when I started adding photos to posts.</dd>
<dt>Dynamic Background Images</dt>
<dd>At An Event Apart in Boston earlier this year <a href="http://jasonsantamaria.com/" title="JasonSantaMaria.com">Jason Santa Maria</a> spoke about how <a href="http://www.scribblelive.com/Event/Good_Design_Aint_Easy_-_Jason_Santa_Maria_-_An_Event_Apart_Boston_2008" title="Good Design Ain't Easy Live Blog">design helps to reinforce the story</a>. He explained that his site allows for &#8220;art direction on the fly&#8221; to bring the web experience closer to the rich visual experience of print. His presentation got me thinking and, since I&#8217;m not anywhere near as amazing as Jason, the best I could do was dynamic background images. I add the background parameters to a custom field and use JavaScript to extract those parameters and change the body background. Each post will eventually have it&#8217;s own custom background, <a href="http://www.idiotbanter.com/2008/04/06/love-you-to-death-website/" title="Love You To Death on Idiot Banter">here&#8217;s an example</a>.</dd>
</dl>
<h4>So Here It Is</h4>
<p>Have a look around, there are still a few things I&#8217;m not 100% with (I struggle with type-setting) so like any other personal site, treat it as a work in progress. I&#8217;ve added my entire portfolio to WordPress (it was static HTML before) so there are a few kinks to be worked out there. I&#8217;m really excited to blog about snowboarding with high resolution snowboarding pictures as the background! I also plan on getting heavy into JavaScript this winter so that should lead to some cool (progressive) enhancements. I already have plans for some way to allow you to make the content semi-transparent to allow you to view the sweet background images. </p>
<p>Thanks for checking out my new theme, enjoy.</p>
<p>Also, let me know if you need any designs cut into perfect XHTML and CSS&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/09/06/this-website-has-been-re-designed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>No Frills Accessible Flyer</title>
		<link>http://www.idiotbanter.com/2008/07/18/no-frills-accessible-flyer/</link>
		<comments>http://www.idiotbanter.com/2008/07/18/no-frills-accessible-flyer/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 23:00:33 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/?p=133</guid>
		<description><![CDATA[The other day I came across this &#8220;accessible flyer&#8221; on the No Frills website. Upon first glance it seems pretty good, it&#8217;s basically just plain text which is way more accessible than the usual scanned images they use for their regular online flyer. If you look behind the scenes it doesn&#8217;t look so accessible to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.shopnofrills.ca/ontario/accessibleFlyer.aspx"><img src="/blog/wp-content/uploads/2008/07/nofrillsaccessibleflyer.jpg" alt="" title="no frills accessible flyer" width="300" height="233" class="LeftImage" /></a>The other day I came across this &#8220;<a href="http://www.shopnofrills.ca/ontario/accessibleFlyer.aspx" title="No Frills Accessible Flyer">accessible flyer</a>&#8221; on the No Frills website. Upon first glance it seems pretty good, it&#8217;s basically just plain text which is way more accessible than the usual scanned images they use for their regular online flyer. If you look behind the scenes it doesn&#8217;t look so accessible to me.</p>
<h4>Tables? iFrames?</h4>
<p>Here are a few reasons this accessible flyer is not as accessible as it could be:</p>
<ol>
<li>The links to get to the store nearest you don&#8217;t have title attributes. This isn&#8217;t a huge deal since the words you need are there as the linked text anyway but the title attribute is still an accessibility recommendation.</li>
<li>The entire flyer is in an iFrame. There&#8217;s no real reason I can see to do this except to prevent loading the header and footer each time or to make it impossible to permalink to expired deals. I wouldn&#8217;t have such a problem with the iFrame if it had a heading but as it is it just contains a table.</li>
<li>Tables! The entire accessible flyer is laid out in tables. There&#8217;s no reason for tables, it&#8217;s not tabular data, there&#8217;s no layout, it&#8217;s just headings and descriptions. It looks more like a definition list to me. The table doesn&#8217;t even have a summary.</li>
</ol>
<p>I think including an accessible flyer is a great idea but this is not the way to do it. For the extreme cases a screen reader (or search engine) is going to have a really hard time figuring out how to interpret that table if it can even get to it in the first place. Not to mention how much extra code was used to mark up that definition list as a table.</p>
<p>Accessible flyer &#8211; great idea, poor implementation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/07/18/no-frills-accessible-flyer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An Event Apart Boston 2008 Live Blogs</title>
		<link>http://www.idiotbanter.com/2008/06/25/an-event-apart-boston-2008-live-blogs/</link>
		<comments>http://www.idiotbanter.com/2008/06/25/an-event-apart-boston-2008-live-blogs/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 11:58:11 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/?p=124</guid>
		<description><![CDATA[For the past 2 days I&#8217;ve been in Boston at the An Event Apart conference. I kept a live blog of all of the presentations on the controversial upstart Scribble Live. The conference was great and I think there&#8217;s something for everyone in these live blogs. Take a look, I&#8217;ve marked my personal favourites with [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/blog/wp-content/uploads/2008/06/aneventapartlogo.png" alt="" title="An Event Apart Logo" width="146" height="198" class="LeftImage" />For the past 2 days I&#8217;ve been in Boston at the <a href="http://www.aneventapart.com" title="An Event Apart">An Event Apart</a> conference. I kept a live blog of all of the presentations on the controversial upstart <a href="http://www.scribblelive.com" title="Scribble Live">Scribble Live</a>.</p>
<p>The conference was great and I think there&#8217;s something for everyone in these live blogs. Take a look, I&#8217;ve marked my personal favourites with an asterisk:</p>
<div class="clear"></div>
<ul>
<li><a href="http://www.scribblelive.com/Event/Understanding_Web_Design_-_Jeffrey_Zeldman_-_An_Event_Apart" title="Understanding Web Design - Jeffrey Zeldman">Understanding Web Design &#8211; Jeffrey Zeldman</a></li>
<li><a href="http://www.scribblelive.com/Event/The_Lessons_of_CSS_Frameworks_-_Eric_Meyer_-_An_Event_Apart_Boston_2008" title="The Lessons of CSS Frameworks - Eric Meyer">The Lessons of CSS Frameworks &#8211; Eric Meyer</a></li>
<li><a href="http://www.scribblelive.com/Event/Good_Design_Aint_Easy_-_Jason_Santa_Maria_-_An_Event_Apart_Boston_2008" title="Good Design Ain't Easy - Jason Santa Maria">Good Design Ain&#8217;t Easy &#8211; Jason Santa Maria</a>*</li>
<li><a href="http://www.scribblelive.com/Event/Web_Application_Hierarchy_-_Luke_Wroblewski_-_An_Event_Apart_Boston_2008" title="Web Application Hierarchy - Luke Wroblewski">Web Application Hierarchy &#8211; Luke Wroblewski</a></li>
<li><a href="http://www.scribblelive.com/Event/Design_To_Scale_-_Doug_Bowman_-_An_Event_Apart_Boston_2008" title="Design To Scale - Doug Bowman">Design To Scale &#8211; Doug Bowman</a></li>
<li><a href="http://www.scribblelive.com/Event/When_Style_Is_The_Idea_-_Christopher_Fahey_-_An_Event_Apart_Boston_2008" title="When Style Is The Idea - Christopher Fahey">When Style Is The Idea &#8211; Christopher Fahey</a></li>
<li><a href="http://www.scribblelive.com/Event/The_Scent_of_a_Web_Page_Five_Types_of_Navigation_Pages_-_Jared_Spool_-_An_Event_Apart_Boston_2008" title="The Scent of a Web Page: Five Types of Navigation Pages - Jared Spool">The Scent of a Web Page: Five Types of Navigation Pages &#8211; Jared Spool</a>*</li>
<li><a href="http://www.scribblelive.com/Event/Debug__Reboot_-_Eric_Meyer_-_An_Event_Apart_Boston_2008" title="Debug / Reboot - Eric Meyer">Debug / Reboot &#8211; Eric Meyer</a>*</li>
<li><a href="http://www.scribblelive.com/Event/Comps_and_Code_Couples_Therapy_-_Ethan_Marcotte_-_An_Event_Apart_Boston_2008" title="Comps and Code: Couples’ Therapy - Ethan Marcotte">Comps and Code: Couples’ Therapy &#8211; Ethan Marcotte</a></li>
<li><a href="http://www.scribblelive.com/Event/Principles_of_Unobtrusive_JavaScript_-_Peter-Paul_Koch_-_An_Event_Apart_Boston_2008" title="Principles of Unobtrusive JavaScript - Peter-Paul Koch">Principles of Unobtrusive JavaScript &#8211; Peter-Paul Koch</a></li>
<li><a href="http://www.scribblelive.com/Event/Standards_in_the_Enterprise_-_Kimberly_Blessing_-_An_Event_Apart_Boston_2008" title="Standards in the Enterprise - Kimberly Blessing">Standards in the Enterprise &#8211; Kimberly Blessing</a></li>
<li><a href="http://www.scribblelive.com/Event/Designing_the_User_Experience_Curve_-_Andy_Budd_-_An_Event_Apart_Boston_2008" title="Designing the User Experience Curve - Andy Budd">Designing the User Experience Curve &#8211; Andy Budd</a>*</li>
<li><a href="http://www.scribblelive.com/Event/Designing_the_Next_Generation_of_Web_Apps_-_Jeff_Veen_-_An_Event_Apart_Boston_2008" title="Designing the Next Generation of Web Apps - Jeff Veen">Designing the Next Generation of Web Apps &#8211; Jeff Veen</a>*</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/06/25/an-event-apart-boston-2008-live-blogs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Stop Drop Downs&#8230; And Roll</title>
		<link>http://www.idiotbanter.com/2008/06/09/stop-drop-downs-and-roll/</link>
		<comments>http://www.idiotbanter.com/2008/06/09/stop-drop-downs-and-roll/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 01:47:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/?p=118</guid>
		<description><![CDATA[If any option in the main menu of your website drops down to reveal more options you&#8217;ve failed at usability 101 (according to me, and I&#8217;m all that matters.. according to me). The internet exists so people can get information quickly, when you take that statement into consideration you might come to the conclusion that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/blog/wp-content/uploads/2008/06/dropdown.jpg" alt="" width="300" height="300" class="LeftImage" />If any option in the main menu of your website drops down to reveal more options you&#8217;ve failed at usability 101 (according to me, and I&#8217;m all that matters.. according to me).</p>
<p>The internet exists so people can get information quickly, when you take that statement into consideration you might come to the conclusion that drop downs are a good idea, allow users to drill down right from the start. Not so fast, if you give people 20 options right away it&#8217;s gonna slow them down, a lot. Let&#8217;s use a band website as an example, when you show up looking for tour dates you don&#8217;t want to be met with a drop down with the options &#8220;upcoming tour dates, past tour dates, booking information, tour photos&#8221;, you just want tour dates. If you want past tour dates, that&#8217;s fine, have a sub menu containing the other sections inside the tour dates section. </p>
<p>Presenting every option available right from the start is never a good idea, make your main menu options very broad and just get the users inside your website. When you walk into a department store you want to go to a specific department and go from there, you don&#8217;t want 100 signs hanging from the ceiling saying &#8220;men&#8217;s underwear, hula hoops, cat food&#8221;, you&#8217;d have to read all 100 signs before acting rather than just getting into the department you want and going from there.</p>
<p>Don&#8217;t make people stand there at the front of the store reading signs for 5 minutes before buying underwear!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/06/09/stop-drop-downs-and-roll/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Efficient Use Of Transparent PNGs</title>
		<link>http://www.idiotbanter.com/2008/05/27/efficient-use-of-transparent-pngs/</link>
		<comments>http://www.idiotbanter.com/2008/05/27/efficient-use-of-transparent-pngs/#comments</comments>
		<pubDate>Tue, 27 May 2008 20:50:17 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/?p=116</guid>
		<description><![CDATA[You can do a lot with transparent PNGs but it&#8217;s not very often that I come across someone doing something useful with them. Sure you can make a scuba divers light get brighter as you scroll deeper (CSS Zen Garden) or make icons look sweet with a drop shadow on all types of different backgrounds [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/blog/wp-content/uploads/2008/05/eyeshadow_satin_med.png" alt="" width="261" height="225" class="LeftImage" />You can do a lot with transparent PNGs but it&#8217;s not very often that I come across someone doing something useful with them. Sure you can make a scuba divers light get brighter as you scroll deeper (CSS Zen Garden) or make icons look sweet with a drop shadow on all types of different backgrounds but that&#8217;s basic, almost useless stuff compared to what MAC cosmetics is doing with transparent PNGs on their site.</p>
<p><a href="http://www.nationalpost.com/news/canada/toronto/story.html?id=533425" title="Kat Foster">Kat</a> was trying to send her friend an image of a colour of eye shadow, but every time she sent the image it was grey instead of the colour of the eye shadow. She asked me &#8220;WTF?&#8221;. I checked it out, they&#8217;re using a solid background colour with a transparent PNG over top. Amazing.</p>
<p>Instead of having to generate thousands of images and load them individually, they have one image with a bunch of background colour hex codes stored in a database. It&#8217;s genius and it probably saves them a bunch of money.</p>
<p>Check it out by clicking on the link below and then checking out any of the thumbnails. You can also click on the thumbnails for a bigger version of what&#8217;s going on. They have to use some simple JavaScript to force the PNG transparency in IE6 but it&#8217;s well worth it.</p>
<p><a href="http://www.maccosmetics.com/templates/products/sp.tmpl?ngextredir=1&#038;CATEGORY_ID=CATEGORY15103&#038;PRODUCT_ID=PROD1503" title="MAC Cosmetics - Eye Shadow">MAC Cosmetics</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/05/27/efficient-use-of-transparent-pngs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New CTV Video Player</title>
		<link>http://www.idiotbanter.com/2008/04/04/new-ctv-video-player/</link>
		<comments>http://www.idiotbanter.com/2008/04/04/new-ctv-video-player/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 19:41:21 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/?p=112</guid>
		<description><![CDATA[The most recent roll out in the CTV beta broadband video player series is the CTV prime time broadband video player. You can watch 4 seasons of Degrassi: The Next Generation, 2 seasons of Whistler, or season 5 of Corner Gas (Mom &#038; Dad), but in my personal opinion the best part of the player [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://watch.ctv.ca" title="CTV Broadband Video Player"><img src="/blog/wp-content/uploads/2008/04/ctvplayer.jpg" alt="" title="CTV Broadband Video Player" width="300" height="257" class="LeftImage" /></a> The most recent roll out in the CTV beta broadband video player series is the <a href="http://watch.ctv.ca" title="CTV Broadband Video Player">CTV prime time broadband video player</a>. You can watch 4 seasons of <a href="http://watch.ctv.ca/degrassitng/" title="Degrassi: The Next Generation on CTV">Degrassi: The Next Generation</a>, 2 seasons of <a href="http://watch.ctv.ca/whistler" title="Whistler on CTV">Whistler</a>, or season 5 of <a href="http://watch.ctv.ca/corner-gas/" title="Corner Gas on CTV">Corner Gas</a> (Mom &#038; Dad), but in my personal opinion the best part of the player is <a href="http://watch.ctv.ca/themes/CTV/css/colour.aspx" title="CTV Broadband Player CSS">the CSS</a>&#8230; wow&#8230; breathtaking.</p>
<p>To be honest, I still can&#8217;t stop watching <a href="/blog/2008/01/27/the-new-comedy-network-video-player/" title="The New Comedy Network Video Player">the Comedy Network&#8217;s video player</a>. How can you go wrong with every single episode of South Park, Chappelle&#8217;s Show and Reno 911?!</p>
<div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/04/04/new-ctv-video-player/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Website: Devil Strip Rollers</title>
		<link>http://www.idiotbanter.com/2008/03/18/new-website-devil-strip-rollers/</link>
		<comments>http://www.idiotbanter.com/2008/03/18/new-website-devil-strip-rollers/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 13:11:13 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/2008/03/18/new-website-devil-strip-rollers/</guid>
		<description><![CDATA[The second of the two websites I&#8217;ve been working on as favours to friends has finally gone live. A devil strip is &#8220;The strip of concrete between the rails of street car tracks in urban centers.&#8221;, The Devil Strip Rollers are people who ride bikes in the city of Toronto. The website will be a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.devilstriprollers.com" title="Devil Strip Rollers"><img src="/blog/wp-content/uploads/2008/03/blogthumb.jpg" alt="" class="LeftImage" /></a>The second of the two websites I&#8217;ve been working on as favours to friends has finally gone live. A devil strip is &#8220;The strip of concrete between the rails of street car tracks in urban centers.&#8221;, <a href="http://www.devilstriprollers.com" title="Devil Strip Rollers">The Devil Strip Rollers</a> are people who ride bikes in the city of Toronto. The website will be a central place for all cycling related info, pictures, videos and events.</p>
<p>The site is a 100% custom WordPress skin created by me and based on the Photoshop files supplied by <a href="http://www.thereisnobunny.com" title="There Is No Bunny">Ryan</a>, the site&#8217;s owner. There are a bunch of plugins at work for the events, the Twitter feed, the Flickr feed and the YouTube feed. Thanks to some last minute help from <a href="http://fuzzz.gaulin.ca" title="Fuzzz">Andre</a> the Flickr plugin was fixed while I was on my way to Vermont for a snowboard trip, thanks Andre.</p>
<p>I learned a lot about WordPress while working on this site and I&#8217;m happy with how it has turned out so far. I know Ryan has some big plans and I&#8217;m excited to see how this site will grow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/03/18/new-website-devil-strip-rollers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website: Love You To Death</title>
		<link>http://www.idiotbanter.com/2008/03/10/new-website-love-you-to-death/</link>
		<comments>http://www.idiotbanter.com/2008/03/10/new-website-love-you-to-death/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 03:09:49 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[CSS & XHTML]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.idiotbanter.com/blog/2008/03/10/new-website-love-you-to-death/</guid>
		<description><![CDATA[I&#8217;ve been working evenings and weekends for the past couple of months making some websites as favours to friends. The first of those websites to officially go live is a website for the power pop band Love You To Death. Love You To Death needed a new site because they changed their name from The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.loveyoutodeath.com" title="Love You To Death"><img src="/blog/wp-content/uploads/2008/03/screenshot300.jpg" alt="" class="LeftImage" /></a>I&#8217;ve been working evenings and weekends for the past couple of months making some websites as favours to friends. The first of those websites to officially go live is a website for the power pop band Love You To Death. Love You To Death needed a new site because they changed their name from The Pettit Project and I know them because I used to play drums in The Pettit Project.</p>
<p>The new <a href="http://www.loveyoutodeath.com" title="Love You To Death">Love You To Death</a> website is a custom WordPress theme (made by me) with 2 plugins, <a href="http://www.gigpress.com" title="Gigpress">Gigpress</a> for tour dates and the <a href="http://tantannoodles.com/toolkit/photo-album/" title="Flickr Photo Album">Flickr Photo Album</a> plugin for photos. I did all of the HTML and CSS and I did a little bit of design (background images) based on the logo, I did not do the logo.</p>
<p>I&#8217;m pretty proud of how it has turned out so far. Looks like they need a new store now since they&#8217;re still using a static one I built years ago but that will have to wait until after we snowboard in Vermont next week.</p>
<p><a href="http://www.loveyoutodeath.com" title="Love You To Death">Go see the new Love You To Death website!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.idiotbanter.com/2008/03/10/new-website-love-you-to-death/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

