Hi
I’m using the following code to animate wavy underline without imgs/svg in Additional CSS block. But instead, buttons and navigation menu is getting animated. Underline turns wavy but doesn’t animate. How to fix it?
.entry-content a {
text-decoration-line: underline;
text-decoration-style: wavy;
}
a:hover
{
text-decoration-style: wavy;
text-decoration-color: #ff1493;
text-decoration-line: underline;
animation: animate 1s linear infinite;
}
@keyframes animate
{
0%
{
transform: translatex(-1px);
}
100%
{
transform: translatex(-57px);
}
}