The link color is so close to font color and visitors may not recognize links, How to change link colors? I mean link colors before hovering on it
Hello Vandall,
I hope you are doing well today.
You can use the following CSS code to change the link hover colors by going to Appearance > Customize > Additional CSS and pasting it there.
a:hover {
color: red;
}
Best Regards,
Support
I want to check the link colors before hovering them
Good evening
Then you need something like this:
p a {
color: red;
}