Hi! I’m using the Brine template (Wav) and trying to customize my the gallery on my page so you can click a button to view thumbnails. I have the button, but I’m stuck on how to show/hide the thumbnail strip. So far, I have added this to the code injection:
<script>function myFunction() { var x = document.getElementById("the div"); if (x.style.display === "none") {
x.style.display = "block"; } else {
x.style.display = "none"; } }</script>
and this is the button on the page:
<button onclick="myFunction()">Thumbnails</button>
<div id="the div"&g