ciao
puoi creare un DIV con la tua immagine sullo sfondo oppure dare l'immagine di sfondo al body;

il css che devi scrivere, per il box è il seguente:
#container{
margin:0;
padding:0;
background:url(tuaImmagine.jpg) no-repeat 0 0 fixed;
}

se vuoi dare lo sfondo al body:
body{
margin:0;
padding:0;
background:url(tuaImmagine.jpg) no-repeat 0 0 fixed;
}
prova e posta ancora se hai problemi.
ciao