0

Been making a website to try learn a bit more css and html.

Thought it was going well till I tried to show it to someone in IE (I use ff)

When I loaded the page up the footer seemed it to in the wrong place and i can't figure out why Here is a screen shot http://www.flickr.com/photos/mattcripps/8300226269/

You can see the code for the website here http://www.deltacars.co.uk/testsite/

Any help would be great as this is doing mt head in.

user1132612
  • 77
  • 1
  • 7

2 Answers2

0

<footer> is a html5 tag. It's not supported in Internet Explorer 8 or lower. You can use a javascript library shim like Modernizr to get around it.

JimmyRare
  • 3,958
  • 2
  • 20
  • 23
  • have managed to get the footer in the correct position but the page wrap background color which is white is not going the full length of the page. any idea why? – user1132612 Dec 24 '12 at 09:08
  • It's because the footer is outside of the wrapper. And the footer has a margin-bottom of 10px, which makes the body background show below. My suggestion is to just remove the margin-bottom from the footer. – JimmyRare Dec 24 '12 at 20:32
0

I think you should bring the footer inside page-wrap div.That will solve the issue. Also add clear:left; to footer css.

Arun Unnikrishnan
  • 2,339
  • 2
  • 25
  • 39