How to Create a Contact Form on Click with Divi

Last Updated on September 16, 2022 by 31 Comments

How to Create a Contact Form on Click with Divi
Blog / Divi Resources / How to Create a Contact Form on Click with Divi
Play Button

In this Divi tutorial, we’re going to show you how to create a contact form that appears after clicking a button (as an overlay) by using nothing else than Divi, some jQuery code and CSS code.

This is a great way to keep your site visitors focused on the action they’ve committed to by clicking a button. It doesn’t take them to a different page but locks them into that action until it’s done.

Below you can take a quick peak at what we’ll be creating and then jump into the tutorial!

Result on Desktop

contact form on click

Result on Phone & Tablet

contact form on click

Inspiration

The inspiration for this post comes from a comment request and is found on B3multimedia. Although they’re using another method to make this work, they also have a stunning way to create a contact form on click. Take a look at the result:

contact form on click

Create Section with Button Module

Typically we show how to do almost everything in Divi’s frontend visual builder. In today’s post however I’ll be using the backend builder. Because of the code we’re using it’s a bit easier. That said, if you love the frontend editor as much as we do, you can just as easily complete this tutorial using the frontend “skeleton” view.

Ok, let’s get into this tutorial!

Subscribe To Our Youtube Channel

The first thing we’ll need to do is add a new section where we place the button that’ll allow the contact form to pop up. Just add a standard section and select a one-column row. Once you’ve done that, add a Button Module to it.

You can style the button however you want but you have to make sure that the button URL starts with ‘#’ followed by something else. You can’t just leave it blank or use the ‘#’ character only. By adding ‘#’ and some text, the page will not move once you click on the button. If you leave it blank, the page will refresh on click. And if you only use ‘#’, you’ll get sent to the top of the page.

contact form on click

The next important thing we’ll need to do is assign a CSS class to the button. We’ll be using this CSS class later on this post in the jQuery code to make sure the contact form pops up after clicking. The class we’ll need to assign to the button is simply ‘button’.

contact form on click

Create Desktop Contact Form on Click

The next thing we’ll need to do is create the desktop contact form that’ll appear once someone clicks on the button that we’ve created in the previous part of this post. Later on this post, we’ll also show you how to create the mobile version.

You can basically create any design you want within a row and make it appear as a popup if you use this method. We’re only going to give you a taste of what you can achieve by showing you how to create the following example:

contact form on click

Add New Standard Section

Start by adding a new standard section to the page you’re working on. Go to the Advanced tab of the section you’ve just added and add ‘popup’ to the CSS Class field. Scroll down that same tab and place the following lines of CSS code into the Before field of the Custom CSS subcategory:

top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 999;
content: "";
background: rgba(0,0,0, 0.8);
position: fixed;

contact form on click

By adding this, we’re making sure that the section takes up the whole tab. You can adjust the background color in the CSS code to create the background overlay you want. In this case, we’re using the black color with some transparency. Within that same tab, add the following line of CSS code to the Main Element as well:

display: none;

contact form on click

The last thing we’ll need to do in the Advanced tab is disabling the section on phone and tablet in the Visibility subcategory.

contact form on click

Add Two-Column Row

Continue by adding a two-column row and go to the Design tab. Start by modifying the width of the row in the Sizing subcategory. In this example, we’ve used a custom width of 1291px.

contact form on click

Scroll down the Design tab and use ’30px’ for the top, left and right padding of both columns within the Spacing subcategory.

contact form on click

Finish by going to the Advanced tab. Within the Main Element, add the following lines of CSS code:

transform: translatey(-50%) translatex(-50%);
position: fixed;
top: 50%;
left: 50%;
z-index: 1000;
border: 2px solid #0c71c3;
border-radius: 8px;

contact form on click

Add First Text Module

Once you’ve made all the changes to the section and the row, it’s time to add the different modules that you want to show up. The first thing we’ll add is the title that shows up. Start by adding a new Text Module to the first column of the row, writing the text within the Content tab and moving on to the Design tab. Within the Design tab, we’ve used the following settings for the Text subcategory:

  • Text Orientation: Center
  • Text Font: Lobster
  • Font Style: Bold
  • Text Font Size: 37
  • Text Color: #002282
  • Text Line Height: 1.7em

contact form on click

Add Second Text Module

Continue by adding a new Text Module and type down the text you want to appear in the Content tab. Move on to the Design tab and make the following settings apply to the Text Subcategory:

  • Text Orientation: Center
  • Text Font: Arial
  • Text Font Size: 13
  • Text Color: #002282
  • Text Line Height: 1.7em

contact form on click

Add Social Media Follow Module

Moving on, we’re going to add the Social Media Follow Module to the first column as well. In this case, we’ve chosen three social icons; Facebook, Twitter and Instagram. Once you’ve added these social icons in the Content tab, change the Link Shape to ‘Circle’ in the Icon subcategory.

contact form on click

The last thing we’ll need to do is add a left padding to this module in the Advanced tab. Add the following line of CSS code to the Main Element:

padding-left: 40%;

contact form on click

Add Contact Form Module

Then, we can go over to the second column of the row. In that column, the first thing we’re going to place is the Contact Form Module. For this example, we’ve only chosen two fields; the name and email. Once you’ve added the Contact Form Module, go to the Design tab of the Contact Form Module and make the following changes to the Form Field Text subcategory:

  • Form Field Font Size: 15
  • Form Field Text color: #002282
  • Form Field Line Height: 1.7em

contact form on click

Within that same tab, make the following changes apply to the Button subcategory:

  • Use Custom Style for Button: Yes
  • Button Text Size: 20
  • Button Text Color: #FFFFFF
  • Button Background Color: #0086c4
  • Button Border Width: 2
  • Button Radius: 3

contact form on click

Move on to the Advanced tab and add a top padding of 5%.

contact form on click

Add Blurb Module

Another thing we’ll need to add to the second column is a Blurb Module. The only thing we need this Module for is the exit icon on the right top of the popup. Choose the following icon in the list of icons and leave all the other things blank.

contact form on click

Moving on, go to the Advanced tab and type down ‘close’ as the CSS class. Within that same tab, add the following lines of code to the Main Element of the Custom CSS subcategory:

position: absolute;
top: -45px;
right: -30px;
cursor: pointer;

contact form on click

Apply Gradient Background to Row

Last but not least, we’re going to add some nice-looking gradient background to the row. Open the settings and make the following changes apply to the gradient background option:

  • First Gradient Color: #FFFFFF
  • Second Gradient Color: #0c71c3
  • Gradient Type: Linear
  • Gradient Direction: 124deg
  • Start Position: 50%
  • End Position: 50%

contact form on click

Create Tablet & Phone Contact Form on Click

Now that we’ve created the desktop version, the version for tablet and phone will go a lot faster. Most of the modules that we’ve used for the Desktop version are the same for the mobile version. The end result on mobile looks like this:

contact form on click

Add New Standard Section

Start by adding another standard section. This section will need to have the same settings as the section we’ve created before. Add ‘popup’ to the CSS class and add the following lines of CSS code to the Before field:

top: 0px;
left: 0px;
width: 100%;
height: 100%;
z-index: 999;
content: "";
background: rgba(0,0,0, 0.8);
position: fixed;

contact form on click

Add the following line of CSS code to the Main Element as well:

display: none;

contact form on click

Instead of disabling it for phone and tablet, as we did for the desktop version, we’re going to disable it on desktop in the Visibility subcategory:

contact form on click

Add One-Column Row

For the phone and tablet popup, we’re only going to need one column. For this row, we’re not going to use custom width. However, we are going to apply the custom padding as we did for the desktop version; 30px for the top, left and right padding of the column.

contact form on click

We’ll also need to make sure that the following lines of CSS code are added to the Main Element in the Custom CSS subcategory:

transform: translatey(-50%) translatex(-50%);
position: fixed;
top: 50%;
left: 50%;
z-index: 1000;
border: 2px solid #0c71c3;
border-radius: 8px;

contact form on click

Clone The Text, Social Media Follow & Contact Form Module

The next thing we’ll need to do is clone the first Text Module we’ve used for the Desktop version along with the Social Media Follow and Contact Form Module. After you’ve cloned them, place them in the one-column row of the new section you’ve just created.

contact form on click

Clone Blurb Module & Change CSS Code in Advanced Tab

You can also clone the Blurb Module that was used for the desktop version but there needs to be a small change in the CSS code. Instead of using the code for desktop, use the following instead:

position: absolute;
top: -15px;
right: -25px;
cursor: pointer;

Make sure that the ‘close’ CSS class is used for the Blurb Module as well.

contact form on click

Apply Gradient Background to Row

For the mobile version, we’re using different settings for the gradient background of the row:

  • First Gradient Color: #FFFFFF
  • Second Gradient Color: #0c71c3
  • Gradient Type: Linear
  • Gradient Direction: 180deg
  • Start Position: 40%
  • End Position: 40%

contact form on click

Add jQuery Code to Theme Options

The last thing we’ll need to do for this tutorial is adding the jQuery code. You can add the code through the Theme Options or through a Code Module that you place within the page you’re working on. For this example, we’re simply going to put it in the Theme Options.

To do that, go to your WordPress Dashboard > Divi > Theme Options > Integration > And paste the following lines of jQuery code within the head of your website:

<script type="text/javascript">
jQuery(function($){
jQuery('.button').click(function() {
jQuery('.popup').css('display', 'block');
});
jQuery('.close').click(function() {
jQuery('.popup').css('display', 'none');
});});
</script>

contact form on click

Result

If you follow the post, step by step, you should be able to achieve the following result on desktop:

contact form on click

And the following result on tablets and phones:

contact form on click

Final Thoughts

In this post, we’ve shown you how to create a contact form on click. Using this method to get in touch with your visitors is subtle yet effective. If you have any questions or suggestions; make sure you leave a comment in the comment section below.

Be sure to subscribe to our email newsletter and YouTube channel so that you never miss a big announcement, useful tip, or Divi freebie!

Featured Image by La1n / shutterstock.com

Divi Marketplace

Are You A Divi User? Find Out How To Get More From Divi! 👇

Browse hundreds of modules and thousands of layouts.

Visit Marketplace
Divi Marketplace
Divi Cloud

Find Out How To Improve Your Divi Workflow 👇

Learn about the new way to manage your Divi assets.

Get Divi Cloud
Divi Cloud
Divi Hosting

Want To Speed Up Your Divi Website? Find Out How 👇

Get fast WordPress hosting optimized for Divi.

Speed Up Divi
Divi Hosting
Premade Layouts

Check Out These Related Posts

Get a Free Augmented Reality Layout Pack for Divi

Get a Free Augmented Reality Layout Pack for Divi

Posted on March 25, 2024 in Divi Resources

Hey Divi Nation! Thanks for joining us for the next installment of our weekly Divi Design Initiative; where each week, we give away a brand new Layout Pack for Divi. This time around, the design team has created a beautiful Augmented Reality Layout Pack that’ll help you get your next Augmented...

View Full Post
Download a Free Webinar Theme Builder Pack for Divi

Download a Free Webinar Theme Builder Pack for Divi

Posted on March 22, 2024 in Divi Resources

It’s time for another freebie! This time, we’re giving you a free Theme Builder Pack for Divi. Combining these with our beloved Divi Layout Packs is a great way to build the Divi website of your dreams with ease. This week, the design team has created a beautiful Webinar Theme Builder...

View Full Post
Get a Free Modeling Agency Layout Pack for Divi

Get a Free Modeling Agency Layout Pack for Divi

Updated on March 21, 2024 in Divi Resources

Hey Divi Nation! Thanks for joining us for the next installment of our weekly Divi Design Initiative; where each week, we give away a brand new Layout Pack for Divi. This time around, the design team has created a beautiful Modeling Agency Layout Pack that’ll help you get your next Modeling...

View Full Post

31 Comments

  1. Hi, I put a button next to the add to cart button on my product page and gave it a class just as described. Everything works perfectly, but when I press the add to cart button, the popup activates. The pop-up window appears first. and when the product is added to the cart it closes. Could you please help me, how can I solve this problem? Thank you in advance!

  2. Hi team,

    how to include current url in the email message sent ?
    Thanks

  3. Hi, great idea to use this popup in different sections of the site … on my site works badly. the popup ends up under the main menu and does not allow me to close the popup. How can I fix this problem?

  4. Thanks this is a great tutorial! But I would like to activate a popup using the websites cta menu button from any page on the website. But this does not work, even changing the menu buttons css class and/or url link does not work in the way i want.

    Depending on what i tried.. when clicked from any page that is not the page i created the popup on it does nothing, or it redirects to the page i created the popup on and then i have to click the button again for the form to pop up.

    So what i thought of after trying different things and failing, was to put a form on every page, since it is a small website.

    but before i do that i ran into an issue… >> the popup is not popping up from the dropdown menu on mobile <<

    When i test it with a button on the page it pops up on desktop/tablet/mobile.
    But when i test it with the cta menu button.. it only pops up on desktop.

    I have been struggling with this for two days now searching google with no luck whatever i try and posting a ticket with no reply.

    (I just added basic code for now to see if it will work, didnt want to waste time styling something thats not going to work)

  5. No modal options for Divi 🙁 so this is a great alternative. Going to integrate this for my contact forms today. Thank you so much for sharing, great work.

  6. Are there future plans to have the DIVI contact form retain the entry on the back end of WordPress? I want to use the contact form as a registration tool for free events at our church (and because of it’s interface, other people can easily edit the forms) but I need a CSV output of the submissions to a form – I can’t risk having only an email copy of each submission.

  7. Hi,

    I was wondering if you could show us hoe the inspiration contact form by B3multimedia can be created with Divi elegant themes. I have been looking for options for a slider contact form like in http://www.conversionlab.no and the contact form pop-up in the Polygon inspiration you just showed. Are there any tutorials for this from elegant themes? We want to be able to add other information such as name, phone number, and message box as well.

    Thank you very much in advanced,
    Kania

  8. Excellent tutorial, I just use it on a production landing page 🙂

    It’s better with fadeIn() instead of display:block.
    And is should have a return false, or a e.preventDefault() to prevent to show the anchor in the url…

  9. Hi, it works for me, but in the phone the header hide the popup window. How can I bring to front the popup window?
    Thanks

    • on the section put one more custom css style:
      z-index:999999;

      with six nines, because the header have five nines by default. the same happens on fixed menu on desktop.

  10. Will there be a way to incorporate Bloom with this feature? I mean, instead of a contact form pop up, an optin popup to get a subscriber, much like a two step optin page?

    Would be great instead of using an extra plugin to do so…

  11. Hi Donjete, thanks for the post, a visually different and shocking way, I like
    greetings from Asturias

  12. This is great! Is there a way to make it work with a Top Menu link? I have a call to action button called “START YOUR PROJECT” in my top menu and would love for it to trigger a pop up like this. I tried with the method you showed and made the “url” for the custom menu item to be #contact, but it did not do anything.

    • You need to add the same class=”button” to the menu link.

  13. Very usefull post! Thank you Donjete!

  14. Excellent idea and something I’ll try out on my next site.

  15. Great article! I will definitely use this on my website.

  16. vrey cool but how add “close” class to background, for close with lightbox effect ?

    • yes, this is the only problem. Is worst if you have required fields and you send it empty on mobile… the error messages increase the height so then the close button hide on top and there is no way to close… unless you fill the fields and send the form 🙁

  17. very great , i have buy divi overlay but is bad no lightbox effect. why don’t you propose a layout/.Json?

  18. Hello.
    I’m using Bloom but it doesn’t show my ActiveCampaign lists. ActiveCampaign’s support team says the problem is Bloom.
    Bloom recognized account, but doesn’t show the lists.
    Could you help me, please?

    Thanks

  19. Very cool! Thank you for tgat.
    But is it working if a user has a popup blocker in the browser?

    Kind regards

    Horst

  20. As always Donjete, your technical posts are just great!
    Thanks for the effort you put into this.

  21. Great job Donjete! I will use it on my future projects. Thanks.

  22. Gosh what a great idea and design and instructions so clear… but… it didnt work for me ((( Put the beautiful form right in the middle of my front page slider without clicking any button… same on my mobile. I went through it all again and it did the same ((( get the form right across my slider when you open up the front page (have taken it off now by the way)… any idea why this would happen ?

  23. This looks great and has come just in time for me to try it out on my next Divi theme website. Great tutorial 🙂

  24. Nice Work…i’ll be using that!

  25. This is a very useful post. Thank you.

  26. Great ! Just what i need ! Looks great

  27. Very nice Donjete! I’ll use this one for sure.

  28. This looks great. Thank you.

Leave A Reply

Comments are reviewed and must adhere to our comments policy.

Join To Download Today