How to change the color of text links in Sense Theme blog articles?

Hey,

how can I change the color of text links in blog articles? I want to edit the link color only in blog articles.

I’m using the Sense theme.

Thanks

Hello,

You can use this CSS snippet to change colors of Sense blog post links. Add it to your base.css file in the bottom, and edit the color value.

article.article-template a {
    color: #e20000;
}

You can use a color tool online for help with. the HEX code (the #e20000 -part).

So you could use for example

article.article-template a {
    color: orange;
}

or

article.article-template a {
    color: rgb(0 255 176);
}

I hope that helps :slightly_smiling_face:

It sure helps, thank you so much :hugs: