-1

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?

tru.d
  • 555
  • 2
  • 6
  • 23

1 Answers1

0

Below CSS fixed the issue

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

.introjs-donebutton{
visibility: visible !important;
}
tru.d
  • 555
  • 2
  • 6
  • 23