The content div background is not being displayed in IE8.
Here is the css
#content{
margin: 0 auto;
width: 950px;
height: auto;
padding-top: 50px;
padding-bottom: 15px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
text-align: justify;
background-color: #FFF;
background-image: url('images/content-bg.jpg');
background-repeat: no-repeat;
background-position: bottom;
}
All other browsers show the image.
When testing in IE9’s developer mode using browser mode to IE8 and document mode to IE8 the image is visible but not in IE8 itself.
Change background-image url. It will work.