Hello Oxygen454,
Try this. It is compatible with many browsers and should do what you want although I didn't see what your image looks like.
Code:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<title>page Layout</title>
<style>
body {
background: #FFFFFF;
}
/* 2C425E is used for body to be left white */
#container {
padding: 0;
margin: 0;
width: 100%;
background: url("http://www.aldergroveministorage.com/testing/pg1.jpg") repeat 0 0;
height:100% !Important;
text-align: center;
}
</style>
</head>
<body>
<div id="container">
the rest of your work here
</div>
</body>
</html>