(Squarespace) How to remove title from blog pagination

To remove Title from Blog Pagination.

You can use this code to Custom CSS.
You can also use this free blog tool so you can customize blog easier without using code.

/* remove title on blog pagination */
.item-pagination[data-collection-type^="blog"] .item-pagination-title {
    display: none;
}

Result

image

1 Like