How can I add a logo to the footer of the Highlight Theme?

Hey guys,

Trying to add logo to footer. I’ve tried to add this to the footer.liquid, however not having much luck.

LOGO

Image attached is desired look. Happy to remove the p text though if it will allow the logo to fit better.

Website URL: https://soundlab-melbourne.myshopify.com/

Password: thesoundlabmelbourne

1 Like

@Hannaht2

can you please check footer block section may be allow or send footer code

@KetanKumar Footer code below, let me know if you want me to give you access instead :slightly_smiling_face:

{%- for block in section.blocks -%}

{%- liquid
assign index = forloop.index | modulo: 2
assign css_class = ‘four-tenths lap–full-width’
if index == 0
assign css_class = css_class | append: ’ push-left-two-tenths lap–push-left-none’
endif
-%}

{%- case block.type -%}

{%- when ‘text’ -%}

{%- unless block.settings.title == blank -%}

{{ block.settings.title | escape }}
{%- endunless -%}
{{ block.settings.content }}

{%- when ‘menus’ -%}

{%- unless block.settings.menu_1 == blank -%}

LOGO

{%- unless block.settings.title_1 == blank -%}

{{ block.settings.title_1 | escape }}
{%- endunless -%}
{%- for link in linklists[block.settings.menu_1].links -%} {{ link.title | escape }} {%- endfor -%}

{%- endunless -%}

{%- unless block.settings.menu_2 == blank -%}

{%- unless block.settings.title_2 == blank -%}

{{ block.settings.title_2 | escape }}
{%- endunless -%}
{%- for link in linklists[block.settings.menu_2].links -%} {{ link.title | escape }} {%- endfor -%}

{%- endunless -%}

{%- when ‘newsletter’ -%}

{%- unless block.settings.title == blank -%}

{{ block.settings.title | escape }}
{%- endunless -%}

{%- assign form_id = ‘newsletter-form-’ | append: block.id -%}
{%- render ‘newsletter-form’, id: form_id, type: ‘block’ -%}
{%- unless block.settings.text == blank -%}

{{ block.settings.text }}
{%- endunless -%}

{%- when ‘social’ -%}

{%- unless block.settings.title == blank -%}

{{ block.settings.title | escape }}
{%- endunless -%}

{%- render ‘social-icons’ -%}

{%- when ‘image’ -%}

{%- unless block.settings.title == blank -%}

{{ block.settings.title | escape }}
{%- endunless -%}

{%- if block.settings.image -%}
{{ block.settings.image.alt }}
{%- else -%}

{{ ‘image’ | placeholder_svg_tag }}

{%- endif -%}

{%- endcase -%}

{%- endfor -%}

{%- liquid

if section.settings.show_country_selector and localization.available_countries.size > 1
assign country_selector = true
endif

if section.settings.show_locale_selector and localization.available_languages.size > 1
assign locale_selector = true
endif

if section.settings.show_payment_icons and shop.enabled_payment_types != empty
assign payment_icons = true
endif

-%}

{%- if country_selector or locale_selector or payment_icons -%}

{%- render ‘localization-form’, location: ‘footer’, show_country_selector: section.settings.show_country_selector, show_locale_selector: section.settings.show_locale_selector -%}

{%- if payment_icons -%}

{%- for type in shop.enabled_payment_types -%} {{ type | payment_type_svg_tag }} {%- endfor -%}
{%- endif -%}

{%- endif -%}

{{ 'general.copyright' | t }} © {{ 'now' | date: "%Y" }} {{ shop.name | escape }}.

{% schema %}
{
“name”: “Footer”,
“class”: “section-w-mobile-padding ten-tenths lap–full-width push-left-one-tenth lap–push-left-none”,
“max_blocks”: 4,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_payment_icons”,
“label”: “t:sections.footer.settings.show_payment_icons.label”,
“default”: true
},
{
“type”: “header”,
“content”: “t:sections.footer.settings.language_selector.content”,
“info”: “t:sections.footer.settings.language_selector.info”
},
{
“type”: “checkbox”,
“id”: “show_locale_selector”,
“label”: “t:sections.footer.settings.language_selector_show.label”,
“default”: true
},
{
“type”: “header”,
“content”: “t:sections.footer.settings.country_selector.content”,
“info”: “t:sections.footer.settings.country_selector.info”
},
{
“type”: “checkbox”,
“id”: “show_country_selector”,
“label”: “t:sections.footer.settings.country_selector_show.label”,
“default”: true
}
],
“blocks”: [
{
“type”: “text”,
“name”: “Text”,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “t:sections.footer.blocks.text.settings.title.label”,
“default”: “Contact information”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “t:sections.footer.blocks.text.settings.content.label”,
“default”: “

Write a short statement about your brand.


}
]
},
{
“type”: “menus”,
“name”: “t:sections.footer.blocks.menus.name”,
“settings”: [
{
“type”: “text”,
“id”: “title_1”,
“label”: “t:sections.footer.blocks.menus.settings.title_1.label”,
“default”: “Menu”
},
{
“type”: “link_list”,
“id”: “menu_1”,
“label”: “t:sections.footer.blocks.menus.settings.menu_1.label”,
“default”: “footer”,
“info”: “t:sections.footer.blocks.menus.settings.menu_1.info”
},
{
“type”: “text”,
“id”: “title_2”,
“label”: “t:sections.footer.blocks.menus.settings.title_2.label”,
“default”: “Menu”
},
{
“type”: “link_list”,
“id”: “menu_2”,
“label”: “t:sections.footer.blocks.menus.settings.menu_2.label”,
“info”: “t:sections.footer.blocks.menus.settings.menu_1.info”
}
]
},
{
“type”: “newsletter”,
“name”: “t:sections.footer.blocks.newsletter.name”,
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “t:sections.footer.blocks.text.settings.title.label”,
“default”: “Newsletter”
},
{
“type”: “richtext”,
“id”: “text”,
“label”: “t:sections.highlight-extra-words.caption.label”,
“default”: “

Invite customers to join your newsletter.
Link to your privacy policy.


}
]
},
{
“type”: “social”,
“name”: “t:sections.footer.blocks.social.name”,
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “t:sections.footer.blocks.text.settings.title.label”,
“default”: “Follow us”
}
]
},
{
“type”: “image”,
“name”: “t:sections.footer.blocks.image.name”,
“settings”: [
{
“type”: “text”,
“id”: “title”,
“label”: “t:sections.footer.blocks.text.settings.title.label”,
“default”: “Image”
},
{
“type”: “image_picker”,
“id”: “image”,
“label”: “t:sections.footer.blocks.image.settings.image.label”
}
]
}
]
}
{% endschema %}

@Hannaht2

Replace block

{{ block.settings.content }}
with below code

          

        

Here is the output

@SagarSukhanandi THANK YOU SO SO MUCH!