Large Icons Step Reveal Elementor Pro Form

Large Icons Step Reveal Elementor Pro Form

Element.How also offers premium tutorials! Check them here:

Table of Contents

In this tutorial, I'm going to show you how to create an Elementor Pro form with large icons checkboxes and radios, as well as a step reveal animation.

Here is what we will be creating. You will also find the template file in your download zip bundle that came with the course.

Features:

  • Attractive: Woah your visitors and clients with a great looking form
  • CSS only: No extra plugins needed! Just Elementor Pro, to have the form element
  • Customizable: Make it your own by swapping to your icons and design
  • Responsive: Works and looks great on smartphones as well

Let's get started!

Get the full CSS course now to unlock this chapter, and 50+ others.

 

Access tutorial

$99/one time Purchase access

Includes

  • Gain Access to This TutorialUnlock complete access to the current tutorial:
  • Future UpdatesYou will get access to all future updates to this tutorial.
  • Enjoy Unlimited UsageUse on as many of your own sites or your clients sites as you wish.

    Note that reselling or redistributing is not permitted.

Access everything

$299/one time Purchase All Access

Includes

  • Unlock every premium tutorial on Element.howGet access to the entire library of premium tutorials on Element.how
    Preview premium tutorials
  • Get access to the CSS course for Elementor usersAccess the complete 14 HTML chapters, 30 CSS chapters and 7 Elementor Projects.Learn more
  • Simple CSS Grid For ElementorAn Elementor Addon to Create Awesome Grid Layouts in a Single Click for Containers, Galleries and Loop Grid. Learn more
  • free extra: ShapeDividers.com Premium AccessLifetime Premium Access to ShapeDividers.comVisit ShapeDividers.com
  • 30 day money backNo questions asked money back. Not what you expected? Get a refund.
  • One-time payment of only $299No hidden fees or subscriptions.

    Sales taxes added where applicable.
  • Great supportGet help when you need it. Support includes getting things working as intended.

    Support excludes customization work.
  • Lifetime access to everything Element.howThe price reflects what is currently available on Element.how. All future updates are included, but none are promised. You pay for what is available now, and the rest is a sweet extra.

    I will say that it is definitely my intention to keep adding tutorials to Element.how.
* All prices are USD. Applicable taxes will be charged at checkout. Have a question? See the FAQ or email me.

Element.how also provides premium tutorials showing awesome advanced designs, check them out here.

Looking for something else? Search across 2737 Elements right here:

Checkout the Elementor Addon Finder directly

2 Responses

  1. Hi, love this! I just have one issue. I'm left with a lot of blank space at the bottom of the form if the user doesn't click an option. Any way to fix this?

    1. Greetings Alistair!

      Replace this CSS:

      #fancyForm .elementor-field-group:nth-child(1):has(input) ~ .elementor-field-group {
          opacity:0;
          pointer-events:none;
          transform: translateY(20px);
          display: none;
          transition: opacity 0.6s, transform 0.6s;
      }
      
      #fancyForm .elementor-field-group:nth-child(1):has(input:checked) + .elementor-field-group {
          opacity:1;
          transform:translateY(0);
          pointer-events:all;
          display: flex;
      }
      
      #fancyForm .elementor-field-group:nth-child(2):has(input:checked), 
      #fancyForm .elementor-field-group:nth-child(2):has(input:checked) ~ .elementor-field-group {
          opacity:1;
          transform:translateY(0);
          pointer-events:all;
      }

      With this:

      #fancyForm .elementor-field-group:nth-child(1):has(input)~.elementor-field-group {
          display: none;
      }
      
      #fancyForm .elementor-field-group:nth-child(1):has(input:checked)+.elementor-field-group {
          display: flex;
          animation: formFieldReveal 0.6s ease-in-out;
      }
      
      #fancyForm .elementor-field-group:nth-child(2):has(input:checked),
      #fancyForm .elementor-field-group:nth-child(2):has(input:checked)~.elementor-field-group {
          display: flex;
          animation: formFieldReveal 0.6s ease-in-out;
      }
      
      @keyframes formFieldReveal {
          0% {
              opacity: 0;
              transform: translateY(20px);
          }
      
          100% {
              opacity: 1;
              transform: translateY(0);
          }
      }
      

      Having an animation instead of a transition allows us to animate elements that go from display:none to display:flex. However as you will see, in that case, they won't animate in reverse (when going from display:flex to display:none).

      Still that should be a satisfactory solution!

      Cheers!

Leave a Reply