Hi, I have created an Email Form using Email Forms and embedded it into my staging site using Raw Content but I can’t get it to become inline using any of the CSS recommended in various posts on this forum.
.tco-subscribe-form {
width:100%;
}
.tco-subscribe-form fieldset {
min-width: 0;
display: inline-block;
vertical-align:middle;
}
.tco-subscribe-form select, .tco-subscribe-form input[type="text"], .tco-subscribe-form input[type="email"] {
margin-bottom:0;
}
.tco-subscribe-form input[type="submit"] {
margin-top:0;
}
This code and any variants just seems to bring the Name/Email/Button containers closer together, not Inline.
.tco-subscribe-form fieldset {
display: inline-block !important;
}
.tco-subscribe-form input[type="email"] {
margin-bottom: 0;
}
.tco-subscribe-form {
display: contents;
}
.tco-subscribe-form input[type="submit"] {
text-shadow: none;
box-shadow: none;
}
This almost works but all the boxes are very close together and don’t quite line up (see below). I’d prefer them more spaced and centred to the column.
Could you please suggest some CSS that will work?