• Resolved soulscion

    (@soulscion)


    Hi,

    I have a site built via WordPress here: http://preview.screencult.com/contact-us/

    The site has the font colour as white, so when anyone goes to input text into the contact form fields, it’s white, meaning you can’t see it against the field background.

    What would I have to do to over-write this? I assume I would have to put some code into the additional settings tab of the Contact Form 7 settings.

    Many thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • edit style.css, for instance, add at the end:

    .wpcf7-form input,
    .wpcf7-form textarea
    {
    color: #000!important;
    }

    or for an inverted color scheme:

    .wpcf7-form input,
    .wpcf7-form textarea,
    .wpcf7-form select
    {
    background:#100000!important;
    color: #fff;
    }
    Thread Starter soulscion

    (@soulscion)

    Omg thank you so much, this has worked a treat 😀

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Contact Form 7] Changing font colour’ is closed to new replies.