Okay
  Public Ticket #2200386
position fixed header
Closed

Comments

  • joerg started the conversation

    Hi there

    Is there an easy way to have the white nav sticking to the top, instead of having it disappear on scroll?


    Cheers

  •  240
    Elena replied

    Hi Joerg,

    There's not such an option, I am sorry, but what you can do is adding some custom CSS in the Customizer to prevent header from hiding on scroll. For example:

    .site-header.is-header-fixed.is-header-hidden {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }


    Hope that helped.

    Cheers, P.