<?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>Michael Doyle &#124; Blog &#187; internet explorer</title>
	<atom:link href="http://michaeldoyle.eu/blog/tag/internet-explorer/feed" rel="self" type="application/rss+xml" />
	<link>http://michaeldoyle.eu/blog</link>
	<description>Well, I&#039;m not sure whether to call this a blog or a sideblog. Either way, it&#039;s my personal, never-ending, post-it note, so that when I learn something interesting, it&#039;ll find its way here.</description>
	<lastBuildDate>Mon, 30 Nov 2009 01:44:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS &#8211; CSS Reset</title>
		<link>http://michaeldoyle.eu/blog/web/css-reset</link>
		<comments>http://michaeldoyle.eu/blog/web/css-reset#comments</comments>
		<pubDate>Thu, 30 Apr 2009 16:59:07 +0000</pubDate>
		<dc:creator>Michael Doyle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[broswer issues]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css reset]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[reset]]></category>

		<guid isPermaLink="false">http://michaeldoyle.eu/blog/?p=70</guid>
		<description><![CDATA[There are many hacks to get past cross-browser compatibility problems. I've run into way too many of them, even though I regularly check sites in both IE and FF. One of the reasons for the problems is that some browsers add padding and margin sizes to certain elements. To remove this Yahoo has a utility [...]


Related posts:<ol><li><a href='http://michaeldoyle.eu/blog/web/web-design-typography' rel='bookmark' title='Permanent Link: Web Design &#8211; Typography'>Web Design &#8211; Typography</a></li>
<li><a href='http://michaeldoyle.eu/blog/web/css-improving-typography' rel='bookmark' title='Permanent Link: CSS &#8211; Improving Typography'>CSS &#8211; Improving Typography</a></li>
<li><a href='http://michaeldoyle.eu/blog/web/design-web-page-headers' rel='bookmark' title='Permanent Link: Design &#8211; Web Page Headers'>Design &#8211; Web Page Headers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are many hacks to get past cross-browser compatibility problems. I've run into way too many of them, even though I regularly check sites in both IE and FF. One of the reasons for the problems is that some browsers add padding and margin sizes to certain elements. To remove this Yahoo has a utility called <a href="http://developer.yahoo.com/yui/reset/" target="_blank">Reset CSS</a>. IT removes all added borders, margins, everything to level the playing field so you can precisely define how you want elements defined without anything added by a browser.</p>
<p>UPDATE: After reading some of the comments and advise on resetting, a lot of people have highly recommended <a href="http://meyerweb.com/eric/tools/css/reset/" target="_blank">Eric Meyer's CSS Reset stylesheet</a>.</p>


<p>Related posts:<ol><li><a href='http://michaeldoyle.eu/blog/web/web-design-typography' rel='bookmark' title='Permanent Link: Web Design &#8211; Typography'>Web Design &#8211; Typography</a></li>
<li><a href='http://michaeldoyle.eu/blog/web/css-improving-typography' rel='bookmark' title='Permanent Link: CSS &#8211; Improving Typography'>CSS &#8211; Improving Typography</a></li>
<li><a href='http://michaeldoyle.eu/blog/web/design-web-page-headers' rel='bookmark' title='Permanent Link: Design &#8211; Web Page Headers'>Design &#8211; Web Page Headers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://michaeldoyle.eu/blog/web/css-reset/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash &#8211; Transparent Backgrounds</title>
		<link>http://michaeldoyle.eu/blog/web/flash/transparent-flash-backgrounds</link>
		<comments>http://michaeldoyle.eu/blog/web/flash/transparent-flash-backgrounds#comments</comments>
		<pubDate>Tue, 28 Apr 2009 05:45:08 +0000</pubDate>
		<dc:creator>Michael Doyle</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[transparency]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://michaeldoyle.eu/blog/?p=35</guid>
		<description><![CDATA[Trying to finish my Graphic design project tonight and discovered how to make a swf with a transparent background. HTML code is:
Add these parameters to the "param" tag:
param name=&#34;wmode&#34; value=&#34;transparent&#34;
Add this parameter to the embed tag:
wmode=&#34;transparent&#34;
So the full code I used to embed a swf file called "brain.swf" is:
&#60;object width=&#34;216&#34; height=&#34;144&#34; data=&#34;brain.swf&#34; type=&#34;application/x-shockwave-flash&#34;&#62;&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34; [...]


Related posts:<ol><li><a href='http://michaeldoyle.eu/blog/web/flash/flash-cheat-sheet' rel='bookmark' title='Permanent Link: Flash &#8211; Cheat Sheet'>Flash &#8211; Cheat Sheet</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Trying to finish my Graphic design project tonight and discovered how to make a swf with a transparent background. HTML code is:</p>
<p>Add these parameters to the "param" tag:</p>
<pre>param name=&quot;wmode&quot; value=&quot;transparent&quot;</pre>
<p>Add this parameter to the embed tag:</p>
<pre>wmode=&quot;transparent&quot;</pre>
<p>So the full code I used to embed a swf file called "brain.swf" is:</p>
<pre>&lt;object width=&quot;216&quot; height=&quot;144&quot; data=&quot;brain.swf&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;param name=&quot;src&quot; value=&quot;brain.swf&quot; /&gt;&lt;/object&gt;</pre>
<p>This works in Firefox 3 and IE 7, haven't tested it out on any other browsers yet. Flash 6 or higher is needed.</p>


<p>Related posts:<ol><li><a href='http://michaeldoyle.eu/blog/web/flash/flash-cheat-sheet' rel='bookmark' title='Permanent Link: Flash &#8211; Cheat Sheet'>Flash &#8211; Cheat Sheet</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://michaeldoyle.eu/blog/web/flash/transparent-flash-backgrounds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

