Set up the automation Select the according list. Select the statuses you want the automation…
Center and Re-order Mailster subscription form
The basic Mailster Subscription form is good, but not perfect. The order of the HTML elements is completely shit if you want it to look good, as the gdpr field is somewhere in between. So you need to reorder the fields, which is possible with CSS flex stuff.
If you want to achieve this:
Add this CSS:
/*MAILSTER INPUT*/
.mailster-wrapper .mailster-email {
max-width: 500px;
min-width: 300px;
height: 60px;
}
/*MAILSTER SUBMIT*/
.mailster-wrapper .submit-button,
.mailster-wrapper .mailster-email-wrapper input,
input.mailster-email {
height: 60px;
}
.mailster-submit-wrapper {
margin-top: 0 !important;
}
.mailster-email-wrapper { grid-area: email; width: 400px;}
.mailster-_gdpr-wrapper { grid-area: gdpr; }
.mailster-submit-wrapper { grid-area: submit; }
.mailster-form-fields {
display: grid;
grid-template-areas:
"email submit"
"gdpr gdpr";
justify-content: center;
}
Dieser Beitrag hat 0 Kommentare