In this tutorial, I’ll show you the best way to create a two-column Pardot form. This is a follow up on my original post How to Create a 2 Column Pardot Form. By popular request, this new method includes a way to make certain form fields full width and is fully responsive. All you have to do is add CSS classes to your form fields and copy & paste the CSS provided into Pardot.
Add CSS classes to your form fields
The first step is to add CSS classes to your form fields. We will be using three different classes within the forms:
- form-col-1: Add this to form fields that will be in the left column.
- form-col-2: Add this to form fields that will be in the right column.
- form-col-full: Add this to form fields that you want in a single, full-width column.
To add a class to a form field, navigate to the fields tab of your form, click on the pencil icon to edit the form field. Then, click on the advanced tab and enter the class name in the CSS classes field.
Repeat this process until all form fields have one of the three classes. Here’s an outline of what my sample form looks like, where all the fields are in two columns except for the email field which is full width.
Edit the Form HTML
By default, every form field within your form will be wrapped in paragraph tags (<p></p>). This is not ideal when it comes to creating two-column forms, but it’s easy to update.
Navigate to your layout template and click on the Form tab. Change the paragraph tag to a DIV and close it right after the error message fields, as illustrated below.
Alternatively, replace the ENTIRE content within the form tab with the code below.
Add the CSS
Next, you need to add the following CSS in Pardot. You can add this in the layout template or within the form editor under look and feel > above form.
Here’s what my example form looks like with all the CSS added.
Questions?
Send me a tweet @jennamolby, leave a comment below, or book a Peer Chat.





93 Comments
Hi – If i have a checkbox field with 14 options, is there a way to wrap those 14 checkbox items into 2 columns so it isn’t so long?Thanks!
Hi Taylor, Adding this CSS should do the trick .pd-checkbox .value span {
float:left;
width:50%;
} Cheers, Jenna
Hi Jenna
Thanks so much for providing these instructions – you are a lifesaver! However, I do have one problem where, when not all the required fields are filled in, and the error message appears, the “Please correct the errors below” message is appearing above the right hand column, instead of the left. It looks peculiar, how can I fix this?
Here is a screenshot: https://overthewire.com.au/wp-content/uploads/2019/08/Pardot-Form-Error.png
Hi Elleisa, You’re welcome! Can you send a link to your form to [email protected] so I can take a look? There might be some CSS already embedded that might be causing the issue. Cheers, Jenna
I like how this works except with the way it reacts when stacking. I would like all of column 1 to come before all of column 2. Is there a way to have them stack that way instead of shuffle left, right, left, right…?
Hi Jenna, How do you incorporate checkboxes and radio buttons into the layout and have them sit nicely underneath the 2-col text fields?
Hey Jenna Thank you for the code I find it super useful, just a FYI there is an extra semi colon on the fourth line of the CSS.