[Solved] How can I change the word “comment” in a Squarespace6 blog using CSS? [closed]

There isn’t really a nice way to do this with CSS, but it can be done. Let’s say you have the following markup: <span>Comment</span> Adding a psuedo-element with :after will produce something like “CommentSign the Guestbook”: span:after { content: “Sign the Guestbook”; } Then you can hide the actual text and reposition the replacement text: … Read more