Are you able to post a link to a live page that's using this form?
If it's a Marketo LP, the LP needs to be reapproved each time you update and approve the form.
If it's an embedd...
Here's a look at some CSS I added in the browser console to test out a fix. I think you could add this to your form's Custom CSS and get most of the issue resolved here:
add CSS t...
I wish there were an easy way to go about this. Once upon a time I saw something that was scripted to actually reorder the elements in the GUI but I wouldn't recommend that approac...
This might have more to do with how your template code is setup to handle the colors. The variables inside a module can be set to update anything within the code but it looks like ...
I think part of the issue here is that you're using the text indent and that pushes the text way over to the left so much that if falls off the page. When you add the "::before" ps...
If you'd like to be able to style any form that's placed onto the page you could try the following CSS:
<style>
form.mktoForm {
background-color: yellow;
}
</style>
This will sty...
As an alternative process here, you could create a new email using the template and leave it blank (no modules). You could then add the "from" and "from name" to that email and sav...
It looks like this CSS rule might be centering the labels on the form.
.mktoForm div, .mktoForm span, .mktoForm label, .mktoForm p {
margin-left: 0 !important; /*remove this li...
I'd be careful about using images in emails just to support un-supported design choices.
Things like buttons that are images not only require a new image for each button, but they ...
You might also consider the value of the "overlapping" aesthetic here -- it might not be the best design choice for the modern email (Outlook) environment, albeit visually satisfyi...