Viewing 2 replies - 1 through 2 (of 2 total)
  • A simple workaround that I use is to style the cursor in the Custom CSS:

    .typed-cursor {
        -webkit-animation: blink 1s infinite !important;
        animation: blink 1s infinite !important;
    }
    
    @keyframes blink {
      from {
        opacity: 0;
      }
      to {
        opacity: 1
      }
    }
    @-webkit-keyframes blink {
      from {
        opacity: 0;
      }
      to {
        opacity: 1
      }
    }
    Thread Starter dechtman

    (@dechtman)

    thank you! Perfect.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blinking cursor?’ is closed to new replies.