SOLVED

Re: Two Form Fields need to aligned left

Go to solution
Anonymous
Not applicable

Two Form Fields need to aligned left

Hi Guys,

I need your help in a custom code that can aligned left the checkbox and submit button below of my fields. Do you have any idea how can this work? Please see screenshot below. Thanks!

0EM50000000RI8n.jpg

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Two Form Fields need to aligned left

Here's one approach to move these elements to where you'd like:

For moving the checkbox & label to the left, try dragging in the following custom HTML element:

<style>
 
span.mktInput.mktLblRight {
margin-left: -187px;
}
 
</style>

and for moving the buttons to the left (center), try this:

<style>
 
#mktFrmButtons {
margin-left: -187px;
}
 
</style>

After making any changes, I recommend thoroughly testing your LP is compatible on multiple devices before going live. Let me know whether this approach proved successful for you or not!

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Re: Two Form Fields need to aligned left

Weird, your uploaded image loads for me and then disappears! Doesn't matter though as I understand what you mean 🙂

You could drag a custom HTML code element in like the following example:

<style>
 
#mktFrmSubmit{
    left: 10px;
}

</style>


If you're still having problems, approve the LP then paste the link here and I'll be able to help further.
Anonymous
Not applicable

Re: Two Form Fields need to aligned left

Hi Adam,

Thank you very much.

Can you please take a look of my LP below and let me know if you can fix this. If you cant see my screenshot, I just needt to left aligned the checkbox to the left and center the Submit/clear button. Is this possible?

http://ins.accenture.com/TESTWIMAGENorthAmericanCommercialInsuranceUnderwritingSurvey2013_TEST_NorthAmericanCommercialInsuranceUnderwritingSurvey2013_RegistrationPage.html

I really appreicate your input on this. Thanks!
Anonymous
Not applicable

Re: Two Form Fields need to aligned left

Here's one approach to move these elements to where you'd like:

For moving the checkbox & label to the left, try dragging in the following custom HTML element:

<style>
 
span.mktInput.mktLblRight {
margin-left: -187px;
}
 
</style>

and for moving the buttons to the left (center), try this:

<style>
 
#mktFrmButtons {
margin-left: -187px;
}
 
</style>

After making any changes, I recommend thoroughly testing your LP is compatible on multiple devices before going live. Let me know whether this approach proved successful for you or not!
Anonymous
Not applicable

Re: Two Form Fields need to aligned left

Hi Adam,

Thank you very much for this! You are awesome!

Anonymous
Not applicable

Re: Two Form Fields need to aligned left

No problem Ian. Did my suggestion work, or at least point you in the right direction? 🙂
Anonymous
Not applicable

Re: Two Form Fields need to aligned left

Yes, It works perfectly! I just need to do a little adjustment to fit in IE browser. Thanks again Adam!