Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Matt Cromwell

    (@webdevmattcrom)

    Hi Alex,

    Glad you were able to get things up and running with the styles. Here’s what you need for the color of the inputs:

    form.give-form .form-row input[type=text].required, form.give-form .form-row input[type=text] {
        color: white;
    }

    That makes sure the color is consistent whether the input is required or not.

    Thanks!

    Thread Starter Alex

    (@alcon835)

    Thank you! That worked for the first and last name, but the email text box is still using the old color.

    With Gratitude,
    Alex Humphrey

    Plugin Author Matt Cromwell

    (@webdevmattcrom)

    OK, replace the previous with this:

    form.give-form .form-row input[type=text].required, form.give-form .form-row input[type=text], form.give-form .form-row input[type=email] {
        color: white;
    }
    Thread Starter Alex

    (@alcon835)

    I really appreciate you working with me to get this solved. However, the new code is not having any effect on the color of the text in the email box.

    Plugin Author Matt Cromwell

    (@webdevmattcrom)

    Sorry about that, add the .required class to the email one like this:

    form.give-form .form-row input[type=text].required, form.give-form .form-row input[type=text], form.give-form .form-row input[type=email].required {
        color: white;
    }
    Thread Starter Alex

    (@alcon835)

    It’s perfect now! Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Need Custom CSS for Text Box’ is closed to new replies.