-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Hello! I am having an issue similar to one that was already closed, however the solution there proposed didn't work for me. I am not sure if I am missing something here, but this is the closed issue related to mine:
I have a side menu (#sidebar) on my webpage which has a position fixed and has a z-index value of 1010. However, since the z-index of the .tour-backdrop element, which is a sibling of the fixed side menu, is higher, my element which should be highlighted is not clickable. The clickable element is a child of my #sidebar. I included the backdropOptions highlightColor: '#000' (my sidebar is also darker), and backdropSibling: true in the step where my child element should be highlighted, but it didn't work, the element #persons is not clickable and not highlighted. I noticed that if I include the backdropSibling as true the z-index of tour-backdrop reduces to 1029 value, which works fine on the case from the other issue, since the z-index is set to 1030 there, but not on my case.
It would be great if you could help me, maybe I am not seing something obvious! I reproduced my issue here:
https://jsfiddle.net/lufradenogueira/01qknhfu/76/
This is the one case that works fine and was reproduced on the issue related to mine:
https://jsfiddle.net/lufradenogueira/Lfme435a/9/
I know that just by increasing the z-index of my side bar with css it would work, however this is not a good solution here. I would like something that would work even if in the future the backdrop-tour element changes its css. Thank you in advance and keep doing the nice work you've done so far!