• Resolved craigmckee

    (@craigmckee)


    My site is dark with the default text being white. This causes a problem when a new user registers because it comes up with a green bar and then the text is unreadable – it only lasts a few seconds on my screen before redirecting so I’ve not been able to find the css selector to change it – does anyone know how to change just this text to a dark colour so it’s readable please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support alexandrubodea

    (@alexandrubodea)

    Hi @craigmckee,

    To change the style of the success message after a user registers, you can use the following CSS code as an example:

      #wppb_form_general_message.wppb-success { 
       background: #FF0000 !important;
       border: 1px solid #FF0000 !important;
       color: #FFFFFF !important;
    }

    The colors in the above code are just an example, when you add the code on to your site, you can replace those colors with the colors of your choosing.

    You can add the above CSS code snippet in your WordPress Dashboard -> Appearance -> Customize -> Additional CSS.

    Best regards,

    Thread Starter craigmckee

    (@craigmckee)

    Thank you – that’s great!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text Colour on Registration Page’ is closed to new replies.