Hi, I’ve been looking all over the code (and the web) and couldn’t find a solution for this. If there’s anyone out there willing and able to help I’ll be so thankful.
We have a subscribe form in our footer, and on desktop, it’s the element on the top:
However, when on mobile, that section goes to the bottom, below the navigation links and other blocks:
I have changed the code so the collapsable list item is always open, so it’s at least shown, but we would like to bring it up to the top so it shows right after the page content, just like on desktop.
This is the only piece of code I’ve found (in footer-template.liquid) that has all those items in one place:
<footer class=" {% if template == 'index' %} {{ item.top_offset }}{% else %} {{ item.top_offset_normal }}{% endif %}">
{%- include "footer_subscribe" -%}
{%- if flp < flp2 -%}
{%- include "footer_links" -%}
{%- include "footer_links_des2" -%}
{%- else -%}
{%- include "footer_links_des2" -%}
{%- include "footer_links" -%}
{%- endif -%}
{%- include "footer_copyright" -%}
</footer>
Any ideas how to do that? Where in the files would that be? We are using the Wokiee theme and the site in question is https://giftay.eu – thanks for any help!

