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

    Is it possible to fade in an entire page?

    I am able to add the fade in effect on all the images on the page but I would like for it to be applied to the entire page

    #1177397

    Hey navindesigns,

    Can you try to add this CSS code in functions.php Quick CSS (located in Enfold > General Styling):

    #top {
        -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
           -moz-animation: fadein 2s; /* Firefox < 16 */
            -ms-animation: fadein 2s; /* Internet Explorer */
             -o-animation: fadein 2s; /* Opera < 12.1 */
                animation: fadein 2s;
    }
    
    @keyframes fadein {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    
    /* Firefox < 16 */
    @-moz-keyframes fadein {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    
    /* Safari, Chrome and Opera > 12.1 */
    @-webkit-keyframes fadein {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    
    /* Internet Explorer */
    @-ms-keyframes fadein {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
    
    /* Opera < 12.1 */
    @-o-keyframes fadein {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 4 years, 10 months ago by Nikko.
    #1177996

    You mean in the quick css :)

    I added it to functions.php and it broke my site

    #1178559

    Hi navindesigns,

    I apologize, and you’re right it’s for Quick CSS. :(
    I have modified my previous response.

    Best regards,
    Nikko

    #1178565

    It worked like a charm

    thank you so much!!!

    #1178681

    Hi,

    Great, I’m glad that Nikko could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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