Go to custom codes > Custom JS (Body) and paste the following:
<script>
let timeInMinutes = 0.1;
let mySec = document.querySelector(".delay_sec");
mySec.style.opacity = 0;
setTimeout(hideSec, timeInMinutes*60*1000);
function hideSec(){
mySec.classList.add("fadeIn");
}
</script>
3 - Usage:
Now, you can select any element, go to advanced and give it the class ‘delay_sec’, and it will fade in, in about 0.1min. PS: Change the value of timeInMinutes from 0.1 to 10 for a 10 minutes delay.