Is it possible that it's simply because you forgot the "css" directory in the 
second reference?

<LINK rel="stylesheet" type"text/css"
     href="../../minutesPrint.css" media="print">

should be

<LINK rel="stylesheet" type"text/css"
     href="../../css/minutesPrint.css" media="print">

?  I ask because literally just yesterday a guy I work with couldn't figure out 
why his stylesheets weren't working and it was because he forgot an "s" in the 
directory name.



On 11/2/07 3:55 PM, "Chris Akins" <[EMAIL PROTECTED]> wrote:

Making my first ever print stylesheet (I know, I'm way behind).  Anyhoo...

Is there some specification that says the print stylesheet must be in the
same directory as the file that's calling it?  Everything in my gut says "of
course not", yet I haven't been able to get mine to work until I put it in
the same directory as the html file.

This code works for me:

<LINK rel="stylesheet" type"text/css"
     href="../../css/minutesScreen.css" media="screen">
<LINK rel="stylesheet" type"text/css"
     href="minutesPrint.css" media="print">

This doesn't:

<LINK rel="stylesheet" type"text/css"
     href="../../css/minutesScreen.css" media="screen">
<LINK rel="stylesheet" type"text/css"
     href="../../minutesPrint.css" media="print">
______________________________________________________________________
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/


______________________________________________________________________
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