Arngrim: Verrutschendes Bild in Frame

Beitrag lesen

OK, hier die (vermutlich) interessanten Stellen:

Erstmal die FRAME definierende Datei (der Abschnitt ist in JavaScript eingebettet, mit 'ner Unterscheidung zwischen NE und IE, allerdings sind da noch keine Unterschiede drin, weil ich noch keine individuellen Anpassungen vorgenommen habe:

if (document.layers)
            {
             document.write("<frameset cols="146,25,*" border=0 frameborder=0>");
             document.write("<frameset rows="95, 300,*" border=0 frameborder=0>");
             document.write("<frame name="logo" src="www/logo.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="nav"  src="www/nav.html" noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="navbottom" src="www/navbottom.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("</frameset>");
             document.write("<frameset rows="95, *" border=0 frameborder=0>");
             document.write("<frame name="sparetop" src="www/spare_top.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="sparebottom" src="www/spare_bottom.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("</frameset>");
             document.write("<frameset rows="58,*" border=0 frameborder=0>");
             document.write("<frame name="title" src="www/title.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="main"  src="www/home.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("</frameset>");
             document.write("</frameset>");
            }
            else
            {
             document.write("<frameset cols="146,25,*" border=0 frameborder=0>");
             document.write("<frameset rows="95, 300, *" border=0 frameborder=0>");
             document.write("<frame name="logo" src="www/logo.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="nav"  src="www/nav.html" noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="navbottom" src="www/navbottom.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("</frameset>");
             document.write("<frameset rows="95, *" border=0 frameborder=0>");
             document.write("<frame name="sparetop" src="www/spare_top.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="sparebottom" src="www/spare_bottom.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("</frameset>");
             document.write("<frameset rows="55,*" border=0 frameborder=0>");
             document.write("<frame name="title" src="www/title.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("<frame name="main"  src="www/home.html" scrolling=no noresize marginwidth=0 marginheight=0>");
             document.write("</frameset>");
             document.write("</frameset>");
            }
            </script>

Dann eine der beiden Frame Dateien, bei denen es knallt:

<html>
      <head>
            <title> Spare Row </title>
      </head>
      <body bgcolor=#000000>
      <div style="position:absolute; top: 55px; left: 0px">
           <img src="pics/bgrow2_left.jpg" border=0>
      </div>
      </body>
</html>

Der <div> Bereich ist wie gesagt nur zur exakten Positionierung des Bildes.

Haben die Sources irgendwie weitergeholfen?

Ciao,
Arngrim