Hmm..: Gästebuch: Hintergrund verschiebt sich andauernd!!!

Beitrag lesen

Hey,

ich habe folgendes Problem:

Immer wenn ich in meinem Gästebuch (zum üben^^) eine Nachricht schreibe, dann
verschiebt sich das Hintergrundbild.

Hier einmal der Link zur Seite: Klick

und jetzt der Quelltext:

<html>  
<head>  
	<title>Das Shinobi-no-Kage Testforum</title>  
	<style type="text/css">  
		body {  
	background-color: #003100;  
	margin-left: 0px;  
	margin-top: 0px;  
	margin-right: 0px;  
	margin-bottom: 0px;  
	text-align: center;  
	}  
	  
	div.header {  
  background-image: url(../images/narutorpgheader.png);  
  margin-left: 250px;  
  margin-right: 268px;  
  height: 195px;  
  }  
   div.bg {  
  
background-image: url(../images/Hauptseite.png);  
background-color:orange;  
width:997px;height:2600px;  
margin-left: 250px;  
margin-top: -120px;  
background-attachment:fixed;  
}  
a {  
color: navy;  
}  
p {  
  color: red;  
  }  
  #eintrag {  
  border: double;  
  border-color: gold;  
  }  
  
  </style>  
	  
</head>  
<body>  
<div class="header"></div>  
  
<?php  
$datenbank = "daten.dat";  
$datei = fopen($datenbank,"r");  
fpassthru($datei);  
  
  
if ($datenbank=="")  
{  
echo "kein Eintrag vorhanden";  
}  
?>  
  
<form method="post" action="forumpost.php">  
Username: <input type="text" name="username" size="10" maxlength="15" /><br>  
Text: <textarea name="text"></textarea><br>  
<input type="submit" value="Absenden">  
</form>  
<div class="bg"></div>  
	  
</body>  
</html>	

Ich hoffe, ihr könnt mir helfen.

mfg

hmm..