How to change the color of hyperlinks on WordPress Twenty Twenty Theme?
Add the following code to the “Additional CSS” theme (From the left Dashboard – Appearance – Customize – Additional CSS):
a {
color: #00000;
}
Note: Change the color to your desired color’s hex value.
a {
color: #000000 !important;
}
Note: Before using the !important rule, I recommend you to first check if disabling the plugin and see if the issue resolves.