For a while now I’ve been trying to figure out why certain pages which link to CSS refuse to load the CSS file in Firefox and Netscape.
After searching Google to no avail, I posted to a forum about the issue and Bob quickly found the root of the problem. My server was treating the mime type as html, not css like it should.
Since the problem wasn’t the link (which is setup as text/css) I had to create an .htaccess file and put the following line of code in:
AddType text/css .css
I uploaded it and that did the trick.