Reputation: 14490
My website (http://www.cryptum.net) seems to be missing all CSS styling in Internet Explorer 8. My drop down menu isn't showing. Everything I have styled isn't showing. Can anyone tell me how I can fix this?
Upvotes: 0
Views: 532
Reputation: 3054
Put
<link ...>
elements into
<head>
of the page.
You can also check W3C Validator: http://validator.w3.org/check?uri=www.cryptum.net&charset=%28detect+automatically%29&doctype=Inline&group=0
There are really many errors in your document.
Upvotes: 2
Reputation: 5514
Please move your
<style> </style>
tag into head, should fix the problem, alternatively you can use php to load the style-sheets as a fool-proof method.
Upvotes: 0
Reputation: 43243
I suspect it's because your HTML markup is totally messed up. Choose a doctype and make sure your markup validates for it. I'd suggest HTML 4 transitional as a starting point, it shouldn't be too hard to make it validate.
Upvotes: 0