Archived topic
How do I change the link click color?
1 reply · Started by Wayne on February 4, 2021
How do I change the color of the link once you click on it?
Currently when a user clicks on my link, the color is changed to black. I want to change this color but can't find the option for this.
Here is a screenshot of my menu choices for body.
Hi there,
The Link Color Hover on your screenshot actually assigns that color.
But the issue is, that setting applies not only on a:hover state but on a:focus and a:active as well.
If you want to apply a separate color for the other link states, you try adding this CSS:
a:focus, a:active{
color: green;
}