Changing URL link to logos in header/footer

Hey Carrie,

Please use this custom code to change the header logo URL.

To change the footer logo URL, please use the following.

<script>
document.body.addEventListener('click', (e) => {
    if (e.target.closest('#footer1 img')) {
		document.location.href = 'https://google.com/';
    }
});
</script>
<style>
    #footer1 img {
        cursor: pointer;
    }
</style>

Thanks,

2 Likes