Hi guys, how can I add a link to the image in the footer that takes user to the home page? It should work exactly like the logo in the header. Any help is greatly appreciated! Website: flammashop.com
Depends on the customize page. Can you share a screenshot of that? What theme are you using?
I’m using the Taste free theme.
Taste version 13.0.0
Themes > … > Edit Code > Footer.liquid
Around line 105 you’ll see the “footer-block__brand-info”, add your link right before the div that contains the image and close the link after the div.
It should look something like this:
{%- when 'brand_information' -%}
{%- if settings.brand_image != blank -%}
{%- assign brand_image_height = settings.brand_image_width
| divided_by: settings.brand_image.aspect_ratio
-%}
[
{{
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
}}
](https://YourWebsiteHere.com)
{%- endif -%}
Screenshot highlighting the content within the link:

