Enable marquee in the header and footer
In marquee.liquid, change disabled to enabled.

{% schema %}
{
"name": "t:names.marquee",
"enabled_on": {
"groups": ["header", "footer"]
},
Related Articles
Remove the header and footer from a specific landing page
Add this code before </body> tag in your theme.liquid file: {% if page.handle == 'x' %} <style> .header, footer {display: none;} </style> {% endif %}
Reduce menu link padding in the footer
In the footer section, add the following in the custom css: .list-menu__item--link { padding: 0px; }
Reduce the text for newsletter signup in the footer
In the footer section, add in the following in custom css: .footer-block__newsletter .footer-block__heading, .newsletter-form__field-wrapper .field__label { font-size: 14px !important; }
Make copyright in the footer to center
From your Shopify admin dashboard, click on "Online Store" and then "Themes". Find the theme that you want to edit and click on "Actions" and then "Edit code". In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on ...
Adjust footer layout to center on mobile view
In the footer section, add the following in the custom css: @media only screen and (max-width: 749px) { .list-menu__item { justify-content: center; } .footer-block.grid__item.scroll-trigger.animate--slide-in { text-align: center; } ...