How to Remove Underlines from Links in Squarespace 7.1 (Easy CSS Fix)
Learn how to remove the underline from links in Squarespace 7.1 with a simple CSS tweak. Step-by-step instructions for global or section-specific styling.
By default, Squarespace 7.1 automatically underlines links across your site. While this is helpful for accessibility, some site owners prefer a cleaner, more modern design without underlines. The good news is you don’t need to be a developer to fix this—just a simple CSS snippet will give you full control over your link styling.
In this guide, I’ll walk you through:
How to remove the underline from all links site-wide.
How to target specific sections or pages with custom CSS.
Pro tips for keeping your design user-friendly and SEO-friendly.
Step 1: Open the Custom CSS Panel
Log in to your Squarespace account.
Go to Custom CSS Panel.
A blank text box will appear where you can paste your code.
Step 2: Remove Underlines from All Links
To remove underlines from every link on your website, paste this CSS into the box:
a {
text-decoration: none !important;
}
Step 3: Remove Underlines from Links in a Specific Section or Page
#block-yui_3_17_2_1_1740984452709_7770 a {
text-decoration: none !important;
}
Step 4: Save and Refresh
Click Save in the CSS panel, then refresh your site. The underlines should now be gone.
Pro Tips
Accessibility matters: Even if you remove underlines, make sure your links are still easy to spot. Consider using a different color or bold text for links.
SEO best practice: Clear link styling improves user experience, which can indirectly benefit your SEO. Google values usability.
Test across devices: Always check your changes on mobile and desktop.
Conclusion
Removing underlines from links in Squarespace 7.1 is quick and easy with a small CSS snippet. Whether you want to update your entire site or just one section, this customization helps you create a cleaner, modern design that matches your brand.
By following the steps above, you’ll have full control over how your links appear—without touching your site’s content or harming your SEO.