Hi,
I would like to change in the main content box the primary font color for links but not for dropcaps and other elements. How can I do that? Right now it is only possible to change all together.
Thanks
Greetings Thomas
Hey tom77113!
You could do something like this.
#main .main_color a { color: red; }
If that has unexpected behaviour then you could also add a class to your links like so.
<a href = "#" class = "custom_link">Click me</a>
And then use this CSS to style it.
.custom_link { color: red !important; }
Best regards,
Elliott