Hi guys, any idea why my cursor isn’t accurate to the circle?
It should be centered but seems to be off slightly? any ideas?
Thanks in advance!
Here is my public share link: LINK
Hi guys, any idea why my cursor isn’t accurate to the circle?
It should be centered but seems to be off slightly? any ideas?
Thanks in advance!
Here is my public share link: LINK
Hey @elwips
You’re using @dram guide for the custom cursor See how to fix it here > https://www.useloom.com/share/056a0328a5784ae9a47486289854a9b1
Since the cursor elements are located inside the wrapper that is fixed, fills the whole screen, and is above everything else on the page with the highest z-index, we need to do something to be able to hover and click through it to get to the rest of the elements on the page! And this is actually possible with just one line of custom css.
Create an html embed element somewhere on the page and put the following code inside:
<style>
.cursor-wrapper {pointer-events: none;}
</style>
Piter
Thanks Piter, I don’t actually have a premium account but will consider this option.