How can I change the color of a hyperlink in my theme?

https://sweetnesstudios.com/pages/supper-club i am looking to change the color of a hyperlink in a page under the schedule an event button!

i would love to get that color the red that matches the rest of the text on the site. or even a bright red.

it is under the sign up today. you can barely see it.

1 Like

Hi @paytonking ,

This is David at SalesHunterThemes.

You can try to follow these steps:

Go to Online Store β†’ Themes β†’ Actions β†’ Edit code.

Go Assets folder β†’ base.css file.

Add this following code at the bottom of page.

#shopify-section-template--15193794314300__main .rte a{
  color: var(--color-foreground);
}

result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

David | SalesHunterThemes team

Hello @paytonking :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom

#shopify-section-template--15193794314300__main a {
    color: rgb(110, 13, 13) !important;
}

The result

Hope that helps!

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.rte.scroll-trigger.animate--slide-in a {
color: rgba(var(--color-foreground), 0.75);
}

Hello @paytonking

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.

.rte a:hover {
    color: #6E0D25 !important;
}