MyBB.de Forum
Was centern - 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: Was centern (/thread-29841.html)

Seiten: Seiten: 1 2


Was centern - hkkp - 03.06.2014

Hallo,

wahrscheinlich bin ich zu doof dafür, aber es gelingt mir nicht, egal was ich auch probieren dies im Anhang zu centern.


RE: Was centern - MrBrechreiz - 03.06.2014

Da Du warscheinlich schon selbst Hand angelegt hast, müssten wir schon wissen wie dein momentaner Code dazu aussieht.


RE: Was centern - hkkp - 03.06.2014

Code:
.forum_legend, .forum_legend dt, .forum_legend dd {
margin:auto;
font-size:9px;
text-align:center;
}
.forum_legend dd {
float: left;
margin-right: 10px;
}
.forum_legend dt {
margin-right: 10px;
float: left;
}

PHP-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



RE: Was centern - MrBrechreiz - 03.06.2014

Füge dem

Code:
.forum_legend dd

ein

Code:
padding-top:4px;

hinzu.


RE: Was centern - hkkp - 03.06.2014

danke, ich meinte aber eher den ganzen block in die mitte verschieben.


RE: Was centern - MrBrechreiz - 03.06.2014

Dann schreibe es doch auch. Setze vor dem Block ein <center> und nach dem Block </center>


RE: Was centern - hkkp - 03.06.2014

Code:
<center>
<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>
</center>

wenn ich das so mache, dann tut sich überhaupt nichts.


RE: Was centern - MrBrechreiz - 03.06.2014

Dann nimm das dl und dt raus.

Das mit dem centern kann ja auch nicht gehen, solange noch ein float aktiv ist.


RE: Was centern - hkkp - 03.06.2014

PHP-Code:
<div style="text-align:center; padding:5px; border:thin solid black; margin:5px;">
    <
img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}title="{$lang->new_posts}style="vertical-align: middle;" />
    {
$lang->new_posts}&nbsp;&nbsp;&nbsp
    <
img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}title="{$lang->no_new_posts}style="vertical-align: middle;" />
    {
$lang->no_new_posts}&nbsp;&nbsp;&nbsp
    <
img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}title="{$lang->forum_locked}style="vertical-align: middle;" />
    {
$lang->forum_locked
</
div

hab es jetzt so gelöst. das mit dem rausnehmen ging auch nicht iwie.

wo wir dabei sind, wie bekomme ich den abstand kleiner. siehe anlage. danke


RE: Was centern - MrBrechreiz - 03.06.2014

.tfooter ?