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 however being overridden in Gecko - probably rightfully so.


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!)

From viewing the source on <http://www.florida-agriculture.com/>
I see that your header is made up as follows:

<head>
  <title>Marketing Florida Agriculture</title>
  <link rel="Shortcut Icon" type="image/ico" href="/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/css/print.css" media="print" /> <style type="text/css" media="screen">@import url(/css/main.css);</style> <link rel="alternate stylesheet" type="text/css" href="/css/main2.css" title="main2" /> <link rel="alternate stylesheet" type="text/css" href="/css/main.css" title="main" /> <script type="text/javascript" src="/jscripts/styleswitcher.js"></script>

<style type="text/css" media="screen">@import url(/css/forms.css);</style>
  <style type="text/css">
<!--
@media tty {
 i{content:"\";/*" "*/}} @import 'css/ie5pconly.css'; /*";}
}/* */
-->
</style>
<style type="text/css">
<!--
#content h1 {margin-bottom: 3px;}
-->
</style>

move the <link rel="stylesheet" type="text/css" href="/css/print.css" media="print" /> to be the very last style referenced.

;o)

hth

Kristina
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
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/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to