Custom Cursor

This is how you can add your own (non-animated) cursor to your page.
You will need your own cursor images!!!

Example

The CSS

This going into the HEAD of your webpage (in between <head> and </head> tags)

* {
cursor: url(https://i.postimg.cc/GtP8GP49/arrow3_purple.png),auto !important;
}

a:hover{
cursor: url(https://i.postimg.cc/C5CBkCRz/arrow4_purple.png),auto !important;
}