REMOVE LINK UNDERLINE IN FOOTER Flow version 31.0.6

Topic summary

A user seeks help removing underlines from footer links in their Shopify Flow theme (version 31.0.6).

Solution Provided:

  • Navigate to: Themes → Edit Code → Assets → theme.min.css
  • Add CSS code to the bottom of the file targeting footer article links with border: none !important;

Current Status:

  • The user shared their store URL and password for troubleshooting
  • A solution has been proposed but not yet confirmed as implemented or successful

Note: Several posts contain reversed text, but the technical guidance appears straightforward—applying custom CSS to override the default link styling in the footer section.

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

Can someone help me with the code that can remove the link underline in my footer.

The theme currently in use is Flow version 31.0.6

Tried some suggestions to change code in assets folder, but did not know which section needs to add the code in.

Thank you for your help.

HI @ophelialeofoto
Thank you for your question.
Please share your store URL, page URL and also password (if your store has one) so we can help you.

https://leofotosoar.com/password
password is soar
Thank you for your help.

Hi @ophelialeofoto
You can try follow this path:
Themes => edit code => asset => theme.min.css
and add this code to bottom of the file theme.min.css

.footer-article a {
border: none!important;
}
1 Like