MyBB.de Forum

Normale Version: Forum Legende zentrieren
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Wie kann ich die Forum Legende auf der Startseite zentrieren?
(Forum enthält neue Beiträge,Forum enthält keine neuen Beiträge, Forum ist geschlossen)

in welchem Template?

Liebe GrüßeShy
Ich habe das bei mir so gemacht ... ersetze im Template Startseite Templates --> index

Code:
<dl class="forum_legend smalltext">
    <dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
    <dd>{$lang->new_posts}</dd>

    <dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
    <dd>{$lang->no_new_posts}</dd>

    <dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
    <dd>{$lang->forum_locked}</dd>
</dl>

durch

Code:
<center>
<span class="smalltext">
<img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align:middle; padding-right:10px;" />{$lang->new_posts}
<img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align:middle; padding-right:10px; margin-left:40px;" />{$lang->no_new_posts}
<img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align:middle; padding-right:10px; margin-left:40px;" />{$lang->forum_locked}
</span>
</center>

Evtl. noch davor und/oder danach zusätzliche <br /> für den Abstand einfügen.

Wenn dein Forum keine feste Breite hat, könntest du auch den erst genannten Code durch

Code:
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="smalltext" width="33%" align="center"><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align:middle; padding-right:10px;" />{$lang->new_posts}</td>
<td class="smalltext" width="34%" align="center"><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align:middle; padding-right:10px;" />{$lang->no_new_posts}</td>
<td class="smalltext" width="33%" align="center"><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align:middle; padding-right:10px;" />{$lang->forum_locked}</td>
</tr>
</table>

ersetzen, damit sich die Breite der Legende dynamisch anpasst.