Default link color

Hi,

How do I change the default link color? (a:link, a:hover, a:visited and a:active)
I would like to change the default values so that i dont have to add a new class to every new link on my page.

I guess there must be a way to do it but I have searched everywhere in the UI and in the forum.

Iā€™d suggest using the header code found in the site dashboard Custom Code section.

<style>
  a { color: orange; }
  a:hover { color: red; }
</style>
2 Likes