With Creativity Template, the Standard font color for text with hover effect <a href=...> Example Text </a> is #dadcdd. This light grey text ist almost invisible on white background. How to change the color of the text in css?
Heisenberg61
Hi,
You can share the URL of your site here so I can take a look.
saguaros Hi! You can reach my site at www.physiotherapie-oettl.de THX!
You can add this custom CSS code:
a { color: #dadcdd; }
and change to your desired color
To change color when hover/focus/... use this one:
a:hover, a:active, a:focus { color: #your _color _here; }
Regards
Well done, saguaros! Thanks