Tabellenproblem

Status
Nicht offen für weitere Antworten.

Xongo

Mitglied
Hi.

Ich bin momentan dabei, eine Seite mit dem Content-Nanaging-System "BXCP" (http://www.bxweb.net/) zu erstellen. Meine Seite basiert bisher auf einer Tabelle, bei der später in der Mitte per "function:show" die Inhalte angezeigt werden. Momentan sieht die Seite so aus:

http://www.vba-esports.de/page/index.php

Wenn man nun auf einen der Links in der Navigation klickt, passiert das, was ihr euch am besten selbst anseht: Die Seite verschiebt das gesamte Layout. Genau das gleiche passiert, wenn ich in der Mitte die "function:show" eintrage - es werden halt dann die Inhalte angezeigt, jedoch auch verzerrt.
Ich hab keine Ahnung, wie ich es genauer beschreiben soll, da ich wirklich nicht kapiere, was da los ist...

Hier mal der Code der Index.htm:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
{func:title}
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="gfx.css" rel="stylesheet" type="text/css" />
</head>
<body>

<div align="center">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="800" id="AutoNumber1" height="469">
  <tr>
    <td width="800" height="200" colspan="3" background="header.jpg">&nbsp;</td>
  </tr>
  <tr>
    <td width="160" height="249">
    <div align="center">
      <center>
    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="160" id="AutoNumber2" background="bg_left.jpg" height="265">
      <tr>
        <td width="160" class="navbodyb" style="text-align: center">
- <a href="index.php?show=news"><font color="#000000">News</font></font></a><br />
- <a href="index.php?show=gbook"><font color="#000000">Gbook</font></a><br />
- <a href="index.php?show=board"><font color="#000000">Board</font></a></td>
      </tr>
      <tr>
        <td width="160" class="navbodyb" style="text-align: center" background="navihead_clan.jpg" height="22">
&nbsp;</td>
      </tr>
      <tr>
        <td width="160" align="center">
- <a href="index.php?show=members"><font color="#000000">Members</font></a><br />
- <a href="index.php?show=clanwars"><font color="#000000">Clanwars</font></a><br />
- <a href="index.php?show=history"><font color="#000000">History</font></a><br />
- <a href="index.php?show=rules"><font color="#000000">Rules</font></a><br />
- <a href="index.php?show=sponsors"><font color="#000000">Sponsors</font></a></td>
      </tr>
      <tr>
        <td width="160" align="center" height="22" background="navihead_sonstiges.jpg">
&nbsp;</td>
      </tr>
      <tr>
        <td width="160" align="center">
- <a href="index.php?show=calender"><font color="#000000">Events</font></a><br />
- <a href="index.php?show=servers"><font color="#000000">Servers</font></a><br />
- <a href="index.php?show=community"><font color="#000000">Community</font></a><br />
- <a href="index.php?show=files"><font color="#000000">Downloads</font></a><br />
- <a href="index.php?show=links"><font color="#000000">Links</font></a><br />
- <a href="index.php?show=about"><font color="#000000">About</font></a></td>
      </tr>
      <tr>
        <td width="160" align="center" background="navihead_partner.jpg" height="22">
&nbsp;</td>
      </tr>
      <tr>
        <td width="160" align="center">
        <p align="center">{func:img} </td>
      </tr>
    </table>
      </center>
    </div>
    </td>
<td align="center" width="480" height="249">
<div align="center">
  <center>
  <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="480" id="AutoNumber4" background="bf_middle.jpg" height="266">
    <tr>
      <td width="27" height="266">&nbsp;</td>
      <td width="428" align="center" height="266">&nbsp;</td>
      <td width="25" height="266">&nbsp;</td>
    </tr>
  </table>
  </center>
</div>
</td>
 
   <td width="160" height="249">
    <div align="right">
    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="160" id="AutoNumber3" background="bg_right.jpg">
      <tr>
        <td align="center">
        <p align="center">{login:top} </td>
      </tr>
      <tr>
        <td background="navihead_last_wars.jpg" width="160" height="22">&nbsp;</td>
      </tr>
      <tr>
        <td align="center">
        <p align="center">{func:wars} </td>
      </tr>
      <tr>
        <td background="navihead_next_wars.jpg" width="160" height="22">&nbsp;</td>
      </tr>
      <tr>
        <td align="center">
        <p align="center">{event:upc}</td>
      </tr>
      <tr>
        <td background="navihead_umfrage.jpg" width="160" height="22">&nbsp;</td>
      </tr>
      <tr>
        <td align="center">
        <p align="center">{func:vote} </td>
      </tr>
    </table>
    </div>
    </td>
  </tr>
    <tr>
    <td width="800" height="20" colspan="3" background="bf_bottom.jpg">
    </td>
  </tr>

</table>
</div>

</body>
</html>
 
Status
Nicht offen für weitere Antworten.
Zurück