I have three background images on this webpage (one for header, one for the entire page, and one for a section below). Each of them are offset, e.g. the section bg by 1px in Firefox and 2px in Chrome. Could it be something I'm missing when implementing multiple background images on one page?
Here's a screenshot: http://i43.tinypic.com/igjmyv.png
Header bg: 1220 x 280
Main bg: 1220 x 390
Section bg: 1110 x 87
My HTML page structure:
<body>
<header>
<nav>
</nav>
</header>
<div id="container">
</div>
<div id="servicespage">
<div id="container">
</div>
</div>
</body>
My CSS:
body {
background-color:#E2EEF3;
background-image:url(../images/bg.png);
background-position:center;
background-repeat:repeat-y;
margin: 0px auto;
}
#container {
width:960px;
margin: 0px auto;
position:relative;
overflow:hidden;
}
header {
height:280px;
background-image:url(../images/header/bg.png);
background-repeat:no-repeat;
background-position:center;
}
#servicespage {
margin:0px auto;
padding:50px;
background-image:url(../images/page-bg.jpg);
background-position:center top;
background-repeat:no-repeat;
}
If any more details are needed, please ask! Thank you!