How can I change the hyperlink colour in the Dawn theme?

hello! i have been trying to change the hyperlink colour on our shopify site to #ba0f0f. I have tried changing it via the customization panel in the dawn theme (where it says outline) but it is still white. can someone let me know if there is a way to do this via the html? or any other help would be appreciated! thank you.

1 Like

Hi @crrs ,

Are you pertaining to all hyperlinks?

Note: Not all of the links uses hyperlinks. It would be best if you pinpoint what part of your website you need to change.

The code below will change the color of all tag.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the base.css
  3. Paste the code below at the very bottom of the file.
a {
    color: #ba0f0f !important;
}