Can I remove the underlines where it says shipping, return etc ? also when clicked or hover?
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.
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;
}
