SOLVED

Re: margin-top Adjustments - how to make edits on landing page?

Go to solution
Anonymous
Not applicable

margin-top Adjustments - how to make edits on landing page?

Hello everyone,

I am trying to get rid of the space above the form on the following landing page:

http://pages.kennasecurity.com/LBForm.html

I think I've identified the problem: margin-top is 70px. I set it to 0px in DevTools and this is what it looks like:

Screen Shot 2016-12-19 at 4.27.02 PM - with arrow.png

However, I'm unsure how to implement this change in the Marketo landing page. Do I have to go down to the template level?

Let me know if I can provide any additional information that would be helpful.

Thanks,

Dan

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Casey_Grimes
Level 10

Re: margin-top Adjustments - how to make edits on landing page?

Hi Dan,

It looks like the 70px top margin is actually coded into your LP template (at line 33). However, if you just want to change this as a one-off instance, you could always do something like #mktoForm_1512 {margin-top: 0 !important;} in your form's actual CSS.

View solution in original post

3 REPLIES 3
Casey_Grimes
Level 10

Re: margin-top Adjustments - how to make edits on landing page?

Hi Dan,

It looks like the 70px top margin is actually coded into your LP template (at line 33). However, if you just want to change this as a one-off instance, you could always do something like #mktoForm_1512 {margin-top: 0 !important;} in your form's actual CSS.

Justin_Cooperm2
Level 10

Re: margin-top Adjustments - how to make edits on landing page?

Anonymous
Not applicable

Re: margin-top Adjustments - how to make edits on landing page?

Thank you Courtney. I went with the one-off custom CSS option, and the margin is gone.