Classic and V2 Type text issue - background on cursor

Hi!

I am doing a redesign on the site, and after updating to latest X, Type Text’s Cursor got a black background which I cannot get rid of.

Inspecting it I got that it is a keyframe blink background color.

Also, If I turn-off the blinking cursor, it suddenly moves the entire page downwards on each type text turn, despite the fact it is a singe word and there is no reason for it to wrap.

Can you take a look? Link in the private message. Thanks!

Hey @Misho,

The issue is coming from ConvertPlug. I’ll post this to our issue tracker.

For now, please add this code in your Global CSS to fix (see Secure Note for the code’s effect).

.x-column .typed-cursor {
    opacity: 1;
    -webkit-animation: blink2 .7s infinite;
    -moz-animation: blink2 .7s infinite;
    animation: blink2 .7s infinite;
}
@keyframes blink2{
    from,to{background-color:transparent;opacity: 0}
    50%{background-color:transparent;opacity: 1}
}

Thanks.

Worked like a charm. I couldn’t catch this one.
Thanks!

You’re welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.