Funkcionalnosć toś togo sedła se pśez wótwardowańske źěła wobgranicujo, kótarež maju wašo dožywjenje pólěpšyś. Jolic nastawk waš problem njerozwězujo a cośo pšašanje stajiś, wobrośćo se na našo zgromoźeństwo pomocy, kótarež na to caka, wam na @FirefoxSupport na Twitter a /r/firefox na Reddit pomagaś.

Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

how to disable hand cursor

  • 3 wótegrona
  • 1 ma toś ten problem
  • 423 naglědow
  • Slědne wótegrono wót Framed

more options

While hovering over the text of a link, the cursor changes into a hand. This has the effect, that i cannot select text from that link anymore, but instead, the whole link is dragged as if it were an image.

Not only the dragging is annoying, but also the form of the cursor, as i find it less precise.

How can i disable the changing into a hand cursor once and for all?

While hovering over the text of a link, the cursor changes into a hand. This has the effect, that i cannot select text from that link anymore, but instead, the whole link is dragged as if it were an image. Not only the dragging is annoying, but also the form of the cursor, as i find it less precise. How can i disable the changing into a hand cursor once and for all?

Wubrane rozwězanje

Hmm, not sure about Linux, but on Windows, if you keep the Alt key pressed while selecting in or into a link, Firefox will not follow the link when you lift the mouse button. So that way you can safely select whatever part you like.

Toś to wótegrono w konteksće cytaś 👍 1

Wšykne wótegrona (3)

more options

You would need to add a piece of CSS code, like this, to a userContent.css file:

a {
    cursor: default !important;
}

It's not necessarily a fix-all solution, since some websites may have links that are created a non-standard way, but this should stop the cursor from changing to a hand when hovering a link.

A userContent.css file is the same as setting up a userChrome.css file, only it controls the appearance of website content, not the Firefox UI itself. You can read How to Create a userChrome.css File for some more information on how to create a userChrome.css and then just change the file name to userContent.css instead.

You can change what cursor you want to use instead of the hand (pointer) cursor by changing default to another cursor code (see this MDN page for more information).

Hope this helps.

more options

Wubrane rozwězanje

Hmm, not sure about Linux, but on Windows, if you keep the Alt key pressed while selecting in or into a link, Firefox will not follow the link when you lift the mouse button. So that way you can safely select whatever part you like.

more options

@Wesley that is a great tip, i will definitely try it out.

@jscher2000 Indeed, im on linux. Yes, by pressing Alt i can safely select text inside the link and this will suffice, thank you.

Although, if Alt is released before the left mouse button, a request is made and the link is followed, which is a little bit surprising and whereas id prefer to stay on the current page. But that is just a little flaw, where the devs can decide it they want to go into it.