Reputation: 159
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
Reputation: 195972
There are a few errors in your CSS file
input[type="text]
. You are missing the closing "
. It should be input[type="text"]
@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
Reputation: 2071
Line 391 in your stylesheet, broken quote is causing Firefox's parser to stop:
#contactForm input[type="text]:focus {
Upvotes: 1