Hello,
My site redesign is not yet live so I am unable to provide a URL but I hope someone can help me out. My theme (Envy by WeTheme) allows me to display my collection title on my collections pages but it appears below my collections banner. How can I edit the code below so that the “collection.title” appears as a centered text overlay over the “collection.image” instead? Thank you in advance!
{% if section.settings.collection_image_enable %}
{% if collection.image %}
{% render 'responsive-image' with collection.image, alt: collection.image.alt %}
{% endif %}
{% endif %}
{%- assign limit = section.settings.grid | times: section.settings.rows -%}
{% paginate collection.products by limit %}
{% if collection.handle == 'all' %}
## {{ 'products.general.products_title' | t }}
{% else %}
## {{ collection.title }}
{% endif %}
.