• Resolved mojonesaz

    (@mojonesaz)


    Hi, I need to change the text color in the form for Jetpack plugin for the Contact form (grunion, I believe.) Is there CSS code I need to ADD? Have gone thru the CSS and although I have been able to change the background color I have not been able to figure out what to do to change the text color for the form (where a user would type in their request). The url is

    If I need to add CSS code please advise. Thanks in advance—help is appreciated!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mojonesaz

    (@mojonesaz)

    Thread Starter mojonesaz

    (@mojonesaz)

    Oh, darn. Ok, if you click on the blue text in my first post you will get to where you will see the problem. Thx for your patience–haven’t used this post forum before….

    Jeremy Herve

    (@jeherve)

    Jetpack Mechanic ??

    You can customize the look of the form by making changes to your theme stylesheet. You can also add custom CSS code to your custom CSS editor, under Appearance > Edit CSS in your dashboard.

    Try adding the following code to change the input text color:

    button, input, textarea {
        color: #FFD700;
    }

    And if you want to change the Submit button text color:

    input[type="submit"] {
        color: #000;
    }
    Thread Starter mojonesaz

    (@mojonesaz)

    Thanks Jeremy! Your title of Happiness Engineer is quite apt…you helped me get this done. Much appreciation directed your way! Here’s what I entered:

    button, input, textarea {
    color: #FFD700;
    }

    input[type=”submit”] {
    background: #ffd700;
    color: #000060;
    }

    Link to site: Suzanne Snow Gallery Events

    Thanks again!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Jetpack plugins Contact Form Grunion change text color???’ is closed to new replies.