I'm using intro.js
to tour a specific element
introJs("#section1").start()
Is there any way I can expand the background to the entire page even when focusing on a single element ?
JSBIN example (try to activate the tour for the bottom sections)
I've tried overriding introjs-overlay
.introjs-overlay {
width:100%!important;
height:100%!important;
top:0!important;
left:0!important;
}
but setting top
to 0 pins the overlay section to the top of the page (if not overriden it's sticks to the specified element).