Before you ask please READ THIS

How to move white bar with copyright informations to the bottom and hide

edited June 2020 in Rife Posts: 43
Hello,

On protect page https://skrzynecka5.js-metals.pl/i/album-1/ I have white bar with informations: © 2020 • K.SKRZYNECKA and Created by Internet Space.
On monitor (resolution 1920 x 1080) this white bar is in the center.
How can I move this white bar to the bottom on every device and show this bar only when someone scroll site up, the same like it is on main site https://skrzynecka5.js-metals.pl ?

Kind regards,
Arek
Post edited by Arek on

Comments

  • AirAir
    Posts: 10,970
    Hey :-)

    This should be relatively easy but it isn't as solutions that make footer stick to the bottom can affect layout in other places.

    I can not give you exact result thaht you want, however for your situation you could try adding such custom CSS:
    body.single-album.password-protected #footer{
        position: fixed;
        bottom: 0;
    }
    If you want to hide footer so it need to be scrolled into try this instead, however I am not 100% sure it will work everywhere:
    body.single-album.password-protected #footer{
    position: absolute;
    bottom: -56px;
    }
    WIth kind regards.
  • Posts: 43
    Hey,

    Thank you very much for help, now it looks great :-)

    Kind regards,
    Arek
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion