MyBB.de Forum

Normale Version: Copyrights, Versionsinfo und Uhrzeit in die Footer-Zeile setzen
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Ich möchte das Design etwas `cleanen` und diese ganzen Informationen eine Zeile höher setzen. Ist das möglich, und wenn ja, wie?

Grüße aus Dortmund

Marco
Schau mal ob dir das so zu sagt.

Öffne das Footer Templates->footer und ersetze alles mit

Code:
<debugstuff>
</div>
</div>
<div id="footer">
<div class="upper">
<div class="wrapper">
{$lang_select}
{$theme_select}
<ul class="menu bottom_links">
{$contact_us}
<li><a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a></li>
<li><a href="#top">{$lang->bottomlinks_returntop}</a></li>
<li><a href="<archive_url>">{$lang->bottomlinks_litemode}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=cookielaw_info">{$lang->cookielaw_footer}</a></li>


<li><a href="impressum.php">Impressum</a></li>
<li><a href="disclaimer.php">Haftungsausschluss</a></li>
<li><a href="https://www.mybb.de/impressum/unterstuetzung/" target="_blank" title="Untersützt mybb.de mit einer kleinen Spende">Untersützt mybb.de</a></li>
</ul>
<br class="clear" />
<div class="lower">
<span id="current_time">{$lang->welcome_current_time}</span>
<span id="copyright">
<!-- MyBB is free software developed and maintained by a volunteer community.
It would be much appreciated by the MyBB Group if you left the full copyright and "powered by" notice intact,
to show your support for MyBB.  If you choose to remove or modify the copyright below,
you may be refused support on the MyBB Community Forums.

This is free software, support us and we'll support you. -->
{$lang->powered_by} <a href="https://mybb.com" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="https://mybb.com" target="_blank">MyBB Group</a>.
<!-- End powered by -->
</span>
</div>
</div>
</div>

</div>
<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
{$auto_dst_detection}
</div>
Top! Danke.

Warum bist du eigentlich nicht mehr im Team...? ;-)
Keine Zeit, keine Lust. Gründe auch gern privat.
(14.10.2017, 19:25)MrBrechreiz schrieb: [ -> ]Schau mal ob dir das so zu sagt.


...und wenn du mal viel Zeit hast: Alles in eine Zeile und ein bissel kleinere Schrift als der Rest. Ist doch unwichtiges Gedöns ;-) Datum und Uhrzeit kann sowieso weg. Wer braucht das?

Aktuell: ---> http://marcokollmann.de/scooteristen/index.php
Uhrzeit weg geht mit der Löschung dieser Zeile

Code:
<span id="current_time">{$lang->welcome_current_time}</span>

In der global.css findest Du dies

Code:
#footer .lower

und darunter die Link-Definitionen. Diese kannst Du deinen bedürfnissen her anpassen.
Hat gefunzt. Nun schau ich mal wie ich alles in eine Reihe bekommen. Falls du es sofort weißt, sag Bescheid
Footer Template ersetzen mit

Code:
<debugstuff>
    </div>
</div>
<div id="footer">
    <div class="upper">
        <div class="wrapper">
            {$lang_select}
            {$theme_select}
            <ul class="menu bottom_links">
                {$contact_us}
                <li><a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a></li>
                <li><a href="#top">{$lang->bottomlinks_returntop}</a></li>
                <li><a href="<archive_url>">{$lang->bottomlinks_litemode}</a></li>
                <li><a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></li>
                <li><a href="{$mybb->settings['bburl']}/misc.php?action=cookielaw_info">{$lang->cookielaw_footer}</a></li>
                <li><a href="impressum.php">Impressum</a></li>
                <li><a href="disclaimer.php">Haftungsausschluss</a></li>
                <li><a href="https://www.mybb.de/impressum/unterstuetzung/" target="_blank" title="Untersützt mybb.de mit einer kleinen Spende">Untersützt mybb.de</a></li>
            </ul>
                <span id="copyright" class="float_right">
                    <!-- MyBB is free software developed and maintained by a volunteer community.
It would be much appreciated by the MyBB Group if you left the full copyright and "powered by" notice intact,
to show your support for MyBB.  If you choose to remove or modify the copyright below,
you may be refused support on the MyBB Community Forums.

This is free software, support us and we'll support you. -->
                    {$lang->powered_by} <a href="https://mybb.com" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="https://mybb.com" target="_blank">MyBB Group</a>.
                    <!-- End powered by -->
                </span>
        </div>
    </div>
    
</div>
<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE -->{$task_image}<!-- End task image code -->
{$auto_dst_detection}
</div>