Contact form – changing the font color of the 'required' field?

  • Unknown's avatar

    Hi – I have used CSS to change the font colors within my contact form, but just can not figure out how to change the color of the ‘required field’.

    The link I am trying to update is below:
    https://coherentfinance.com/contact/

    Does anyone know how to change the ‘required’ field in this contact form box to white? Thank you

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi,
    The “(required)” text uses this CSS code:

    .contact-form label span {
        color: #AAA;
        margin-left: 4px;
        font-weight: normal;
    }

    Change the value of “color” CSS property to “#FFFFFF” to make the text white, like this:

    .contact-form label span {
        color: #FFFFFF;
        margin-left: 4px;
        font-weight: normal;
    }

    Hope this helps :)

  • The topic ‘Contact form – changing the font color of the 'required' field?’ is closed to new replies.