MyBB.de Forum
Advanced Top Box - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Ideen und -Wünsche (https://www.mybb.de/forum/forum-73.html)
+--- Thema: Advanced Top Box (/thread-34210.html)



Advanced Top Box - bartbart - 07.02.2017

Hallo, ich suche ein Plugin womit ich eine Top Box erstellen kann. Das heißt eine Box die über dem Forum selbst erstellt wird und der Inhalt von mir nach belieben gefüllt werden kann.

Ich benutze zur Zeit das Plugin Advanced Sidebox aber damit kann man, wie der Name schon sagt, nur Boxen in der Seite erstellen.

Vielleicht gibt es sowas ja schon, wäre super wenn mir jemand helfen kann.

Danke!

Gruß


RE: Advanced Top Box - SvePu - 07.02.2017

Hallo und willkommen im Forum.

Auf welche(r/n) Seite(n) soll die Box zu sehen sein?


RE: Advanced Top Box - bartbart - 07.02.2017

Danke für die Rasche Antwort.

Falls es ein Plugin werden soll, natürlich auswählbar. (Wie bei ASB)
In meinem Fall möchte ich es im Index sichtbar machen.

Ich hoste einen Gameserver und der Besucher meines Forums soll in dieser Top Box alle wichtigen Informationen inkl. LiveStats Banner zu sehen bekommen.

Gruß


RE: Advanced Top Box - MrBrechreiz - 07.02.2017

Kann man doch auch flott per Hand ins entsprechende Template einbauen ?


RE: Advanced Top Box - bartbart - 07.02.2017

Okay das hört sich doch schon mal sehr vielversprechend and. Gibt es dazu eine Anleitung?

Gruß


RE: Advanced Top Box - SvePu - 07.02.2017

Probiere mal bitte das folgende, einfache Plugin:

.php   indexbox.php (Größe: 4,59 KB / Downloads: 17)


RE: Advanced Top Box - MrBrechreiz - 08.02.2017

Ich habe dir zwei Möglichkeiten bereit gestellt.

Klassische Tabellenform

Code:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
    <thead>
        <tr>
            <td class="thead{$collapsedthead['extrabox']}">
                <div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['extrabox']}.png" id="extrabox_img" class="expander" alt="[-]" title="[-]" /></div>
                <strong>Überschrift</strong>
            </td>
        </tr>
    </thead>
    <tbody style="{$collapsed['extrabox_e']}" id="extrabox_e">
        <tr>
            <td class="tcat"><strong>Beschreibung</strong></td>
        </tr>
        <tr>
            <td class="trow1"><span class="smalltext">Inhalt 1</span></td>
        </tr>
        <tr>
            <td class="trow2"><span class="smalltext">Inhalt 2</span></td>
        </tr>
    </tbody>
</table><br />

Und das Ganze in Div Containers

Code:
<div class="tborder" style="width:auto;">
    <div class="thead{$collapsedthead['extrabox2']}">
        <div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['extrabox2']}.png" id="extrabox2_img" class="expander" alt="[-]" title="[-]" /></div>
        <strong>Überschrift 2</strong>
    </div>
    <div style="{$collapsed['extrabox2_e']}" id="extrabox2_e">
        <div class="tcat"><strong>Beschreibung 2</strong></div>
        <div class="trow1" style="padding:6px;"><span class="smalltext">Inhalt 1</span></div>
        <div class="trow2" style="padding:6px;"><span class="smalltext">Inhalt 2</span></div>
    </div>
</div><br />


Wenn Du Fragen hast, dann frag ruhig nach.


RE: Advanced Top Box - bartbart - 11.02.2017

Hab alles hinbekommen, vielen Danke für die tolle Hilfe!!! :-)

Gruß


RE: Advanced Top Box - MrBrechreiz - 11.02.2017

Und für was hast Du dich letztendlich entschieden, wenn man Fragen darf ?


RE: Advanced Top Box - bartbart - 08.03.2017

Ich benutze das Plugin Advanced Sideboxes und habe selber eine Box oben nach dem Header erstellt für meinen Live-Stats Banner. Schönes System, sieht im Prinzip aus wie ein Portal nur doch ein bisschen anders.

Gruß