15.05.2017, 13:23
(15.05.2017, 12:20)admin Wrote: Use pointer-events CSS property, set it to none for elements that should not react to clicks, set it to all for elements that should react to clicks.
Thank you admin, nice trick!
This is the code I used, and it works:
Code:
.menu {
pointer-events: none;
}
.menu * {
pointer-events: all;
}