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; }