<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: CSS Trick: Target only IE with an if statement</title>
	<atom:link href="http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/feed/" rel="self" type="application/rss+xml" />
	<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 13 Mar 2010 16:52:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: The Importance of Web Standards &#124; DevWebPro</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-4862</link>
		<dc:creator>The Importance of Web Standards &#124; DevWebPro</dc:creator>
		<pubDate>Wed, 16 Dec 2009 19:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-4862</guid>
		<description>[...] comes to Internet Explorer though, you have to make exceptions some of the time. There are ways to target Internet Explorer using an if statement that can help you change some CSS to get your site to work right in different versions of [...]</description>
		<content:encoded><![CDATA[<p>[...] comes to Internet Explorer though, you have to make exceptions some of the time. There are ways to target Internet Explorer using an if statement that can help you change some CSS to get your site to work right in different versions of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alva</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-4386</link>
		<dc:creator>Alva</dc:creator>
		<pubDate>Fri, 13 Nov 2009 23:01:53 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-4386</guid>
		<description>Hi ... I found this site by mistake.  I was looking in Yahoo for Accounting software that I had already bought when I found your site, I have to say your site is pretty cool I just love the theme, its amazing!. I don&#039;t have the time at the moment to fully read your site but I bookmarked it and also will sign up for your RSS feed. I&#039;ll back in a day or two. thanks for a awesome site.</description>
		<content:encoded><![CDATA[<p>Hi &#8230; I found this site by mistake.  I was looking in Yahoo for Accounting software that I had already bought when I found your site, I have to say your site is pretty cool I just love the theme, its amazing!. I don&#8217;t have the time at the moment to fully read your site but I bookmarked it and also will sign up for your RSS feed. I&#8217;ll back in a day or two. thanks for a awesome site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-4175</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Tue, 29 Sep 2009 17:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-4175</guid>
		<description>ha ha ... random that i would google this info and see a link to your site. 

What about if not IE - well of to search to copy/paste that.</description>
		<content:encoded><![CDATA[<p>ha ha &#8230; random that i would google this info and see a link to your site. </p>
<p>What about if not IE &#8211; well of to search to copy/paste that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Mitchell</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-4085</link>
		<dc:creator>Sam Mitchell</dc:creator>
		<pubDate>Thu, 02 Jul 2009 15:24:31 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-4085</guid>
		<description>Look forward to reading more from you in the future. check out my site and let me know what you think, its got other freebies as well as phone tricks, hope you like :)</description>
		<content:encoded><![CDATA[<p>Look forward to reading more from you in the future. check out my site and let me know what you think, its got other freebies as well as phone tricks, hope you like <img src='http://dustinbrewer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Advnaced Scripting</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-2931</link>
		<dc:creator>Advnaced Scripting</dc:creator>
		<pubDate>Wed, 04 Feb 2009 22:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-2931</guid>
		<description>This was a GREAT help, thank you...

You can also (essentially) do the &quot;IF IE6 or IE5&quot; check in your CSS directly by using the &quot;!important&quot; declaration.  EG:

.myDiv {
  background-image:url(&quot;../images/bg.png&quot;) !important;
  background-image:none;
  background-repeat:no-repeat;
  filter:none !important;
  filter:progid:DXImageTransform.Microsoft.AlphaImageLoader
    (src=&quot;../images/bg.png&quot;,sizingMethod=&quot;scale&quot;);
}

In this instance, FF, O9, Safari and IE7 (all of which render PNGs correctly) use the statements that have been declared &quot;!important&quot;, while IE5 and IE6 use the newer declarations of the same elements (ie: &quot;background-image:none&quot; and &quot;filter:progid:DXIma...&quot;

I have just finished a site (see the link) that implements this method A LOT and it works beautifully.</description>
		<content:encoded><![CDATA[<p>This was a GREAT help, thank you&#8230;</p>
<p>You can also (essentially) do the &#8220;IF IE6 or IE5&#8243; check in your CSS directly by using the &#8220;!important&#8221; declaration.  EG:</p>
<p>.myDiv {<br />
  background-image:url(&#8220;../images/bg.png&#8221;) !important;<br />
  background-image:none;<br />
  background-repeat:no-repeat;<br />
  filter:none !important;<br />
  filter:progid:DXImageTransform.Microsoft.AlphaImageLoader<br />
    (src=&#8221;../images/bg.png&#8221;,sizingMethod=&#8221;scale&#8221;);<br />
}</p>
<p>In this instance, FF, O9, Safari and IE7 (all of which render PNGs correctly) use the statements that have been declared &#8220;!important&#8221;, while IE5 and IE6 use the newer declarations of the same elements (ie: &#8220;background-image:none&#8221; and &#8220;filter:progid:DXIma&#8230;&#8221;</p>
<p>I have just finished a site (see the link) that implements this method A LOT and it works beautifully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brigitte</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-2916</link>
		<dc:creator>Brigitte</dc:creator>
		<pubDate>Tue, 20 Jan 2009 00:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-2916</guid>
		<description>Thanks for these clear informations. I have been tearing my hair out because of IE6; you have saved my sanity. I will be regularly checking your site for tips.</description>
		<content:encoded><![CDATA[<p>Thanks for these clear informations. I have been tearing my hair out because of IE6; you have saved my sanity. I will be regularly checking your site for tips.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clark Web Designs</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-2810</link>
		<dc:creator>Clark Web Designs</dc:creator>
		<pubDate>Sun, 26 Oct 2008 22:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-2810</guid>
		<description>You can target very specific versions of IE

www.quirksmode.org/css/condcom.html</description>
		<content:encoded><![CDATA[<p>You can target very specific versions of IE</p>
<p><a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">http://www.quirksmode.org/css/condcom.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gurpreet</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-2676</link>
		<dc:creator>Gurpreet</dc:creator>
		<pubDate>Mon, 07 Jul 2008 11:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-2676</guid>
		<description>great  content thanx</description>
		<content:encoded><![CDATA[<p>great  content thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gloria Perri</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-1990</link>
		<dc:creator>Gloria Perri</dc:creator>
		<pubDate>Sat, 22 Mar 2008 16:51:31 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-1990</guid>
		<description>I forgot to mention that I put a different link into the Website slot in the form above...the site I now have listed is the exercise file from the CSS Web Site Design book I&#039;m working with, and I uploaded the files into one of my sites so you can see my dilemma.  The ecommerce site is not listed...it is www.phillymusclecars.com .  I haven&#039;t really started working on it yet because I&#039;m so hung up trying to get the Internet Explorer nav bar to work using CSS...</description>
		<content:encoded><![CDATA[<p>I forgot to mention that I put a different link into the Website slot in the form above&#8230;the site I now have listed is the exercise file from the CSS Web Site Design book I&#8217;m working with, and I uploaded the files into one of my sites so you can see my dilemma.  The ecommerce site is not listed&#8230;it is <a href="http://www.phillymusclecars.com" rel="nofollow">http://www.phillymusclecars.com</a> .  I haven&#8217;t really started working on it yet because I&#8217;m so hung up trying to get the Internet Explorer nav bar to work using CSS&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gloria Perri</title>
		<link>http://dustinbrewer.com/css-trick-target-only-ie-with-an-if-statement/comment-page-1/#comment-1989</link>
		<dc:creator>Gloria Perri</dc:creator>
		<pubDate>Sat, 22 Mar 2008 16:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=37#comment-1989</guid>
		<description>Hi!  I&#039;m trying to bring all sites I&#039;ve built since 1996 to present into compliance with XHTML.  The site listed above is a new one and it&#039;ll be an ecommerce site as well, therefore, I&#039;m cramming the CSS books and have one glitch which I&#039;ve been trying to ignore until now, because I need to get the site up and running.  I can&#039;t get the nav bar to show up in IE7 unless I type it in sideways to create a horizontal nav bar.  
In Firefox I can type an unordered list and tweak the CSS and it shows beautifully in the nav bar background.  Nada for IE7.  If I keep the links that I typed in sideways, then the firefox page has two nav bars, one with the background and one without.   I&#039;ve included some if statements but nothing is happening to resolve the issue.  I guess the question is...how do I get IE7 to show the nav bar the way it looks in Firefox?  Help...I&#039;m befuddled and with the holiday...have to cook and I&#039;m so into getting this fixed that I can&#039;t think about anything else.

Thanks so much for any help you can give me.</description>
		<content:encoded><![CDATA[<p>Hi!  I&#8217;m trying to bring all sites I&#8217;ve built since 1996 to present into compliance with XHTML.  The site listed above is a new one and it&#8217;ll be an ecommerce site as well, therefore, I&#8217;m cramming the CSS books and have one glitch which I&#8217;ve been trying to ignore until now, because I need to get the site up and running.  I can&#8217;t get the nav bar to show up in IE7 unless I type it in sideways to create a horizontal nav bar.<br />
In Firefox I can type an unordered list and tweak the CSS and it shows beautifully in the nav bar background.  Nada for IE7.  If I keep the links that I typed in sideways, then the firefox page has two nav bars, one with the background and one without.   I&#8217;ve included some if statements but nothing is happening to resolve the issue.  I guess the question is&#8230;how do I get IE7 to show the nav bar the way it looks in Firefox?  Help&#8230;I&#8217;m befuddled and with the holiday&#8230;have to cook and I&#8217;m so into getting this fixed that I can&#8217;t think about anything else.</p>
<p>Thanks so much for any help you can give me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
