I am having an issue with some css. I am trying to set a custom cursor for when hovering over links. I am trying to with this code but nothing happens and it stays the pointer.
a {
color: #99ccff;
cursor: paw.cur;
}
a:hover {
color: #71b2f4;
cursor: paw.cur;
}
Even adding !important
to the end of the a:hover one doesn't work.