• Working on localhost and updated succesfully today to 5.5 however when I go to the colour settings for a paragraph the back-ground custon color and the text colour works fine but on the front end the text color reverts to the body color.

    Inspector shows this for text;
    body {
    color: #707070;
    }
    and the background correctly shows this;
    element {
    background-color: #006eb6;
    }

Viewing 1 replies (of 1 total)
  • Moderator bcworkz

    (@bcworkz)

    It’s possible for themes or plugins to override your editor color selections. You can likely override the override by finding the desired color rules through browser element inspection and copying the applicable rules to the Additional CSS customizer panel. Rules here generally take precedence over other equivalently selected rules. To ensure precedence, add the !important modifier to the rules you have trouble with.

    This is kind of a hacky solution. A proper solution would be for the module doing the initial override to enqueue their stylesheet less aggressively (earlier) so the CSS applied from the editor takes precedence. Determine the responsible module by using the element inspector tool to find which rule is actually applied, then determine which file it comes from and to which module that file belongs. I recommend asking for assistance in the responsible module’s dedicated support channel for suggestions on a proper fix.

Viewing 1 replies (of 1 total)
  • The topic ‘Paragraph Colours, text not showing colour change on the front end’ is closed to new replies.