MFB
MFB

Reputation: 19837

Stylesheets load ok but no CSS

Take a look here: http://ec2-122-248-199-2.ap-southeast-1.compute.amazonaws.com

The stylesheets seem to load ok, but they are not having any effect on the page. I cannot figure out why. Any help would be appreciated!

Upvotes: 2

Views: 114

Answers (1)

Quentin
Quentin

Reputation: 944320

The HTTP server claims the css files are written in text/plain instead of text/css.

quentin@system:~ # curl -I http://ec2-122-248-199-2.ap-southeast-1.compute.amazonaws.com/stylesheets/layout.css | grep -i content-type
Content-Type: text/plain

Upvotes: 3

Related Questions