Search code examples
javascriptcursor

How to remove cursor and hand


How could I remove cursor and hand visibility from my website. I already removed cursor but when cursor is over a link it shows up as a hand. I used this code to remove cursor: document.body.style.cursor = "none";

I added imgs for visualisation

On page

On link


Solution

  • Hey – you may need to disable the cursor on hover as well

    a:hover {
      cursor: none;
    }
    

    This disables the cursor whenever you hover over an a-tag