To add number after Link in Text on Squarespace like footer on this site.
First, find link you added to text, in my example, it is: /information
Next, use code like this to Custom CSS.
#siteWrapper a[href="/information"] {
text-decoration: none;
}
#siteWrapper a[href="/information"]:after {
content: "95";
background-color: #f93262;
color: #fff;
padding: 2px 5px;
border-radius: 50%;
margin-left: 5px;
}
Remember to update URL + text + style



