Hey Kantell!
We don’t offer the specific ability to turn off the field labels in the “MailChimp Setup” area, however with a little CSS magic, you can make them go away. You just need to set them to “display: none;”.
Let us know if we can help with anything else!
Cheers
what is the class name I need to edit in the css file?
Whoops!
This should work:
.mc_var_label {
display:none;
}
That will give you something along these lines:
http://cl.ly/143y1D423w3R3Y3F3h3q
I usually go with Chrome’s Developer Tools by right-clicking and using “Inspect Element” for specific elements I want to edit. If we can help with anything else, give us a shout!
Cheers
That worked great, but the submit button is now below the field. is there a way to move it to the right of the field?
Hmm…
Well, you could float it to the right using float:right for the submit button with #mc_signup_submit.button. But that degree of coding goes a little above what we’re able to troubleshoot here.