Re: Forms 2.0 - How to I add extra spaces between lines?

Anonymous
Not applicable

Forms 2.0 - How to I add extra spaces between lines?

Hi there,

I am in the process of creating an email preference center...I would like an extra space between the field names for example, Email Address and Events and Webinars. How can I do that?

Also, Is there anyway to make the 'Topics of Interest' options listed under the field name versus to the right? It looks odd all the way out there.

Thank you!

Mandy

pastedImage_0.png

3 REPLIES 3
Anonymous
Not applicable

Re: Forms 2.0 - How to I add extra spaces between lines?

Have you tried adding Rich Text sections with blank space? Add a Rich Text to a Form - Marketo Docs - Product Docs

SanfordWhiteman
Level 10 - Community Moderator

Re: Forms 2.0 - How to I add extra spaces between lines?

Just add a margin with CSS:

.mktoFormRow {

       margin-bottom: 20px !important;

}

Anonymous
Not applicable

Re: Forms 2.0 - How to I add extra spaces between lines?

@Mandy, Sanford is correct. You can add custom CSS at the form level to change the form field/label spacing. Here's a brief bit of info on how to get to the place to edit the CSS: Edit the CSS of a Form Theme - Marketo Docs - Marketo User Manual

You'll want to copy and paste the following in the Edit Custom CSS area:

.mktoFormRow {

       margin-bottom: 20px !important;

}

Hope this helps!

-Jackie