prueba con ese ejemplo que te pase y fijate si es mas o menos lo que pedis
Código HTML:
<html>
<head>
<style type="text/css">
body{
background-image:url('img/Imagenfondo.jpg');
background-repeat:repeat-x;
height:100%;
width:100%;
}
#container{
margin: 0 10% 0 10%;
width:80%;
background-color:red;
height:500px;
}
</style>
</head>
<body>
<div id="container">
Contenido.Contenido.Contenido.Contenido.
</body>
</html>