Hello,
I am trying to making bold text the same color as my main text instead of black. Reading through other similar questions, I added this to my Quick CSS
.main_color b {
color: #666666;
}
.main_color strong {
color: #666666;
}
It works fine for b tags, but not for strong. I need to fix this to work with strong, since that is the default tag used by the Enfold text editor.
You can see an example here: http://skitrotters.com/transceiver-101-backcountry-safety/
“super important” is working fine because I manually changed that to b, but the others using strong are still showing as black instead of grey.
Thanks a lot for your help!
Hey skitrotters,
Try adding !important; to your code, such as:
.main_color strong {
color: #666666 !important;
}
Best regards,
Mike
Thank you Mike, that worked! I swear I thought I had tried it before posting :)