How to alter text link color in Dawn theme?

There doesn’t seem to be any way to change the color of text links. They’re just automatically gray. Will I have to use custom CSS for this? I’d like to specify the link color, the mouseover color, and that the links be underlined on mouseover.

Hello there,

Kindly provide the website URL along with the corresponding password.

Hello @M3P-Music

You can use this code

a {
    color: #2196F3 !important;
    text-decoration: underline;
}

a:hover {
    color: #2196F3CC !important;
}

Feel free to change color values as you need.

Hello @M3P-Music

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.

.link{
    color: #000 !important;
}
.link:hover {
    color: red !important;
    text-decoration: underline !important;
}

Thank you! This worked the best for me.

You are welcome! :blush: