Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #762915

    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!

    • This topic was modified 7 years, 8 months ago by skitrotters.
    #762922

    Hey skitrotters,
    Try adding !important; to your code, such as:

    .main_color strong {
        color: #666666 !important;
    }

    Best regards,
    Mike

    #762928

    Thank you Mike, that worked! I swear I thought I had tried it before posting :)

    #762941

    Hi,
    Your welcome and Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Bold color in posts’ is closed to new replies.