Using Custom Cursors with Word Press

Ed Sanders Tutorials Leave a Comment

Just add the following css to your page or theme css page:

BODY {
cursor: url(https://mredsanders.net/cursors/shoeshine.cur), default;

}

a:hover {
cursor: url(https://mredsanders.net/cursors/polly.cur), default;
}

input, textarea, select {
cursor: url(https://mredsanders.net/cursors/simon.cur), default;
}

Substitute your cursor’s url for above and it will work in IE and Firefox and Google Chrome…Don’t have any cursors? Download Mine HereĀ  .

You …