My favorite trick for changing my cursor to a custom image involves using this specific css code.
*
{
cursor: url(../images/cursor.png), auto;
}
But I've noticed that whenever I click on a link or button, the cursor reverts back to its default look. How can I avoid this from happening?