seitenlayout mit tabellen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • seitenlayout mit tabellen

    Hallo!
    Bin absoluter html anfänger.
    Wie kann ich es erreichen das die tabellen da sitzen wo ich sie gerne haben möchte.
    habe es schon mit <align="center"> oder mit <div style="position:absolute; bottom:0px; left:100px;"> hat aber beides nicht geklappt.
    Habe ungefähr 7 tabellen die komplett durcheinander sind.

    schon mal danke für eure hilfe
    Gruß christoph

  • #2
    chrisp,

    so einfach ist das leider nicht. Um eine Tabelle genau an einer bestimmten Position zu platzieren benötigst du eine bestimmte Anzahl von Tabellen mit festen Angaben zu Höhe und Breite.

    Mein Tipp, versuchs weiter...

    Oder Kauf dir ein WYSIWYG Editor (Frontpage oder so)
    Cu
    Berni
    PS: sorry für die blöde Antwort, genauer geht es aber nicht.

    php-Entwicklung | ebiz-consult.de
    PHP-Webhosting für PHP Entwickler | ebiz-webhosting.de
    die PHP Marktplatz-Software | ebiz-trader.de

    Kommentar


    • #3
      Ich noch mal ich ahbe hier mal ein auszug von dem sript.
      Vielleicht kann mir ja doch noch jemand helfen.

      <body bgcolor="#FFFFFF" background="<?echo $BG_IMAGE?>">
      <div style="position:absolute; top:0.3cm; left:2.0cm;">
      <img src="header.gif" width="595" height="90" border="0">
      </div>
      <div style="position:absolute; top:3.3cm; left:1.0;">
      <table cellspacing="0" cellpadding="1" width="100%" bgcolor="#468e31" background="images/bg.gif" border="0" style="margin-top:0px; margin-left:5px;">
      <tr>
      <td>&nbsp;&nbsp;
      <span style="font-size:14px;">
      <a href="<?echo $INSTALL_DIR?>/user_profile.<?echo $FILE_EXTENSION?>"><?echo $MY_PROFILE?></a>&nbsp;<b>|</b>&nbsp;<a href="<?echo $INSTALL_DIR?>/toplist.<?echo $FILE_EXTENSION?>"><?echo $TOPLIST?></a>&nbsp;<b>|</b>&nbsp;<a href="<?echo $INSTALL_DIR?>/sendpwd.<?echo $FILE_EXTENSION?>"><?echo $FORGOT_PWD?></a>
      </span></td>
      </div>
      </tr>
      </table>

      <!-- start table -->
      <table cellSpacing="0" cellPadding="0" border="0" width="80%">
      <tr>

      <td width="115" height="60" xpos="40">
      <p align="center"></p>
      <table cellSpacing="0" cellPadding="1" border="0">
      <tr>
      <td width="150" height="50" bgColor=#468e31>
      <TABLE cellSpacing="0" cellPadding="4" border="0">
      <tr>
      <td background="images/bg.gif" align="center">
      <font size="+1">
      <b>
      <?if ($PHPOPENCHAT_USER) {
      echo "".$REMOTE_USER.", ".$hello_message."";
      }else{echo "Hallo!";}?>
      </b>
      </font>
      </td>
      </tr>
      <tr>
      <td bgColor="#AAAAAA" align="center">
      <img src="images/leer.gif" alt="" width="150" height="50" border="0"><BR>
      <form class="entry" action="index.<?=$FILE_EXTENSION?>" method="post">
      <?=$fehler?>
      <table border="0">
      <tr>
      <td><?echo $NICK_NAME?>:</td>
      <td><input name="nick" type="text" SIZE="<?echo$MAX_NICK_LENGTH?>" MAXLENGTH="<?echo$MAX_NICK_LENGTH?>" VALUE="<?echo $PHPOPENCHAT_USER?>" STYLE="font-size: 10px;"></td>
      </tr>
      <tr>
      <td><?echo $PASSWORD?>:</td>
      <td><input type="password" name="password" value="" SIZE="8" MAXLENGTH="8" STYLE="font-size: 10px;">
      </td>
      </tr>
      <tr><td>&nbsp;</td>
      <td><?echo$entry_channels?></td>
      </tr>
      <tr><td>&nbsp;</td>
      <td>
      <noscript>
      <font color="#ff0000"><?=$NO_SCRIPT?></font>
      </noscript>
      <!--a title="Login" onclick="document.forms[0].submit();" href="#"><img title="Login" src="images/login.gif" alt="Login" border="0" hspace="0"></a-->
      <input border="0" type="image" src="images/login.gif" width="77" height="23" alt="Login">
      </td>
      </tr>
      </table>
      <a href="register.<?=$FILE_EXTENSION?>"><?=$REGISTER_NICK?></a><br>
      <input type=hidden name="<?=session_name()?>" value="<?=session_id()?>">
      </form>
      </td>
      </tr>
      </div>
      </table>
      </td>
      </tr>
      </table>
      <!-- end table -->
      </td>

      muß ich jetzt leere tabellen dazwischen setzten um sie zu positionieren? Es ist nur ein kleiner auszug aus dem sript.
      Danke Berni für deine prompte Antwort!!!!
      Gruß christoph

      Kommentar

      Lädt...
      X