Hi guys, how can I add a link to the logo in my footer that takes users to the homepage? Im using the Taste theme and my website is flammashop.com. I’ve been trying to figure this out for days. Any help is greatly appreciated!
Hi @flammagreg
Try with code change in sections/footer.liquid around line 134 replace the whole div element
{%- when 'image' -%}
{%- if block.settings.image != blank -%}
{%- assign image_size_2x = block.settings.image_width | times: 2 | at_most: 5760 -%}
{%- else -%}
{{ 'image' | placeholder_svg_tag: 'placeholder-svg placeholder' }}
{%- endif -%}
New code I added is
...
It wraps image code.
2 Likes
