On 7/11/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I have a site where i am using one style sheet to load others
>
> here it is:
>
> @import url("layout.css");
> @import url("modules.css");
> @import url("print.css") print;I wrote: > How is the parent stylesheet loaded? I could imagine browsers having > issues if you define a stylesheet with a media indicator that loads > another stylesheet that also has a media indicator. > > Makes sense to me to link the print sheet separately, so that all of > your media is organized individually. Neal wrote: > Here is how it's being loaded > <link id="StyleSheet" rel="stylesheet" type="text/css" media="all" > href="../includes/style.css" /> > > I do not have too much control over this - but may have some - > I did think since it has media="all" that may be a problem? > It does work in FF - if I take away media="all" might that work in IE then?? You might also want to try media="screen, print". If that doesn't work, and removing media="all" doesn't work, either, then you might want to look at <link id="StyleSheet" rel="stylesheet" type="text/css" media="all" href="../includes/style.css" /> <link rel="stylesheet" type="text/css" media="print" href="../includes/print.css" /> HTH, Michael ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
