• Resolved stevenmatts

    (@stevenmatts)


    Hi, i need to offset top margin of sticky element. There is an option “Space between top of page and sticky element”, but i need this space only on mobile. Is there a way to overcome this?

Viewing 1 replies (of 1 total)
  • Plugin Author Alexandru Tapuleasa

    (@talextech)

    Hi,

    That could be done by adding some Custom CSS to your theme’s settings. Just add a media rule and target the element with something like this:
    @media only screen and (max-width: 800px)?{
    .element-is-sticky{
    top:100px !important;
    }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Offset sticky element on mobile’ is closed to new replies.