Site logo

[Resolved] Sticky footer links not active/working/clickable until I scroll

Home Forums Support [Resolved] Sticky footer links not active/working/clickable until I scroll

Home Forums Support Sticky footer links not active/working/clickable until I scroll

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2428197
    Linda

    I added a sticky footer and it’s working fine, but the links aren’t active until I scroll just a tiny bit. I assume it’s overlapping containers or something, but I am stuck and would appreciate any ideas you folks might have. Link to dev site in private info. Thanks! Linda

    css to stick:
    .my-sticky-footer {
    position: fixed;
    bottom: 0;
    left:0;
    background-color:white;
    width:100%;
    }

    #2428203
    Fernando
    Customer Support

    Hi Linda,

    You’re correct, it’s being covered by another Block which is why it’s not clickable.

    Try adding a z-index rule in your CSS code to address this.

    Example:

    .my-sticky-footer {
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    background-color: white;
                    width: 100%;
                    z-index: 9999;
                }
    #2428210
    Linda

    Oh my gosh, you are amazing! Thank you!!!!

    #2428248
    Fernando
    Customer Support

    You’re welcome, Linda!

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