Skip to content
Advertisement

How to add custom class for introJS skip button?

I need to hide skip button, but .introjs-skipbutton class is also hiding the done button(I need done button).

How to add custom class for introJS skip button?

Advertisement

Answer

Below CSS fixed the issue

.introjs-skipbutton{
visibility: hidden !important;
}

.introjs-donebutton{
visibility: visible !important;
}
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement