Showing and hiding text

So, I have text and a button underneath my video.

I want to hide the text and button for 25 minutes, from when a user enters my site. When it hits 25 minutes then
I want to show the text and button.

Is it possible for me to do this, I’ve tried many coding but none of them seems to work. Could you please provide me with steps to do this.

Thank You,

hide the text and button through the properties menu, hidden on load, then code:

setTimeout(() => {
$w(‘#text1’).show();
$w(‘#button1’).show();
}, 1500000);

@issacahmed2 ,
Do the opposite -
Make it hidden on load and use .show() inside the setTimeout() that Mike provided.

@jonatandor35
haha my bad, corrected now

@mikemoynihan99 Thank you so much for the quick reply, I entered the code and it worked. Thank you.

@jonatandor35 Thank you so much for the quick reply, I entered the code and it worked. Thank you.