Copyright Gambio

Thema wurde von Romantic White Gaby, 3. Februar 2018 erstellt.

  1. Romantic White Gaby

    Romantic White Gaby Erfahrener Benutzer

    Hallo,

    ich habe in der footer-USERMOD.html einen Zeileneintrag hinzugefügt.


    {block name="module_footer_inside_copyright"}
    <div class="footer-bottom">Copyright © 2018 Romantic White - Gabriele Frey</div>
    <div class="footer-bottom">{$COPYRIGHT_FOOTER}</div>
    {/block}

    der Zeilenabstand zwischen den beiden ist mir zu gross.
    Was muss ich tun, damit der Zeilenabstand kleiner wird.


    upload_2018-2-3_7-40-14.png
    Gruß
    Michael
     
  2. Anonymous

    Anonymous Erfahrener Benutzer

    Code:
    #footer .footer-bottom {
       padding-top: 10px;    // derzeit 15px
    }
     
  3. Manni_HB

    Manni_HB G-WARD 2012/13/14/15

    Vielleicht so besser:
    Code:
    {block name="module_footer_inside_copyright"}
    <div class="footer-bottom">Copyright © 2018 Romantic White - Gabriele Frey<br />{$COPYRIGHT_FOOTER}</div>
    {/block}