MyBB.de Forum

Normale Version: WillkommensBox im Portal
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Also,
ich möchte gerne in mein Portal eine Art WillkommensBox machen.
Hier ist mal ein Beispiel, ihr könnt den Link sofort löschen:
* Link entfernt *
Sowas möchte ich auch gerne haben.
Aber weiß leider nicht wie ich das im Template portal.php machen soll.
Könnte mir da villt einer ein Code geben, oder ein Screen ?
Das wär sehr nett.

MFG
Du kannst den Code einfach im Template portal an die gewünschte Stelle einfügen. Hier ein Beispiel für eine einfache Box:
Code:
<table width="100%" border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<thead>
<tr class="thead">
<td>&Uuml;berschrift</td>
</tr>
<thead>
<tbody>
<tr class="trow1">
<td><!-- Inhalt hier --></td>
</tr>
</tbody>
</table>
Okay, und wo setzt man den jetzt ein so wie bei BastisBoard ?
Also wo drunter ?
mein Portal Template (Test Forum) schaut so aus:
Zitat:<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}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td>
<td>&nbsp;</td>
<td width="*" valign="top">
<table width="100%" border="0" cellspacing="$theme[borderwidth]" cellpadding="0" class="tborder">
<thead>
<tr class="thead">
<td>Test Box</td>
</tr>
<thead>
<tbody>
<tr class="trow1">
<td>Test Inhalt</td>
</tr>
</tbody>
</table>
</br>

{$announcements}
</td>
</tr>
</table>
{$footer}
</body>
</html>
Effektiv gebauchen konnte ich nur den roten Teil.
Das ganze schaut dann so aus:

[Bild: http://img402.imageshack.us/img402/595/image2us7.th.jpg]
Ahh danke, es klappt Big Grin