Reply To: Problem with FullScreen Youtube video

Homepage Community Forums Aspire Theme Support Problem with FullScreen Youtube video Reply To: Problem with FullScreen Youtube video

#22541
Wes
Moderator

    The fadeup effect is what you see when you visit the homepage. As you scroll down the widgets fade upwards slowly. Take a look at the Aspire demo to see what I’m referring to – http://demo.appfinite.net/aspire/

    Notice when you load the page, all of the widget content (text and images) rise up in to their place? It only happens once. So in order to repeat it you would have to reload the page.

    There are 3 ways to fix the issue. You could either adjust the code in the front-page.php file (looks like you’ve already done that), or you could edit your style.css.

    I would recommend adding this to your Customizer > Additional CSS if you don’t want to edit any of the theme files –

    .fadeInUp {
        -webkit-animation-name: none;
        animation-name: none;
    }

    If you add that, then you shouldn’t have to worry about editing the front-page.php or style.css file (in case of any updates).