This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

clickable objects under fixed sidebar, is it possible?
#3
(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;
}
Reply


Messages In This Thread
RE: clickable objects under fixed sidebar, is it possible? - by xdigito - 15.05.2017, 13:23

Forum Jump: