Remove the Underline from the Read More Blog Link | Squarespace 7.1
I have to say, for something that is usually quite an easy code change, this one was a little bizarre. For some reason, Squarespace did not use the typical techniques for adding an underline to the Read More Blog Link. Instead of a border, outline, or text-decoration, they used a background color on an after pseudo element.
Having said that, have no fear non-coders! This is probably the shortest tutorial I have ever recorded.
In this video, I show you how to remove the underline from the Read More Blog Link in Squarespace 7.1. All the code used in the video is provided below.
In this video, I show you how to remove the underline from the Read More Blog Link in Squarespace 7.1.
The following code is used in the video.
/* Remove Read More Underline */ .blog-more-link::after { display:none; }