Create a step-by-step design (step icon) Attractive layouts usually require additional plugins in Elementor. However, did you know you can create them with just a few CSS touches? This method is more lightweight because it doesn't burden your site with new plugins.

Here is a step by step guide to make it:

Step 1: Use the Icon Box Widget

The first step is to prepare the basic elements.

Step 2: Set Icon Position and Style

To make it look like a process flow, you need to adjust the layout.

Step 3: Adding Custom CSS Code

This is the most important part to make the connecting lines between icons appear automatically.

CSS

selector:not(:last-child):after { content: ''; position: absolute; width: 2px; background-color: #0055CC; /* Line color */ top: 50px; /* Adjust to fit the icon height */ bottom: -30px; /* Line length down */ left: 35px; /* Adjust to fit the icon center */ }

Fine-Tuning Tips:

With this simple CSS technique, you now have step icon A clean and professional design without the need to install heavy third-party plugins. This design will automatically remove the line on the last item thanks to the command :not(:last-child) in the code.

Leave a Reply