Zitat:
Original geschrieben von P.St
Zum Schluss noch einmal warum ich das mit den Browserfenstern brauche... meine Site hat ein zentrales "Fenster" ca. 440 x440 Pic. gross
|
Ich will dich wirklich nicht ärgern, ich hab auch schon gesagt, dass deine erste Überlegung nicht so ohne Was zu realisieren ist, s.o.
Für dein Problem gibt's aber mehrere Lösungsansätze, wofür man kein neues Fenster mittels JS aufmachen muss:
Für CSS2 - Browser:
<div style="margin: 0px auto; width: 440px; height: 440px;"></div>
---------------------------------
Altmodisches Tabellen-Layout:
Code:
<table width="100%" height="100%">
<tr>
<td valign="center" align="center">
<table width="440" height="440">
[...]
</table>
</td>
</tr>
</table>
Frames-Variante:
Code:
<frameset rows="*,440,*">
<frame>
<frameset cols="*,440,*">
<frame>
<frame name="INHALT">
<frame>
</frameset>
<frame>
</frameset>
HTH
~