hello, i would like to move my button label for my featured collection so that it is below my heading, as it is currently at the bottom of the collection:
this is my store, i would like it to look something like this:
website is www.antico-abito.com , password is chasha , theme is dawn
Hello,
You are currently using 2 different sections:
- Rich text section for the title
- Featured collection for the products and the button
You have 2 options here.
Option 1 (the easier solution)
Add a button in the Rich text section and link it to the specified collection.
Option 2
Remove the Rich text section and add the title through the Featured collection (it has an option for a title). Then, you need to make some code modifications to change the position. Go to Online store → Themes → Edit code and find the file sections/featured-collection.liquid.
On line 183, you’ll see this code:
{%- if section.settings.show_view_all and more_in_collection -%}
{{ 'sections.featured_collection.view_all' | t }}
{%- endif -%}
Cut it and paste it on line 88, after this piece of code:
{%- if section.settings.title != blank -%}
##
{{ section.settings.title }}
{%- endif -%}
{%- if section.settings.description != blank
or section.settings.show_description
and section.settings.collection.description != empty
-%}
{%- if section.settings.show_description -%}
{{ section.settings.collection.description }}
{%- else -%}
{{ section.settings.description -}}
{%- endif %}
{%- endif -%}
This will change the position of the button. I hope this is helpful.