dpDesignz
dpDesignz

Reputation: 1959

HTML5 not working in Internet Explorer 11

I've just launched a site, but when I view it in IE11, all my styling is gone! All my tags like <header> just render <header></header>...content...</header><//header>. Same with section and footer tags.

I added html5shiv, which fixed some parts, but now my footer isn't showing 100% width.

Does anyone know why this may be doing this? The site is at www.linkup.co.nz. I'm not sure what other info I need to post, but I can add more if requested. :)

Upvotes: 0

Views: 592

Answers (1)

Justin
Justin

Reputation: 27301

Your HTML is not validating. Try fixing the three errors (namely the unclosed tags) and I bet it works as expected:

Validate www.linkup.co.nz

Line 132, Column 552: End tag section seen, but there were open elements.

`...paint-smart.png" width="271" height="70" alt="Paint Smart" /></a></section>`

Error Line 131, Column 28: Unclosed element div.

`<div class="container">`

Upvotes: 1

Related Questions