• Hello,

    I tried to add a new page to my Footer Column 2 today, and while I had no problem adding the new page and link, when the link was added to the footer text, the font colour turned very light grey, which is difficult to read on a white background.

    Changing the font colour in the widget editor made no difference to this, and neither did adding “has-black-color has-text-color” to the class in the custom html area.

    I am using the theme ‘Brick Child’.

    Thank you for reading!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @jackgrealish

    You have to use the appropriate CSS selector. Try this CSS code:

    #block-2 > h2 > a {
      color: black;
    }
    Thread Starter jackgrealish

    (@jackgrealish)

    Thank Jesús!

    Where do I insert this CSS code?

    Thank you!

    Hi @jackgrealish

    You have to do these steps:

    • Go to Appearance -> Customize.
    • Click on Additional CSS.
    • Add the CSS.
    • Click on Publish.
    Thread Starter jackgrealish

    (@jackgrealish)

    Thanks again

    I inserted the CSS under additional CSS as you dsaid, but it hasn’t seemed to take effect. I also cleared the caches but still nothing.

    I have also installed the “Classic Widget” plugin, but that was also to no avail.

    Is there anything else I could try?

    Hi @jackgrealish ,

    You could try using the important flag (!important).

    With that, the CSS code should look like this:

    block-2 > h2 > a {
        color: black !important;
    }

    Let us know if that helps.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Footer Widget Text Color Changed’ is closed to new replies.