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
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
You mean in the quick css :)
I added it to functions.php and it broke my site
Hi navindesigns,
I apologize, and you’re right it’s for Quick CSS. :(
I have modified my previous response.
Best regards,
Nikko
It worked like a charm
thank you so much!!!