Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2941502
Sticky Footer
Closed

Comments

  •  1
    dillonwalsh started the conversation

    Hi,

    How can I create a sticky footer in Soledad? As you can see on my home page, my sections are sticky to bottom with the z-indexes from high to low so that sections are revealed under other sections on scroll. How can I make the last section reveal the footer?

    Thank you.

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    @media only screen and (min-width: 1170px) {
        body {
            padding-bottom: 186px;
        }
        #footer-section {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
        }
    }

    Note the code above displays the footer as sticky on the desktop only.

    Regards,
    PenciDesign.



  •  1
    dillonwalsh replied

    That was fast service AND perfect fix, thank you so so much!!!