Reputation: 1959
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
Reputation: 27301
Your HTML is not validating. Try fixing the three errors (namely the unclosed tags) and I bet it works as expected:
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