[Support request] Sticky top button above the post

Home Forums Support [Support request] Sticky top button above the post

Home Forums Support Sticky top button above the post

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2004550
    David

    Hello,

    is it possible to create a sticky button above the post-content with generatepress?
    Here is one example:
    https://markuscerenak.com/pareto-prinzip.html

    Thank you,
    David

    #2004685
    David
    Staff
    Customer Support

    Hi there,

    you can use CSS position sticky.
    Give any Block within your content a CSS class of sticky-element

    Then add this CSS:

    .sticky-element {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    Adjust the top value to set how far from the container top edge it will stick.

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