Hi everyone,
I want to remove the heading and announcement bar from my homepage only in the dawn theme in order to create a more streamlined landing page.
Heres is my store URL:
Thanks!
A user wants to remove the header and announcement bar exclusively from their homepage in Shopify’s Dawn theme to create a streamlined landing page.
Solution Provided:
display:none and visibility:hiddenCode Structure:
{% if template.name == "index" %}
[CSS to hide announcement bar and header]
{% endif %}
Outcome:
Hi everyone,
I want to remove the heading and announcement bar from my homepage only in the dawn theme in order to create a more streamlined landing page.
Heres is my store URL:
Thanks!
@sev1 - add this code before your in theme.liquid file and check
{% if template.name == "index" %}
{% style %}
.announcement-bar-section{display:none; visibility:hidden;}
.section-header.shopify-section-group-header-group{display:none; visibility:hidden;}
{% endstyle %}
{% endif %}
Thank you, Suyash, your skill is admirable.
Happy to help.