How to add an arrow to the read more blog link
Adding an arrow to the read more blog link can help improve the aesthetics of your website. This tutorial, shows you how to add an arrow to the read more blog link using CSS in Squarespace. All codes used are below.
Complexity: Easy
Simply add the following CSS code to Design > Custom CSS.
Squarespace 7.0
/* Read More Blog Link */ .BlogList-item-readmore span:after { content: "\21FE" !important; }
Squarespace 7.1
/* Read More Blog Link */ .blog-more-link::before { content: "\21FE"; float: right; padding-left: 3px; }
You can then adjust the padding value to your desire size.
HTML Unicode Arrow List
w3schools.com
Toptal