Hey All,
https://bluewin.squarespace.com/sign-up-demos
PW: 12345
I would like to use CSS to place the submit button for this form shown below in-line with the Zip field and am not sure how to accomplish this.
I would also like to know how to do something similar with just an email field to display the submit button in-line to the right of the field with a space between, keeping it flush etc.
I have the following code applied to forms sidewide at the moment to break up the First/Last fields.
//FORM ADJUSTMENTS//
#page{
.field-list {
display: flex!important;
flex-wrap: wrap!important;
}
/* These will be Full Width*/
.form-item:nth-child(3),
.form-item:nth-child(4),
.form-item:nth-child(5),
.form-item:nth-child(6),{
width: 100% !important;
}
/* These Will Be Beside Each Other */
/* LEFT */
.form-item:nth-child(1),
.form-item:nth-child(3),{
width: 48% !important;
margin-right: 4% !important;
}
/* RIGHT */
.form-item:nth-child(2),
.form-item:nth-child(4),{
width: 48% !important;
}
}
Thank you!