MyBB.de Forum
Portal - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.6.x (https://www.mybb.de/forum/forum-58.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-59.html)
+---- Thema: Portal (/thread-24126.html)

Seiten: Seiten: 1 2


RE: Portal - Simon - 15.11.2011

dann musst du eine neue spalte einrichten, also in etwa so:

PHP-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}
{
$pms}
{
$search}
</
td>
<
td>&nbsp;</td>
<
td valign="top">
{
$announcements}

<
td valign="top" width="200">
{
$whosonline}
{
$latestthreads}
{
$stats}
</
td>
</
tr>
</
table>
{
$footer}
</
body>
</
html>
</
body>
</
html

{$welcome}
{$pms}
{$search

erscheinen dabei links und

{$whosonline}
{$latestthreads}
{$stats}

rechts Smile


RE: Portal - Mutant - 15.11.2011

Nein, irgendwie nicht. Jetzt habe ich drei boxen über den Ankündigungen und
3 Boxen da drunter.


RE: Portal - Simon - 15.11.2011

so sry:

PHP-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}
{
$pms}
{
$search}
{
$whosonline}
{
$latestthreads}
{
$stats}
</
td>
<
td>&nbsp;</td>
<
td valign="top">
{
$announcements}

<
td valign="top" width="200">
<
table border="0" cellspacing="1" cellpadding="4" class="tborder">
{
$whosonline}
{
$latestthreads}
{
$stats}
</
table>

</
td>
</
tr>
</
table>
{
$footer}
</
body>
</
html>
</
body>
</
html



RE: Portal - Mutant - 15.11.2011

Immernoch nicht.. wird immer noch da drüber und da drunter angezeigt. Bzw. jetzt
sind die Ankündigungen ganz unten.


RE: Portal - linwinman - 15.11.2011

Hallo Mutant,

verwende diesen 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}
{$pms}
{$search}
</td>
<td valign="top" width="1">&nbsp;</td>
<td valign="top">
{$announcements}
</td>
<td valign="top" width="1">&nbsp;</td>
<td valign="top" width="200">
{$stats}
{$whosonline}
{$latestthreads}
</td>
</tr>
</table>
{$footer}
</body>
</html>



RE: Portal - Mutant - 15.11.2011

Vielen Dank! Genauso wollte ich es haben. Smile


RE: Portal - tomtom - 15.11.2011

Ich empfehle Dir da das ProPortal:
http://community.mybb.com/thread-63463.html

Da findest Du dann auch ein paar Erweiterungen zu.