Goals with timer

Dxllsupremo

New Member
Hello, I would like to know if there is any way to put a "timer" on the goals of followers, subs, etc...? Example: the sub goal appears, it stays for 5 minutes and disappears, returning after 20 minutes? And so it goes.
 

Mila001

New Member
Simplest way is to add to goal's browser source Custom CSS the following

body { background-color: rgba(0, 0, 0, 0); margin: 0px auto; overflow: hidden;animation: fadeIn 1600s linear infinite alternate;}

@keyframes fadeIn {
0%, 89% {
opacity: 0;
}
90% {
opacity: 1;
}
}
 
Top