Remove the blue in the hyperlink/change color of hyperlink

Hey i was wondering how to remove the blue in the hyper link of my footer, and make it the same colour as the other text (mo+co candles)?

https://mo-and-co-candles.myshopify.com/

pass: thayle

1 Like

Hi @Chantelrudden

You can try to add the code by following these steps:

  1. Go to Online Store → Theme → Edit code https://prnt.sc/XkUYXZPnym_E

  2. Open your base.css in the Assets folder.

  3. Paste the below code at the end of the file

.footer__copyright > a{
    color: currentColor;
    text-decoration: none;
}
.footer__copyright > a:hover{
    color: rgb(var(--color-foreground));
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

Best regards,
GemPages Support Team

@Chantelrudden
Add below css into base.css file (Online store ->themes->Edit code->Assets->base.css)

a[href="www.websitesforcreatives.ca"] {
    color: white;
}