Change color of anchor and anchor hover

On one page, I’m trying to change the text color when a link is clicked. I’ve tried getting the CSS Selector and changing it that way but that didn’t work. Please point me in the right direction.

Hi @eutaw,

Thanks for reaching out.

I suggest that you add a class to your anchor links. See the example below, I added a class with-hover to the anchor tag and then on the page CSS to change the color, please follow the code below.

Change color:

.with-hover {
  color: red;
}

Anchor Hover color:

.with-hover:hover {
  color: blue;
}

Hope that helps.

Thank you.

Thank you, thank you.

Hi @eutaw,

You’re welcome and it’s our pleasure to help you. If you have any other concerns regarding our theme features, feel free to reach us.

Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.