Stylish sheet not loading in Mozilla Firefox

I'm at a dead end. Work on a site that does not load properly in FireFox. It loads fine in Chrome and even in IE, but for some reason the stylesheet doesn't load in FireFox.

Website: http://gregsonaccounting.com

I use html5 code and used basic drops and those from the html5 Boiler Plate. Not sure if the problem is in my html or CSS.

Any insight is extremely helpful.

Many thanks.

+5
source share
5 answers

Your problem is with style.css, which starts with @charset "IBM437" Replace it with @charset "UTF-8";, and it will be better!

He sews this encoding. IBM437 is automatically added by SASS:

CSS CSS IE

+5

;

<link rel="stylesheet" type="text/css" href="css/stylesheet.css">

media, , : , , , ..

:

<link rel="stylesheet" href="stylesheets/style.css" rel="stylesheet" />//Here is the problem
<link rel="stylesheet" href="nivo-slider/nivo-slider.css" type="text/css" media="screen" />
<link rel="stylesheet" href="nivo-slider/themes/default/default.css" type="text/css" media="screen" />

, :

<link rel="stylesheet" href="stylesheets/style.css" type="text/css" media="screen" />
+5

:

<link rel="stylesheet" href="stylesheets/style.css" rel="stylesheet" />

<link rel="stylesheet" href="stylesheets/style.css" type="text/css" />
0

CSS- Chrome, IE Firefox. , CSS.

CSS http://csslint.net/, - , , :)

!

0

paste this into your html documents. I don’t write in code, just specifying keywords so that you know and can insert them.

link rel = "stylesheet" type = "text / css" href = "stylesheet.css"

it works, so make sure you have it right, or your html document will not load with your stylesheet. good luck and keep working.

-1
source

All Articles