Can anyone tell me why these wouldn’t be working and what file this part of the code would be in?
This is the code in my pagination-control.liquid:
{% if paginate.pages > 1 %}
{% if paginate.previous %}
« {{ 'general.pagination.previous' | t }}
·
{% endif %}
{% endif %}
{% for part in paginate.parts %}
{% if part.is_link %}
{{ part.title | link_to: part.url }}
{% else %}
{{ part.title }}
{% endif %}
{% endfor %}
{% if paginate.next %}
·
{{ ‘general.pagination.next’ | t }} »
{% endif %}
I DID IT!!!
/* Pagination */
.pagination-row {
text-align: center;
margin-top: 100px;
margin-bottom: 20px;
}