Dani: IE + Firefox --> "fixed" wird anders gezeigt - warum?

Beitrag lesen

Hallo @ all :-)

mein Problem ist folgendes:

Im IE Explorer sehe ich die Kirschblüte links und nicht rechts, wie im Firefox & Opera - warum? Was mache ich falsch?

Hier die Seite:

http://www.bushido-duesseldorf.de/html/geschichte_des_budo.html

und hier mein Quelltext, wobei ich sagen muss, dass ich mit Netobjects arbeite.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
body {
      background-image:url('http://www.bushido-duesseldorf.de/assets/images/Hokusai-14-sw.jpg');
      background-attachment: fixed;
      background-position-x: 350px;
      background-position-y:100px;
      background-repeat:no-repeat;
      background-color:white;
      }

a img {border:none}

#logo    {
   position:fixed;
   top:150px;
   left: 700px;
      }

#content {margin-left:280px; width:420px; text-align:right;}

</style>

<!--[if lt IE 7.0]>
  <style type="text/css">#logo {position:absolut; left:720px; top:0};</style>
 <![endif]-->

<title>Die Geschichte des Budo</title>

<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">

</head>
<body>

<div id="logo">

<a href="http://www.bushido-duesseldorf.de/html/ubersicht.html"><img src="http://www.bushido-duesseldorf.de/assets/images/Kirschbluete_logo.jpg"></a>

</div>
</body>
</html>