Making the logo in the footer area clickable

Currently i am using The Ride theme and i wanted to have the logo in my footer area clickable to a certain place on my store. Can someone help me please?
That would be awesome.
Grateful for all !

Hi @Keshh

You can do that from Online Store > Themes > Edit code > open footer.liquid file, find this line of code

{%- when 'brand_information' -%}

Wrap this code

{{
                              settings.brand_image
                              | image_url: width: 1100
                              | image_tag:
                                loading: 'lazy',
                                widths: '50, 100, 150, 200, 300, 400, 550, 800, 1100',
                                height: brand_image_height,
                                width: settings.brand_image_width
                            }}

Into a tag, so it must be like this


                            {{
                              settings.brand_image
                              | image_url: width: 1100
                              | image_tag:
                                loading: 'lazy',
                                widths: '50, 100, 150, 200, 300, 400, 550, 800, 1100',
                                height: brand_image_height,
                                width: settings.brand_image_width
                            }}
                          

Make sure you replace your link goes here with your link

Thank you so much
I was quite skeptical about it at first since i was trying for long to find the exact place but finally it was good.
Grateful for all buddy !