Hello, I need your help with this site we are building.
We have Custom Code on the Hero section for the Word changing effect.
Now we added Localization to the site and I don’t know how to change the custom code so it would work with each Locale.
I appreciate your help
Read Only Link: Webflow - Biwares 2024
Custom Code for the Hero Section:
/* Blinking cursor effect */ #cursor { display: inline-block; width: 2px; height: 1em; background-color: white; margin-left: 2px; animation: blink 1s step-start 0s infinite; } @keyframes blink { 50% { opacity: 0; } }