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:
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
Solved! Go to Solution.
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.
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.
+1, just add custom CSS to your form.
http://docs.marketo.com/display/DOCS/Edit+the+CSS+of+a+Form+Theme
Thank you Courtney. I went with the one-off custom CSS option, and the margin is gone.