Hi all, and sorry for the delay on getting back to you.

To answer a common question: IE conditional comments were not an
option due to a ridiculous situation at the client's office... Various
computers, including a big screen displaying the website on their
front desk, had installed IE7 and then removed it in a non-standard
way, so they were using IE6 but the version vector in the registry was
for IE7 (as known, if you have multiple IE installs the CCs will view
all installs as the highest installed version).

So where I was using this...
<!--[if lte IE 6]>
<link  rel="stylesheet" type="text/css"
href="/App_Skins/News1/Styles/screen_ie_5_55_6.css">
<style type="text/css">@import"/App_Skins/News1/Styles/screen_ie_55_6.css";/*
Double Quotes without Whitespace hides the file from 5.0 */</style>
<![endif]-->

I now have this:
<style type="text/css">
/*  IE 5.5 and 6
        Georg's underscore hack - gunlaug.no/contents/wd_chaos_20.html */
@import _url("/Styles/screen_ie_5_55_6.css");
@import _url("/Styles/screen_ie_55_6.css");

/*      IE 5.0/Win
        Tantek's Band Pass Filter - 
tantek.com/CSS/Examples/ie50winbandpass.html */
@media tty {
  i{content:"\";/*" "*/}};
  @import '/Styles/screen_ie_5_55_6.css'; {;}/*";}
}/* */
</style>

Worked as expected in the dozen+ browsers I tested so far (IE 5 to 7,
Mac IE, Opera 5 to 9.5, Firefox 1 to 3, Safari 2 and 3).

Again, thank you Jonny for the quick response which saved my deadline
and my mental health (had been googling 4hs for that hack!), Georg for
always being on the edge, and everyone else involved, well, just for
being involved ;)

--
Manuel Razzari
[EMAIL PROTECTED] | http://conVistaAlMar.com.ar
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to