0

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

Oliwier
  • 42
  • 1
  • 6
  • 1
    Does this answer your question? [Is it possible to remove the hand cursor that appears when hovering over a link? (or keep it set as the normal pointer)](https://stackoverflow.com/questions/8953485/is-it-possible-to-remove-the-hand-cursor-that-appears-when-hovering-over-a-link) – Lars Flieger Apr 17 '21 at 19:29

2 Answers2

0

You could set cursor: none; on all a elements with a setting in a in your head element..

a {
  cursor: none;
}
<a href="#">A link </a>
A Haworth
  • 30,908
  • 4
  • 11
  • 14
0

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