This topic has 6 replies, 3 voices, and was last updated 3 months, 2 weeks ago ago by Andrew Mitchell
I have a question is there a way to set the Preloading screen to 3 sec visibility time so that it completes playing the gif I have chosen?
Hi @Alfi,
Please try adding this custom CSS under XStore > Theme Options > Theme Custom CSS > Global CSS:
.et-preloader-hide>.et-loader {
display: block;
opacity: 1;
visibility: visible;
z-index: 999;
}
.et-loader {
-moz-animation: cssAnimation 0s ease-in 3s forwards;
/* Firefox */
-webkit-animation: cssAnimation 0s ease-in 3s forwards;
/* Safari and Chrome */
-o-animation: cssAnimation 0s ease-in 3s forwards;
/* Opera */
animation: cssAnimation 0s ease-in 3s forwards;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@keyframes cssAnimation {
to {
width:0;
height:0;
overflow:hidden;
}
}
@-webkit-keyframes cssAnimation {
to {
width:0;
height:0;
visibility:hidden;
}
}
Hope it helps!
Thanks that helped!!!
Just One more question is there a way to make the preload background completely white because it shows in the background the loading site! I still want to see the preload gif or image but the background I would prefer to have completely white not just like it is now during the preload!
Hi @Alfi,
Can you please add this custom CSS code also?
body>.et-loader {
background-color: #fff !important;
}
Hope it helps!
Thanks a lot!
Dear Alfi,
We hope you’re reveling in the experience our theme brings! Your enthusiasm is what fuels our passion. Would you be so kind as to channel that energy into a 5-star rating on ThemeForest? Your feedback is the spark that lights our way!
Click here to spread the love: https://themeforest.net/downloads
Thank you for being an integral part of our journey!
Best Regards,
The 8Theme Team
The issue related to '‘Preload screen time set or modification Question!’' has been successfully resolved, and the topic is now closed for further responses