Forum Discussion
JamesonMattice
29 days agoCommunity Member
Assuming you want to keep the lightbox feature, you can do this using Javascript in your Storyline project. On the slide you are lightboxing, add a trigger to execute Javascript when the timeline starts. Just use this code:
//Hide lightbox close button
if (document.getElementsByClassName("lightbox-close-btn-floating").length > 0) {
document.getElementsByClassName("lightbox-close-btn-floating")[0].style.display = "none";
}
If you want to show the close button, just use "inline" instead of "none".