(Squarespace) Rename Portfolio Pagination Title to Next/Previous Project

To rename Portfolio Pagination Title to Next/Previous Project, like this.

You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or email me.

section.item-pagination[data-collection-type^="portfolio"] {
    .item-pagination-title {
    display: none;
}
    .item-pagination-icon.icon.icon--stroke {
        display: none;
    }
    .item-pagination-prev-next {
        display: block;
        visibility: hidden;
    }
    a.item-pagination-link.item-pagination-link--next .item-pagination-prev-next:after {
        content: "(PREVIOUS PROJECT)";
        visibility: visible;
    }
     a.item-pagination-link.item-pagination-link--prev .item-pagination-prev-next:before {
        content: "(NEXT PROJECT)";
        visibility: visible;
    }
}

Result

image

1 Like