Reputation: 1
My layout is working fine in Chrome, Safari, and IE 9 but Firefox seems to be avoiding all twitter bootstrap styles thus leaving the page looking stunted and broken. Any help you can offer would be greatly appreciated. I am using the most current version of Firefox. (18.0)
Upvotes: 0
Views: 354
Reputation: 1133
You have forgotten a s on css. You have:
<link href="http://monooptical.com/wp-content/themes/MonoTheme1.0/assets/bootstrap/css/bootstrap.css" type="text/cs" rel='stylesheet' media="screen">
instead of:
<link href="http://monooptical.com/wp-content/themes/MonoTheme1.0/assets/bootstrap/css/bootstrap.css" type="text/css" rel='stylesheet' media="screen">
Upvotes: 2