I would like bold font color and link font color to be different colors so readers can differentiate between the two. Currently, both are displaying the blue that I set for links in the theme options. I have tried adding the following code to the Styling Quick CSS, but it doesn’t seem to be working unfortunately..
.alternate_color strong, .main_color strong { color: black; }
thanks!
Hey kls1138!
Please try adding !important so it forces the code to apply
.alternate_color strong, .main_color strong { color: black!important; }
Flush browser cache after applying the code
Cheers!
Yigit
I have added this code and it’s still not working unfortunately. Please let me know what else I can try.
Thanks!
here’s a sample page in case you need it.
http://blog.bluepipes.com/is-your-resume-optimized-for-the-ats/
Hey!
Change the color of the bold font using this:
.main_color b {
color: red;
}
And the links using this:
.main_color a {
color: black;
}
Regards,
Ismael
I could have sword that attempted this to no avail prior to posting in the support forum. However, this worked!!! Thanks!!!!