HELP! - Symmetry theme "NEXT 1 | 2 | 3" links not working at bottom of category pages

Can anyone tell me why these wouldn’t be working and what file this part of the code would be in?

https://www.ebodyboarding.com/collections/eyewear

This is the code in my pagination-control.liquid:

{% if paginate.pages > 1 %}

{% if paginate.previous %} « {{ 'general.pagination.previous' | t }} · {% 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 %}

{% endif %}

I DID IT!!!

/* Pagination */
.pagination-row {
text-align: center;
margin-top: 100px;
margin-bottom: 20px;
}