I have aligned a Pro Email Form to be an inline-block. However I cannot get the email input field to be 80% width of the page and the submit button 20% page width. Below is the CSS in current use (in the Pro footer itself).
.sign-up-form .tco-subscribe-form {
width:100%;
}
.sign-up-form .tco-subscribe-form fieldset {
min-width: 0;
display: inline-block;
vertical-align:middle;
}
.sign-up-form .tco-subscribe-form select, .tco-subscribe-form input[type="text"], .tco-subscribe-form input[type="email"] {
margin-bottom:0;
}
.sign-up-form .tco-subscribe-form input[type="submit"] {
margin-top:0;
margin-left: 10px;
}
How can I get the two elements to be the width I would like?
Thanks,
Christopher