On the right is a column >
To make the colum or any widget clickable Set the ID of column > Advanced > CSS ID Set “click-column” Use the code below, and put AFTER the column
<script>
document.getElementById("click-column").onclick = function() {myFunction()};
function myFunction() { window.open("https://www.jaybranding.com/code", "_blank"); }
</script>
<style>
/*You can add style to change icon to the hand */
#click-column{ cursor: pointer; }
</style>