Title: Blinking cursor?
Last modified: March 12, 2020

---

# Blinking cursor?

 *  [dechtman](https://wordpress.org/support/users/dechtman/)
 * (@dechtman)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/blinking-cursor/)
 * Is it possible to keep the cursor blinking after the animation is complete?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fblinking-cursor%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [vlfom](https://wordpress.org/support/users/vlfom/)
 * (@vlfom)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/blinking-cursor/#post-12546719)
 * 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](https://wordpress.org/support/users/dechtman/)
 * (@dechtman)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/blinking-cursor/#post-12548561)
 * thank you! Perfect.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Blinking cursor?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/mrlegend-typedjs.svg)
 * [Typed JS: A typewriter style animation](https://wordpress.org/plugins/mrlegend-typedjs/)
 * [Support Threads](https://wordpress.org/support/plugin/mrlegend-typedjs/)
 * [Active Topics](https://wordpress.org/support/plugin/mrlegend-typedjs/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mrlegend-typedjs/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mrlegend-typedjs/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [dechtman](https://wordpress.org/support/users/dechtman/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/blinking-cursor/#post-12548561)
 * Status: not resolved