Tagged: CSS
I’ve got this right now :
.main_color strong { color: black !important; } /* changes the color of main bold element */
And it seems to work sporadically, but not the majority of the time.
Here’s an example post – http://www.jonnyfreesh.com/raw-food-recipes/raw-coconut-durian-fudge-recipe/
Different code I can try?
Thanks
Jonny
Hey deyowulf!
Please add following code to Quick CSS as well
.main_color b { color: black; }
You are using b tag instead of strong tag, that is why color is not changing
Cheers!
Yigit
thanks yigit that worked