Hi all,
I am using the Ira theme for my store.
Two of the links in my footer are anchor links to a specific div (Contact Us and Join Our Team). I need to offset these links by ~100px to accommodate the fixed header. To accomplish this, I’m referencing this solution.
I need to assign the class=anchor to these two links for this to work. When using the web inspector, I can see the HTML code and add the class as a test. However, that HTML code is generated with liquid. Is there a way to assign a class to these two links using liquid? Or perhaps there’s another solution to offset these links.
This is how the footer links are coded in footer.liquid:
{%- elsif block.type == 'links' -%}
{% if linklists[block.settings.link_list].links.size > 0 %}
{% for link in linklists[block.settings.link_list].links %}
- {{ link.title }}
{% endfor %}
{% endif %}
Here is the site url if you want to take a look:
https://ritual-chocolate-1303.myshopify.com/
password: 70%cacao
Thanks in advance!



