Hi there! So im using a theme called “FKX V2” and I love the theme overall, but my only issue is, figuring out how to have the “ENTER” button on the landing page to fade in, after the full animation of the video is complete. And haven’t been able to figure this out. And same with when i click on my clothing products link in the “Menu Footer” the items won’t load once it’s clicked. Looking for helo to fix this as fast as possible!
Thank you!
Hi @Wickedus ,
Can you send me the site link? I will help you check it
Hi @Wickedus ,
Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:
@-webkit-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.videoBackground .text {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
animation-duration: 10s;
}
It worked! Wanted to see how I could get the video to play first, then have
the enter button appear at the end. Would you have a way on how to do it?
Hi @Wickedus ,
Can I send you a collaborator invitation? it will help me check the animations and give you a solution
Hi @Wickedus ,
You can send me the collaborator request code, I will send you an invitation
Yes just waiting on permission access
Hi @Wickedus ,
Please send collaborator request code via private message, I will send you an invitation to collaborate
I sent one over. Was it seen?
Hi @Wickedus ,
Sorry, I didn’t receive it, can you resend it via private message or email?
I will check it.
Hi @Wickedus ,
I sent the request, after access, I will check it
Just accepted the request!
Hi @Wickedus ,
I received it, will check and notify soon
Hi @Wickedus ,
Please change code:
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.videoBackground .text {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
animation-duration: 10s;
}
Thank you! It still fading in slowly, and we wanted to have the fully animation play than have it show at the end of it all
Hi @Wickedus ,
I don’t understand, you want it to display faster? or how it will be displayed