Remove Pulsing Highlight Effect in Login as User Pro Button

In the latest version (v1.5.9) of Login as User Plugin for WordPress, a pulsing highlight effect appears on the notification bar at the bottom of the page, indicating that you are logged in as another user. This effect might not be desirable for some users.

To disable this effect, you can add the following CSS code to your theme’s Custom CSS section:

/* Remove the pulsing highlight effect */
.w357-login-as-user-frontend-btn:hover {
    transform: none !important;
}
.w357-login-as-user-frontend-btn .w357Ping {
    display: none !important;
    visibility: hidden !important;
    animation: none !important;
}

This CSS will:

  • Disable the pulsing animation entirely.
  • Remove the highlight effect for a cleaner user experience.
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us