I'm trying to make a webpage with custom cursor, and it's working fine except when I mouse over buttons - how do I change this so that the custom cursor doesn't do this?
body, html {
cursor: url(cursor.gif), pointer;
}
<body align="center">
<h2>Click this button!</h2>
<button onclick="location.href='/ever';">Click Me!</button>
</body>