Avada › Forums › Community Forum › How to change the link of the logo? › Reply To: How to change the link of the logo?
hi,
i managed to perform such action just in javascript.
i added a code block element in my footer section and added this script :
<script>
const elements = document.getElementsByClassName(‘fusion-column-anchor’);
for (const element of elements) {
element.href = ‘http://www.do-not-go-there.com’;
}
</script>
As long there is only ONE tag using the class ‘fusion-column-anchor’, it should not produce any bug i guess.
it’s a shame AVADA template did not insert a unique ID element on the logo ahref, we could have use it, so we need to search for the Class ‘fusion-column-anchor’ . I hope the class name will not change with the update or time version….