Change COlor of Linked Button on Homepage

There is a Hyperlinked word on my home page titled “Shop Now” and it keeps turning black when I add the link. How can I turn this back to white? This is the word written underneath Athena Tracksuit.

Thanks

Hi @JoeyRoo

You can add this code to Custom CSS of that section to change color to white

a { color: #fff; }

What theme are you using?

Hello @JoeyRoo

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.rte a { color: #fff !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Perfect. Thanks