How can I change the text color on my product button?

Topic summary

A user needs to change the text color of a “See products” button from black to white on their Shopify store’s homepage.

Solution provided:

  • Add custom CSS targeting the specific button element
  • The CSS code modifies:
    • Text color to white (#fff)
    • Background color to #ff5a02
    • Border color to #ff5a02

Status: Resolved - the original poster confirmed the solution worked by thanking the responder.

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

Add the following to Custom CSS

#shopify-section-template–20754507891017__image_banner_iLTnJB .btn–primary {
border-color: #ff5a02;
background: #ff5a02;
color: #fff;

}