Hola,
<style type="text/css">
body {
background-image: url('ruta_imagen.png');
background-repeat: repeat-x;
background-position: left 100px;
}
</style>
La syntaxis corta de esto seria:
<style type="text/css">
body {
background: url('ruta_imagen.png') repeat-x left 100px;
}
</style>
Prueba así y nos cuentas =)
Saludos