I am using particles.js by sketch.js
It is a nice effect and I want to use it but when I am doing so it is placed over my website's navbar and thus the links are not clickable
I tried Z-INDEX : 99999;, but it still "overlaps my nabvar"
I am using particles.js by sketch.js
It is a nice effect and I want to use it but when I am doing so it is placed over my website's navbar and thus the links are not clickable
I tried Z-INDEX : 99999;, but it still "overlaps my nabvar"
As I understand you have placed your sketch.js canvas on top of your navbar, thus the nav is not clickable?
Try putting pointer-events: none; on the sketch.js canvas or its immediate container. Setting this property to none means that the element will "pass through" all of the mouse events.