Re: [css-d] Print Style not winning

2005-10-13 Thread Kristina Floyd
>> print.css should always be the last style sheet in the list. >> Otherwise anything after it that calls #printheader will override >> print.css. (hence cascading!) Adrienne Latimer wrote: Adctually, you are looking at the main.css for that entire site, not for the 'fifnc' directory. i'm n

Re: [css-d] Print Style not winning

2005-10-13 Thread Adrienne Latimer
Adctually, you are looking at the main.css for that entire site, not for the 'fifnc' directory. But... it does raise an interesting point. For the stylesheet linking you site below, In IE, main.css isn't overriding print.css with respect to #printheader as you point out that it should. It is

Re: [css-d] Print Style not winning

2005-10-13 Thread Kristina Floyd
Adrienne Latimer wrote: I have a #printheader that I have told to not display in the browser {display: none;} http://www.florida-agriculture.com/fifnc/css/print.css http://www.florida-agriculture.com/fifnc/css/main.css print.css should always be the last style sheet in the list. Otherwise

Re: [css-d] Print Style not winning

2005-10-13 Thread Thierry Koblentz
Adrienne Latimer wrote: > I have a #printheader that I have told to not display in the browser > {display: none;} What about {display:block !important} Thierry | www.TJKDesign.com __ css-discuss [EMAIL PROTECTED] http://www.css-

Re: [css-d] Print Style not winning

2005-10-13 Thread Adrienne Latimer
That did it - Thanks! -- but I don't know why the !important declaration is required in this case. Adrienne Latimer wrote: > I have a #printheader that I have told to not display in the browser > {display: none;} What about {display:block !important} Thierry | www.TJKDesign.com

RE: [css-d] Print Style not winning

2005-10-13 Thread Adrienne Latimer
Yes, and to no evail. Hi, Have you tried { display: block; } on the print stylesheet? That's what I use and it works for me. Ali :o) __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d L

[css-d] Print Style not winning

2005-10-13 Thread Adrienne Latimer
I have a #printheader that I have told to not display in the browser {display: none;} In the print.css, I tell it to {position: static} which has always worked in the past for me, except this time for some reason. If I remove the display: none, it appears in print preview as planned, so my pri