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

Zentrierung im IE 7 - wie?

Status
Für weitere Antworten geschlossen.

Marlon

Neues Mitglied
Hallo! Ich habe ein Problem mit der Website-Darstellung im IE 7: Die Menüeinträge werden nicht richtig zentriert. Im Firefox funktioniert es allerdings einwandfrei.
Das Menü ist per php-Include in die Site eingebunden und hat den Code:
HTML:
<table width="800" bgcolor="#FF8000">
<tr>
<td width="100" height="15" bgcolor="#ff8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'"><a href="../index.php" title="Startseite - Der Ausgangspunkt allen Geschehens"><div align="center"><font face="Verdana" size="2" color="#ffffff">Start</font></div></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'"><a href="../wohnung1.php" title="Wohnung 1 - Oberer Dühnenweg 15"><div align="center"><font face="Verdana" size="2" color="#ffffff">Wohnung Nr. 1</font></div></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'"><a href="../wohnung2.php" title="Wohnung 2 - Hafenstraße 22"><div align="center"><font face="Verdana" size="2" color="#ffffff">Wohnung Nr. 2</font></div></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'"><a href="../wohnung3.php" title="Wohnung 3 - Oberer Dühnenweg 15"><div align="center"><font face="Verdana" size="2" color="#ffffff">Wohnung Nr. 3</font></div></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'"><a href="../kontakt.php" title="Kontakt - Stellen Sie offen gebliebene Fragen oder buchen Sie bequem per eMail"><div align="center"><font face="Verdana" size="2" color="#ffffff">Kontakt</font></div></a></td>
</tr>
</table>
Die Site kann angesehen werden unter Wohnungen-Speth.de - 3 Wohnungen in Hörnum/Sylt (nur die index.php funktioniert bisher).
 
Zuletzt bearbeitet von einem Moderator:
als IE7 würde ich mich weigern, mit den veralteten attributen überhaupt etwas anzuzeigen.

zentrierung der gesamten tabelle:

HTML:
<div align="center">
<!-- tabelle hier -->
</div>

zentrierung der einträge:

HTML:
<td align="center">

Nils aka XraYSoLo
 
Immernoch nichts...

Ich habe den Kram entsprechend geändert:
HTML:
<div align="center">
<table width="800" bgcolor="#FF8000">
<tr>
<td width="100" height="15" bgcolor="#ff8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'" align="center"><a href="../index.php" title="Startseite - Der Ausgangspunkt allen Geschehens"><font face="Verdana" size="2" color="#ffffff">Start</font></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'" align="center"><a href="../wohnung1.php" title="Wohnung 1 - Oberer Dühnenweg 15"><font face="Verdana" size="2" color="#ffffff">Wohnung Nr. 1</font></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'" align="center"><a href="../wohnung2.php" title="Wohnung 2 - Hafenstraße 22"><font face="Verdana" size="2" color="#ffffff">Wohnung Nr. 2</font></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'" align="center"><a href="../wohnung3.php" title="Wohnung 3 - Oberer Dühnenweg 15"><font face="Verdana" size="2" color="#ffffff">Wohnung Nr. 3</font></a></td>
<td width="100" height="15" bgcolor="#FF8000" onMouseOver="this.style.backgroundColor='#FFBF00'" onMouseOut="this.style.backgroundColor='#FF8000'" align="center"><a href="../kontakt.php" title="Kontakt - Stellen Sie offen gebliebene Fragen oder buchen Sie bequem per eMail"><font face="Verdana" size="2" color="#ffffff">Kontakt</font></a></td>
</tr>
</table>
</div>

Geht leider immernoch nicht...

EDIT: Habe den Fehler gefunden, war die width-Anweisung, die 100 statt 100% hatte. Dadurch hat der IE im Fenster von 100 px zentriert...
 
Zuletzt bearbeitet von einem Moderator:
ich weiß nicht, was du hast. das geht bei mir mit

- FF
- IE
- opera
- konqueror

ohne probleme.

Nils aka XraYSoLo
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben