-
AuthorPosts
-
July 24, 2015 at 9:19 am #339401
Hi guys,
I’d like to style the signup form for mailchimp and take it a bit further. Hope you can help me with this:– I’d like to loose the shadow of the button font
– I’d like to change the color of the “email” box
– Is there a way to make the fields look like the ones in this example: http://skrwt.com/ – only with custom colors?Appreciate any help!
Thank you!URL http://www.vegan-good-life.com
Wordpress 4.2.3.
X 4.0.5.
Cornerstone 1.0.4.July 24, 2015 at 12:48 pm #339532Hello Eric,
Thanks for writing in!
Kindly use following CSS under Custom > CSS in the Customizer:
.x-subscribe-form input[type="submit"] { text-shadow: none !important; background-color: #A6A6A6 !important; } .x-subscribe-form input[type="text"], .x-subscribe-form input[type="email"] { border: 1px solid #000 !important; }
Let us know how it goes.
Thanks.
July 24, 2015 at 2:31 pm #339598Unfortunately, this didn’t do anything. I made sure I deleted all other subscribe-form CCS I tried out before – anything else I might be missing?
Thanks a lot!
Best,
EricJuly 24, 2015 at 10:33 pm #339850Hi Eric,
Thanks for updating the thread! Are entering in the customizer? If you entered it at the bottom and nothing happened, it’s possible you have a syntax error somewhere like a missing “}” bracket. This will cause all succeeding CSS to not work. You can try entering the CSS above everything and if it works, you know there is an error somewhere.
Also here is some updated CSS to help it look like your example link:
/* Removes white space caused by content band befor the form */ div#x-content-band-6 { margin: 0; } /* color of form heading */ div#x-content-band-7 h5 { margin: 0; color: #ffffff; } /* Background color of form content band */ div#x-content-band-7 { background-color: #333333!important; } /* make form inline */ form#x-subscribe-form-1362 fieldset{ float: left; width:50%; } /* remove email field border */ .x-subscribe-form input[type="email"] { border: none!important; } /* colors of submit button, remove text shadow, no border, height adjustment, alignment */ .x-subscribe-form input[type="submit"] { background-color: #64C4FF!important; color: #ffffff; text-shadow: none !important; margin: 0; border: none; height: 37px; }
It should look like this:
Hope this helps – thanks!
July 26, 2015 at 6:07 am #340770You guys are unbelievable, the quality of service – unmatched! Thanks so much for all your help.
So: We’re almost there, if you look at http://www.vegan-good-life, you can see that I implented your code and it worked and I already tweaked it a bit to my liking and I’m stoked!Two things:
– the fields are not completely in line – how can I change that?
– how can I change the hover color of the button text?Again, thank you!
EricJuly 26, 2015 at 6:16 am #340773Hi There,
Try adding following CSS under Appearance > Customize > Custom > CSS:
.x-subscribe-form input[type="submit"] { margin-top: 0; } .x-subscribe-form input[type="submit"]:hover { color: #82098C; }
Hope it helps.
July 26, 2015 at 7:43 am #340801Hi,
Color change – success!
Getting the fields in line – nothing changed unfortunately.Thankful for ideas 🙂
Best,
EricJuly 26, 2015 at 7:54 am #340812Hi There,
Please update the previous code a bit:
.x-subscribe-form input[type="submit"] { margin-top: 0 !important; } .x-subscribe-form input[type="submit"]:hover { color: #82098C; }
Hope it helps.
February 1, 2016 at 9:01 am #774409This did it, thanks so much!
February 1, 2016 at 11:09 am #774609You are most welcome. 🙂
March 26, 2016 at 9:37 pm #853873Hi! Can i also get help with this? This is as far as i could go with this! http://squickapp.com
March 26, 2016 at 9:38 pm #853874I will also add that it won’t let me get rid of the red underneath the button! And i’d like the corners more rounded on the content band!
March 27, 2016 at 12:03 am #853947Hi there,
Would you mind providing some details of your issue? I don’t see any MailChimp form. And which button?
If this is not thread related, then you may start a new thread 🙂
Thanks!
April 4, 2016 at 10:02 pm #866975SORRY! Didn’t see this post, Here is the link again -> http://squickapp.com i’d like to customize this further. Can you help me make it inline? and spaced a little from each other? thank you so much!
April 5, 2016 at 5:52 am #867440Hi Squick,
Please update this:
.x-subscribe-form input[type="email"] { border: none!important; }
To this:
.x-subscribe-form input[type="email"] { border: none!important; width: 48%; float: left; }
Also update this:
.x-subscribe-form input[type="submit"] { margin-bottom: 0px !important; }
To this:
.x-subscribe-form input[type="submit"] { margin-bottom: 0px !important; width: 48%; float: right; margin-top: -105px; }
Hope this helps.
-
AuthorPosts