Buy me a coffee

How to remove Underline from Links in Squarespace

#1. Announcement Bar Underline

You can use this CSS code.

How To Remove Underline From Links In Squarespace 01 Min#2. Header Links Underline

How To Remove Underline From Links In Squarespace 02 Min

You can use this code to the Custom CSS box.

div.header-nav-item *, div.container.header-menu-nav-item * {
    background-image: none !important;
}

How To Remove Underline From Links In Squarespace 03 Min#3. Text Block Links Underline

How To Remove Underline From Links In Squarespace 04 MinYou can use this CSS code.

div.html-block a, div.html-block a * {
    text-decoration: none !important;
}

How To Remove Underline From Links In Squarespace 05 Min#4. Footer Links underline

Use this CSS code.

footer.sections {
  div.html-block a, div.html-block a * {
    text-decoration: none !important;
  }}

How To Remove Underline From Links In Squarespace 06 Min