MyBB.de Forum
WillkommensBox im Portal - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: WillkommensBox im Portal (/thread-4787.html)



WillkommensBox im Portal - Dark Master X - 04.02.2007

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


RE: WillkommensBox im Portal - Michael - 04.02.2007

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>



RE: WillkommensBox im Portal - Dark Master X - 04.02.2007

Okay, und wo setzt man den jetzt ein so wie bei BastisBoard ?
Also wo drunter ?


RE: WillkommensBox im Portal - voyager8000 - 04.02.2007

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]


RE: WillkommensBox im Portal - Dark Master X - 04.02.2007

Ahh danke, es klappt Big Grin