[Resolved] fade-in-block

Home Forums Support [Resolved] fade-in-block

Home Forums Support fade-in-block

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2324547
    Heinrich

    here we go

    #2324551
    David
    Staff
    Customer Support

    Hi there,

    for subject reference:

    https://generatepress.com/forums/topic/show-button-in-generator-blocks-time-controlled/#post-2324489

    I can see the ID attached to a Container Block that has no content inside it ? And so you can’t see any change.
    Can you make sure you added the HTML Anchor to the correct block ?

    #2324565
    Heinrich

    hi david, check again please

    #2324585
    David
    Staff
    Customer Support

    Change this CSS:

    #fade-in-block {
        opacity: 0;
        transition: opacity 0.2s ease-in;
        transition-delay: opacity 5s;
    }
    #fade-in-block.active {
        opacity: 1;
    }

    to:

    #fade-in-block {
        opacity: 0;
        transition: opacity 0.2s ease-in;
        transition-delay: 5s;
    }
    #fade-in-block.active {
        opacity: 1;
    }
    #2324603
    Heinrich

    hi perfect working, tks for help

    #2324617
    David
    Staff
    Customer Support

    Glad to hear that

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