• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Positionierung einer Seite in einer anderen Seite

dpoessl

Neues Mitglied
Hallo,

ich programmiere derzeit an einer HTML Seite für meine Haussteuerung.
Dazu möchte ich 4 Instar 2905 einbinden.
Habe dazu im Netz von dem Hersteller einen Code gefunden und implementiert.

Nun sehe ich die Ausschnitte allerdings irgendwo auf der Seite.
Ist es möglich diese Ausschnitte zu postionieren?

Hier mal ein Auszug aus dem Quellcode...

<div id="main_box_content20">
<table border="0" frame="box" cellpadding="0" cellspacing="0" width="600" height="440">
<tr>
<td bgcolor="blue" align="center" valign="middle">
<img alt="Instar-Video Loading in progress" src="http://xxx.com:80/videostream.cgi?user=gast&pwd=gast" />
</td>
</tr>
</table>
<a href="presets.html" target="presets"><b>Zurück zur Positionsauswahl.</b></a><br>
<iframe src="presets.html" style="border:0px #FFFFFF none;" name="presets" scrolling="auto" frameborder="0" align=aus marginheight="0px" marginwidth="0px" height="40" width="200"></iframe>
</div>

<div id="main_box_content21">
<table border="0" frame="box" cellpadding="0" cellspacing="0" width="600" height="440">
<tr>
<td bgcolor="blue" align="center" valign="middle">
<img alt="Instar-Video Loading in progress" src="http://xxx.aipcam.com:80/videostream.cgi?user=Gast&pwd=gast" />
</td>
</tr>
</table>
<a href="presets.html" target="presets"><b>Zurück zur Positionsauswahl.</b></a><br>
<iframe src="presets.html" style="border:0px #FFFFFF none;" name="presets" scrolling="auto" frameborder="0" align=aus marginheight="0px" marginwidth="0px" height="40" width="200"></iframe>
</div>

Das sind die beiden css Boxen...


#main_box_content20{
width:600px;
height:550px;
background:transparent;
/*border: solid 1px grey;*/
position:absolute;
top:300px;
left:350px;
margin:0;
padding:0;
z-index:6;
}
#main_box_content21{
width:600px;
height:550px;
background:transparent;
/*border: solid 1px grey;*/
position:absolute;
top:300px;
left:1050px;
margin:0;
padding:0;
z-index:6;
}

So sieht es dann auf der Seite aus...

http://waldhaus-sellin.de/sicherheitscreen.jpg
 
Zurück
Oben