Tagged: link color
Can you provide CSS so that I can change the text link color in both main and alternate content areas. Need the text link color to be different than the default color for Bold and other elements.
Derek
Hey Derek,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#main a {
color: green;
}
Just adjust the color as you see fit. Hope this helps :)
Best regards,
Nikko
Thanks. This also changed the color of the item inside icons to the same color as the text links. Is there a way to change the text link color without changing the color of the item inside icons?
Hi Derek,
If you want the color to just apply to links inside a Text Block, please use this instead:
#main .avia_textblock a {
color:#ed4c2f ;
}
If you think you might need to want that color for links outside of a Text Block, then please use Nikko’s original code, then add an exception like this:
#main a.iconbox_icon {
color: white;
}
I hope that helps!
Sarah