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
Have you tried adding Rich Text sections with blank space? Add a Rich Text to a Form - Marketo Docs - Product Docs
Just add a margin with CSS:
.mktoFormRow {
margin-bottom: 20px !important;
}
@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