It’s the optin widget in the footer. For some reason it’s not working.
I want the mailchimp form to be horizontal (in thirds…all on the same line).
I don’t want all of them on the site like this, just this one.
How do I do that too?
Hey mikkijack,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (min-width: 768px) {
/* Add your Desktop Styles here */
.avia_ajax_form .first_form {
margin-left: 20px;
clear: none;
}
.avia_ajax_form p {
width: 30%;
}
.form_element.first_form.form_element.form_fullwidth.av-last-visible-form-element.modified_width {
margin-top: 38px;
}
If you need further assistance please let us know.
Best regards,
Victoria
Thank you Victoria. That worked.
Is there a way to do the field labels on the inside of the field instead of on top of them?
It’s not showing the names of the field, (the placeholder)
How can I put the placeholder in?
Hi,
I have added this css code in Enfold Theme Options > General Styling:
#footer .avia-mailchimp-form input[type="text"]::-webkit-input-placeholder {
color: #000;
}
#footer .avia-mailchimp-form input[type="text"]::-moz-placeholder {
color: #000;
}
#footer .avia-mailchimp-form input[type="text"]:-ms-input-placeholder {
color: #000;
}
#footer .avia-mailchimp-form input[type="text"]:-moz-placeholder {
color: #000;
}
Just change the color as you see fit. Hope it helps :)
Best regards,
Nikko
Nikko, thank you SO much!!! That worked perfectly! Everything is good now. You all rock!