mrg1023
mrg1023

Reputation: 159

Style not loading properly in firefox

I recently developed a quick and dirty website for my band. Everything is working perfectly in chrome & safari but when i load the page in firefox it looks like the stylesheet isn't loading at all and everything is just being shown as if it has no style rules. Here is the link: http://www.neverwakemusic.com/

I would greatly appreciate any help on this as we are expecting heavy traffic on the site within the next few days due to our new album release.

Upvotes: 0

Views: 1229

Answers (2)

Gabriele Petrioli
Gabriele Petrioli

Reputation: 195972

There are a few errors in your CSS file

  • You have two invalid rules which contain input[type="text]. You are missing the closing ". It should be input[type="text"]
  • the @charset rule must be the first thing in the file.
  • font-color should be color

etc..

In general you should validate your CSS to find such issues at the http://jigsaw.w3.org/css-validator/validator

For example your style.css (validation of file)
(ignore vendor specific rules and look for genuine errors in syntax etc..)

Upvotes: 2

James Lai
James Lai

Reputation: 2071

Line 391 in your stylesheet, broken quote is causing Firefox's parser to stop:

#contactForm input[type="text]:focus {

Upvotes: 1

Related Questions