Skip to main content
Alexis_D_Alba1
Level 5
December 23, 2015
Question

Need to horizontally align submit button with email field on Marketo LP

  • December 23, 2015
  • 1 reply
  • 1483 views

Hey there,

We're trying to horizontally alight the submit button with field  our email address filed on our marketing landing page. We were able to easily accomplish this using unbounce, however, since we switched over to Marketo landing pages we are not having any success.

Here's what we want to look like:

Has anyone had any success implementing this using Marketo landing pages?

Thanks!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

SanfordWhiteman
Level 10
December 23, 2015

Sure, for a single-field form like that start by customizing the form CSS:

.mktoForm {

  width: auto !important;

}

.mktoFormRow {

  float: left !important;

}

Then customize line-heights to match, of course.

December 23, 2015

Thanks Sanford, this is helpful!