I have two background images one applied to the body and another to html, this seems to work perfectly in every browser except IE, in IE the main wall background image (../pagepix/newbg.jpg) doesn't seem to be showing.
See the page here
Code:
html {
background-image: url(../pagepix/newbg.jpg);
background-repeat: repeat;
background-attachment: scroll;
margin: 0px;
padding: 0px;
}
body {
background: url(../pagepix/navedge.jpg);
background-repeat: repeat-x;
background-attachment: scroll;
width:100%;
height:54px;
margin:0;
padding:0;
}
Compare how it should look in Firefox, Opera, Safari with how it looks in IE.
Any help much appreciated
