Seite zentrieren - Wo kommt mein text-align:center hin?

  • Hallo!
    Wer kann mir bitte helfen? Ich weiß das Thema mit dem Zentrieren hatten wir hier schon öfter.

    Ich haben folgendes Problem:
    Habe eine Seite mit GoLive erstellt und möchte mit Container und text-alig:center für den IE die Seiten zentrieren. Das mit dem <div>-Container habe ich hinbekommen. Wo finde ich aber bei meinem Quelltext den <body>-Tag um mein text-align:center einzutragen?

    Grüße und vielen Dank!
    Martin

    Hier mein Quelltext:
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <meta name="keywords" content="Fotostudio, Fotoseminar, Body of Art, stylish photography, fine art, schwangerschaft, unterwasserfotografie, glamour, dessous, Akt, Halbakt" />
    <title>BODY OF ART - Das Studio</title>
    <link href="css/basic.css" rel="stylesheet" type="text/css" media="all" />
    <style type="text/css" media="screen"><!--
    a:hover { background-color: #306; }
    --></style>
    </head>
    <div style="width:800px;margin:0px auto;text-align:left;">
    <body bgcolor="#999999" text="black" link="white" vlink="#e6e6e6" alink="#e6e6e6">
    <div style="position:relative;width:800px;height:513px;-adbe-g:p,8,8;">
    <div style="position:absolute;top:8px;left:200px;width:552px;height:64px;-adbe-c:c">
    <div align="center">
    <font size="6" color="white" face="verdana, courier">Willkommen bei BODY OF ART

    </font><font size="4" color="#330066" face="verdana, courier">&gt;Der Spezialist für Menschenfotografie&lt;</font></div>
    </div>
    <div style="position:absolute;top:108px;left:248px;width:42px;height:20px;-adbe-c:c">
    <font size="3" color="white" face="verdana, courier">Start</font></div>
    <div style="position:absolute;top:109px;left:480px;width:94px;height:20px;-adbe-c:c">
    <font size="3" color="white" face="verdana, courier">Impressum</font></div>
    <div style="position:absolute;top:108px;left:640px;width:64px;height:20px;-adbe-c:c">
    <font size="3" color="white" face="verdana, courier">Kontakt</font></div>
    <div style="position:absolute;top:109px;left:360px;width:49px;height:20px;-adbe-c:c">
    <font size="3" color="white" face="verdana, courier">Inhalt</font></div>
    <div style="position:absolute;top:160px;left:32px;width:105px;height:33px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier">Was macht BODY OF ART?</font></div>
    <div style="position:absolute;top:216px;left:32px;width:105px;height:33px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier"><a href="wer ist body of art.html">Wer ist

    BODY OF ART?</a></font></div>
    <div style="position:absolute;top:272px;left:34px;width:48px;height:18px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier">Galerie</font></div>
    <div style="position:absolute;top:312px;left:34px;width:89px;height:33px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier"><a href="preis_leistung.html">Preise

    Leistungen</a></font></div>
    <div style="position:absolute;top:408px;left:32px;width:90px;height:17px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier">Fotoseminare</font></div>
    <div style="position:absolute;top:368px;left:34px;width:93px;height:17px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier">Ausstellungen</font></div>
    <div style="position:absolute;top:448px;left:34px;width:89px;height:17px;-adbe-c:c">
    <font size="2" color="white" face="verdana, courier">Das Studio</font></div>
    <div style="position:absolute;top:160px;left:200px;width:552px;height:285px;-adbe-c:c">
    <div align="right">
    <font size="4" color="#330066" face="verdana, courier">Das Studio


    </font><font face="verdana, courier"><font size="2"><font color="black">Studioadresse:

    Austraße 21, 70376 Stuttgart-Münster

    Studiotelefon: 0171/3890790


    Im September 2007 haben wir uns mit dem Umzug von Stuttgart-Bad Cannstatt nach Stuttgart-Münster auf 80 Quadratmeter vergrößert. Die Aufteilung und weitere Details entnehmen Sie bitte dem liebevoll gestaltetem Grundriss.


    Das Studio ist leicht zu finden, sowohl mit dem Pkw als auch mit den öffentlichen Verkehrsmitteln sehr gut zu erreichen und wir verfügen über eigene Kundenparkplätze.


    Vom Hauptbahnhof sind wir mit der Stadtbahn U14 (Richtung Aldingen/Remseck) innerhalb von 15 Minuten zu erreichen. Die Haltestelle &quot;Rathaus&quot; ist praktisch vor unserer Studiotüre.</font></font></font></div>
    </div>

  • geht so garnicht...

    2 möglichkeiten für deinen hauptdiv (hier mal page genannt)

    a)

    Code
    #page{
    position:absolute;
    margin-left:-400px;
    left:50%;
    width:800px;
    }

    (left immer hälft von width *-1)

    b)

    Code
    #page{
    width:800px;
    margin: 0 auto;
    }
  • Hi,

    dein Body-Tag ist direkt UNTER diesem roten Div, was nicht sein sollte. Willst du deine Seite zentrieren, pack dieses DIV unter den Body Tag, und verpass dem Body folgendes: "style="margin: 0 auto;"
    Das sollte deine Seite Browserweit zentrieren.

    Grüße,
    LizZard

    PS.: Ich hab mir nicht deinen ganzen Quelltext angetan, um meinen Lösungsvorschlag hervorzubringen!

    Sometimes you have a programming problem and it seems like the best solution is to use regular expressions; now you have two problems.