Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Learn More

firefox won't load css file, due to incorrect MIME type.

  • 2 одговорa
  • 16 има овај проблем
  • 36 прегледа
  • Последњи одговор послао robbieB

more options

I am using dynamic css to rotate header background images. It requires the line:

echo "<style type='text/css' media='screen'> @import url('images/random-images/dynamic_css.php');</style>\n";

to be added between the <head> tags. The file 'dynamic_css.php' contains a line telling the browser that the file type is "text/css", but Firefox treats it as "text/html" and refuses to load it. If I duplicate the style declaration by also adding it outside of the head tags, Firefox loads it, but that causes other issues. What do I need to do to get Firefox to load the script from inside the head tags?

I am using dynamic css to rotate header background images. It requires the line: echo "<style type='text/css' media='screen'> @import url('images/random-images/dynamic_css.php');</style>\n"; to be added between the <head> tags. The file 'dynamic_css.php' contains a line telling the browser that the file type is "text/css", but Firefox treats it as "text/html" and refuses to load it. If I duplicate the style declaration by also adding it outside of the head tags, Firefox loads it, but that causes other issues. What do I need to do to get Firefox to load the script from inside the head tags?

Сви одговори (2)

more options

That is probably because the server doesn't send a file with the php file extension as text/css.

Did you try to add a PHP header to make sure that the file gets send as text/css ?

Firefox may try to load such files from the cache and not reload them from the server.


A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
The helpers at that forum are more knowledgeable about web development issues.

You need to register at the mozillaZine forum site in order to post at that forum.
See http://forums.mozillazine.org/viewforum.php?f=25

more options

Thanks cor-el.

The php file does include the line:

header('Content-type: text/css');

I'll follow up your suggestion re. the development forum.

robbie.

Измењено од стране robbieB