It’s better not to remove underlines from links as it might hurt user experience — the underline signifies that the word is actually a link.
But if you still want to do that, add this code to Pages › Website Tools › Custom CSS:
main a,
#footer-sections a {
text-decoration: none !important;
}
If you also want to remove an underline from the active navigation link in the header, also add:
body:not(.header--menu-open) .header-nav-item--active > a {
background: none !important;
}
On this page