How to create an animated text shadow effect in Elementor

Elementor 3.17 Update Broke My Forms — Here’s the Fix

Everything looks fine for about twelve seconds. Then the contact forms stop submitting. No error message. No console warning. Just… ...

Read More

My WordPress Site Got Hacked (Not My Fault — wp2shell Did It)

Someone just exploited a hole in WordPress core that lets them take over your server without logging in. Here's what ...

Read More

Elementor Update Just Broke My Site — Here’s How I Sorted It

Updated Elementor and your site broke? I walk through the actual fixes that worked when it happened to a client ...

Read More

How To Make A Vertical 3D Gallery Slider

So if you follow along in the video, I refer to this blog post for you to enter code at ...

Read More
Showing Slide 1 of 5

So if you follow along in the video, I refer to this blog post for you to enter code at certain points, so below is everything you will need!

The Following are the css class names I used in the tutorial:

				
					reboot-shadow-animation-3d

reboot-shadow-animation-grow

reboot-shadow-animation-spread
				
			

The Following code goes into the HMTL widget:

				
					<style>
    .reboot-shadow-animation-3d {
        animation: shadow-grow-3d 2.5s ease-in-out infinite;
        display: inline-block; /* Ensures proper alignment */
    }

    @keyframes shadow-grow-3d {
        0%, 100% {
            text-shadow: 0px 0px 0px black, 0px 0px 0px red;
        }
        50% {
            text-shadow: 1px 1px 0px black, 2px 2px 0px black, 3px 3px 0px black, 4px 4px 1px black, 5px 5px 0px black, 6px 6px 0px black, 7px 7px 0px black;
        }
    }
    
    
    
    .reboot-shadow-animation-grow {
        animation: shadow-grow-grow 2.6s ease-in-out infinite;
        display: inline-block; /* Ensures proper alignment */
    }

    @keyframes shadow-grow-grow {
        0%, 100% {
            text-shadow: 0px 0px 0px black;
        }
        50% {
            text-shadow: 0px 3px 8px black;
        }
    }
    
    
    
    .reboot-shadow-animation-spread{
        animation: shadow-grow-spread 2.7s ease-in-out infinite;
        display: inline-block; /* Ensures proper alignment */
    }

    @keyframes shadow-grow-spread {
        0%, 100% {
            text-shadow: 0px 0px 0px black;
        }
        50% {
            text-shadow: 0px 0px 7px black;
        }
    }
    
    
</style>