Einzelnen Beitrag anzeigen
Alt 02.09.2002, 22:28   #11
käptn
Inventar
 
Registriert seit: 04.11.2001
Alter: 45
Beiträge: 2.150


Standard Re: tztztz...

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

~
____________________________________
LOL - Mein erstes Post im Programmier Forum

MACINTOSH - Most Applications Crash, If Not The Operating System Hangs
käptn ist offline   Mit Zitat antworten