Can I customize footer underlines for shipping and return options?

Topic summary

A user wants to remove underlines from footer links (shipping, returns, etc.) in both default and hover/clicked states.

An expert provided a CSS solution:

  • Navigate to: Themes → Edit Code → Assets → section-footer.css
  • Add the following code at the bottom of the file:
.footer-block a {
  text-decoration: none !important;
}

This CSS rule targets footer block links and removes all text decoration. The discussion appears resolved with this straightforward customization approach.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

Can I remove the underlines where it says shipping, return etc ? also when clicked or hover?

Hi @oscaroline
You can try follow this path:
Themes => edit code => asset => section-footer.css
and add this code to bottom of the file section-footer.css

.footer-block a{
text-decoration: none!Important;
}