Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #891394

    Does anyone know why when I add the bold tag element to my paragraph text it is changing it to red?
    (bulleted paragraph under about us on home page)
    I wanted it to remain black. Thanks.
    http://dev.mezzalunadesign.ca/

    #891427

    Hey amerzib,
    Thats what the css is current set to do. Add this to quick css:

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

    Best regards,
    Jordan Shannon

    #891463

    Thanks that worked but the quick CSS isnt working for me. I am using a child theme and I keep having to put any CSS edits into the child styles.css file. Is that normal? It would be nice to just be able to add it to quick CSS. Thanks.

    #891613

    Hi amerzib,

    You can either put css in style.css or in Quick css. Why, it does not work when put in Quick css? Well, you have more control when you put css in the styles.css file.

    Best regards,
    Victoria

    #894896

    Thanks this worked for me.

    #894906

    Hey!

    Glad it worked!

    You can also use the code as following

    .main_color strong{
    color: inherit;
    }

    So strong tags will inherit the color of your body text.

    I am closing this thread. If you have any other questions or issues, please feel free to start a new one :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Strong Tags-Changing color of paragraph text’ is closed to new replies.