EvanHerman / yikes-inc-easy-mailchimp-extender

Easy Forms for MailChimp WordPress Plugin
http://yikesplugins.com
GNU General Public License v2.0
25 stars 28 forks source link

Input bars #359

Closed asaphtunes closed 9 years ago

asaphtunes commented 9 years ago

Please help - its very urgent. The text input bars in the sign up form are in black. How do i change the colour of them? You can see it here - http://www.asaphtunes.com/sign-up/

Also the country list - the bars are in white and so the text is invisible. How do i fix it?? http://www.asaphtunes.com/sign-up/

TheTracyL commented 9 years ago

Hello Asaphtunes.

The stylesheets in your theme are controlling the colors of the form.

For example that drop down is set to inherit the font color of it's container which is white for that area: css

The input boxes are controlled by another style sheet in your theme. css2

Does your theme allow you to add custom CSS to it?

asaphtunes commented 9 years ago

Yes we can put custom CSS. What should we put?

----- Reply message ----- From: "Tracy Levesque" notifications@github.com To: "yikesinc/yikes-inc-easy-mailchimp-extender" yikes-inc-easy-mailchimp-extender@noreply.github.com Cc: "asaphtunes" a_bosse7@hotmail.com Subject: [yikes-inc-easy-mailchimp-extender] Input bars (#359) Date: Mon, Sep 21, 2015 9:24 PM

Hello Asaphtunes.

The stylesheets in your theme is controlling the colors of the form.

For example that drop down is set to inherit the font color of it's container which is white for that area: css

The input boxes are controlled by another style sheet in your theme. css2

Does your theme allow you to add custom CSS to it?


Reply to this email directly or view it on GitHub: https://github.com/yikesinc/yikes-inc-easy-mailchimp-extender/issues/359#issuecomment-141945873

TheTracyL commented 9 years ago

This is the CSS code. You can use whatever colors you want.

.yks-mailchimpFormDivRowField input {
    background-color: white;
}

.yks-mailchimpFormDivRowField select {
    color: black;
}
asaphtunes commented 9 years ago

thank you so much

Date: Mon, 21 Sep 2015 05:05:55 -0700 From: notifications@github.com To: yikes-inc-easy-mailchimp-extender@noreply.github.com CC: a_bosse7@hotmail.com Subject: Re: [yikes-inc-easy-mailchimp-extender] Input bars (#359)

This is the CSS code. You can use whatever colors you want.

.yks-mailchimpFormDivRowField input { background-color: white; }

.yks-mailchimpFormDivRowField select { color: black; }

— Reply to this email directly or view it on GitHub.

TheTracyL commented 9 years ago

No problem!