Noam
Noam

Reputation: 3391

CSS problem only in IE

I've created a web site www.qwik-facts.com which is being seen as I want it in chrome, firefox and safari. However, in IE it gets messed up.

I know I should be more specific, but I just can't figure out what the problem is. Can someone take a look and point me in the right directon?

Thanks!

Upvotes: 0

Views: 135

Answers (3)

developer__c
developer__c

Reputation: 636

You might want to make your site W3 compliant/Valid. Take a look at this: http://validator.w3.org/check?uri=http://www.qwik-facts.com/&charset=(detect+automatically)&doctype=Inline&group=0

You have 42 Errors, 45 warning(s). If you fix all of them, mainly the errors then you should start to see your site become concurrent across browsers.

Upvotes: 2

Traingamer
Traingamer

Reputation: 1423

No doctype = complete waste of time trying to match between browsers.

Upvotes: 2

Malevolence
Malevolence

Reputation: 1857

To start off, you should be specifying a valid doctype to put all modern browsers into standards mode. Also, you should validate your html to make sure your markup is correct.

Upvotes: 1

Related Questions