[thelist] css is not loaded with page in Firefox

Rob Smith rob.smith at THERMON.com
Tue Nov 23 14:57:27 CST 2004


Hmm... 

This discussion begs the question: Are you loading the css file the best way
you can? 

As of now you're using a <style /> Import:
<style type="text/css">
 <!--
  @import url(stylereboot.css);
 -->
</style>

Yet on the very next line you do:
<link rel="stylesheet" type="text/css" media="print"
href="stylerebootprint.css" />

Have you pondered the thought that the @import isn't compatable with FF? It
could very well be a browser bug. That would explain why it worked fine in
IE, and not FF. I doubt it's a server issue.

Try the same approach as your media="print" with the stylereboot.css style
sheet.
<link rel="stylesheet" type="text/css" href="stylereboot.css" />

Worth a shot,

Rob


More information about the thelist mailing list