Below you'll find the code for clciking an image on your website and having a button appear so visitors can follow an link to another page or site. WOWZERS!!!Header Code$w.onReady(function () { // Hide the buttons initially $w("#button1, #button2, #button3").hide();Body Code Entire Code $w.onReady(function () { // Hide the buttons initially $w("#button1, #button2, #button3").hide(); // Add a click event to the image $w("#image23").onClick(() => { $w("#button1, #button2, #button3").show(); });}); This is how you get this type of effect of getting a button to appear after clicking an image on your page.