How can I change the font color of 'shop all' from white to black?

Topic summary

A user needs to change the “shop all” text color from white to black on their Shopify store (vitassential.net). Two support representatives have provided CSS solutions:

Initial Solution (PageFly-Henry):

  • Navigate to: Online Store → Theme → Edit code
  • Locate theme.css file
  • Add CSS code: .hero__title { color: black !important; }

Alternative Solutions Offered:

  • Updated CSS targeting: h1.hero__title.collection-hero h1 { color: black !important; }
  • Dan-From-Ryviu suggested adding code to theme.liquid file after the <head> tag

Current Status:
The user reported the initial solution did not work. The discussion remains ongoing as support representatives are providing alternative code snippets to resolve the issue. The store is password-protected (password: vitassential), which may be needed for further troubleshooting.

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

You can try again with this code:

h1.collection-hero__title.h1 {
color: black !important;

}