MyBB.de Forum
Portal Box Verschoben und zu lang - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html)
+---- Thema: Portal Box Verschoben und zu lang (/thread-7299.html)



Portal Box Verschoben und zu lang - Beatrice63 - 05.10.2007

Hallo zusammen

Ich habe etwas in der "Template Portal" verbockt, jetzt ist die Box "Board Regeln" nicht mehr rechtsbündig wie sie sein sollte, und über die ganze Breite.

Siehe Sceenshot:
   

Wie bringe ich die Box wieder unten auf die rechte Seite?

Hier noch der Template Portal Code:
Code:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="200">
{$welcome}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Downloadbereich</strong>
</td>
</tr>
<tr>
<td class="trow1">
<img border="0" src="images/myBulletin/download.gif" alt="Download"/>
<a href="http://www.ftp5.dyndns.org/forum/bildbearbeitung.php" style="text-decoration: none"><b><font color="#993300">Bildbearbeitung</font></b></a></br>
<img border="0" src="images/myBulletin/download.gif" alt="Download"/>
<a href="http://www.ftp5.dyndns.org/forum/systemtools.php" style="text-decoration: none"><b><font color="#993300">System Tools</font></b></a></br>
<img border="0" src="images/myBulletin/download.gif" alt="Download"/>
<a href="http://www.ftp5.dyndns.org/forum/internettools.php" style="text-decoration: none"><b><font color="#993300">Internet Tools</font></b></a></td>
</tr>
</table><br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>TopTen</strong>
</td>
</tr>
<tr>
<td class="trow1">

<a href="http://www.mein Link.ch" style="text-decoration: none"><b><font color="#000000">Mai 2007</font></b></a></br>

<a href="http://www.mein Link.ch" style="text-decoration: none"><b><font color="#000000">Juni 2007</font></b></a></br>

<a href="http://www.mein Link.ch" style="text-decoration: none"><b><font color="#000000">Juli 2007</font></b></a></br>

<a href="http://www.mein Link.ch" style="text-decoration: none"><b><font color="#000000">August 2007</font></b></a></td>
</tr>
</table><br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Link-Sammlung</strong>
</td>
</tr>
<tr>
<td class="trow1">

<a href="http://www.mein Link.ch" style="text-decoration: none"><b>Link-Liste</b></a></td>
</tr>
</table><br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>PCtipp Newsletter</strong>
</td>
</tr>
<tr>
<td class="trow1">
<script language="JavaScript1.2" src="http://www.pctipp.ch/newsfeed/news.cfm?count=5&width=187&font=Verdana&size=10&color=666666&bg=ffffff&logo=pctipp_logo"></script>
</tr></td>
</table>
{$pms}
<p align="center">
<script language="JavaScript" type="text/javascript" src="http://www.wetter.com/v2/woys2/woys2.js.php?141437,72082fcd5056738b6da29be671770795"></script>
<td valign="top">
{$announcements}
</td>
<td valign="top" width="200">
{$search}
{$latestthreads}
{$whosonline}
{$stats}
</td>
</tr>
</table>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Bitte halt dich daran</strong>
</td>
</tr>
<tr>
<td class="trow1">
<a href="http://www.ftp5.dyndns.org/forum/regeln.php" style="text-decoration: none"><b><font color="#FF9900">Board-Regeln</font></b></a></td>
</tr>
</table>

Danke für eure Hilfe


RE: Portal Box Verschoben und zu lang - linwinman - 05.10.2007

Hallo Beatrice63,

ändere den
Code:
...
{$stats}
</td>
</tr>
</table>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Bitte halt dich daran</strong>
</td>
</tr>
<tr>
<td class="trow1">
<a href="http://www.ftp5.dyndns.org/forum/regeln.php" style="text-decoration: none"><b><font color="#FF9900">Board-Regeln</font></b></a></td>
</tr>
</table>
in
Code:
...
{$stats}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Bitte halt dich daran</strong>
</td>
</tr>
<tr>
<td class="trow1">
<a href="http://www.ftp5.dyndns.org/forum/regeln.php" style="text-decoration: none"><b><font color="#FF9900">Board-Regeln</font></b></a></td>
</tr>
</table>
</td>
</tr>
</table>
Dann sollte es funktionieren.