Paula, thanks for replying. I think I may have found a workaround though.
For anyone else interested, It's not perfect, but at least it works.
This is to edit an email only submit form at the footer of a website. It used to be two lines (form + submit button), the css below moves the submit button from below the form to the right of the input field.
1. open form settings and form theme
2. paste the below css into the edit custom css field:
div.mktoButtonRow {
position:relative !important;
top:-44px !important;
left:630px !important;
}
@media only screen and (max-width: 750px){
div.mktoButtonRow {
position:relative !important;
top:-5px !important;
left:10px !important;
}
}
@media only screen and (max-width: 480px){
div.mktoButtonRow {
position:relative !important;
top:0px !important;
left:0px !important;
}
}
This particular form has a label width of 355px and field width of 245px, so you will likely have to play with the "top:-44px !important; left:630px !important;" to get the button aligned correctly.
Also, the @media only querie is so that the form condenses when viewed on a mobile device or smaller browser. You may need to adjust the "max-width" according to how wide your form is.