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 #3359907
Strange Scroll On Mobile for Sticky Header
Closed

Comments

  • Create-X started the conversation

    Hi there! We have enabled the sticky header and mobile we have a strange behavior. Here's a video explanation:

    https://www.loom.com/share/06d1fcd94e074540a4277cdab3d28145

    Thanks! 
    Kind regards,

    Plamen

  •  2,263
    PenciDesign replied

    Hi,

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

    @keyframes mobilesticky {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    .penci_navbar_mobile.mobile-sticky {
        animation-duration: 0.3s;
        animation-name: mobilesticky;
        animation-iteration-count: 1;
    }

    Regards,
    PenciDesign.