Blog
Looking to customise your Squarespace site with code? This post is part of the DIY | LIBRARY —a growing collection of practical code snippets designed for Squarespace users who want to take control of their site’s design and functionality. Whether you’re tweaking your navigation, adjusting your mobile menu, or styling buttons, these copy-paste solutions are clean, reliable, and built with SEO and usability in mind. Bookmark this space for easy access to Squarespace custom code that works.
-
/* Change blog category dividers */ span.blog-categories--comma { visibility: hidden; }
span.blog-categories--comma:after {
content: "•";
visibility: visible;
padding-right: 5px;
}
/* Change blog category dividers END */
-
/* Newer posts /
nav.blog-list-pagination .prev-label {
visibility: hidden;
}
nav.blog-list-pagination .prev-label:before {
visibility: visible;
content: "New prev text";
}
/ Older posts */
nav.blog-list-pagination .next-label {
visibility: hidden;
}
nav.blog-list-pagination .next-label:after {
visibility: visible;
content: "new next text";
}