[Support request] Footer problem

Home Forums Support [Support request] Footer problem

Home Forums Support Footer problem

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1455627
    Emma Riegert

    Hello

    I have tried a lot but don’t find the answer…
    I’d like that my footer stay at the bottom of all the pages, and not visible during the scroll.
    with position fixed, it stays during the scroll…
    Can you help me ?
    thank you

    #1455716
    Leo
    Staff
    Customer Support

    Hi there,

    Just to confirm, you’ve got some CSS working but not for every page?

    That case you will need to target the specific pages that are short in length.

    Let me know if this makes sense ๐Ÿ™‚

    #1455739
    Emma Riegert

    On short page, the footer is at the bottom, and it’s ok. On long page, it stays at the bottom but stays visible during the scroll. It follows the scroll. i’d like that it be not visible. How can I do that ?

    #1455769
    Leo
    Staff
    Customer Support

    Try this CSS:

    body.home .site-footer,
    body.page-id-7 .site-footer,
    body.page-id-8 .site-footer,
    body.page-id-45 .site-footer {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }
    #1455783
    Emma Riegert

    Thank you, it works, so for all the new page , I will have to add her id on the css ?

    #1455787
    Leo
    Staff
    Customer Support

    Yes ๐Ÿ™‚

    #1455789
    Emma Riegert

    Is it the only solution ? thank you

    #1455803
    Leo
    Staff
    Customer Support

    Yes.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.