Need your help ๐Ÿค— : How do I remove hand (pointer) cursor

@jawd-allal , you have 2 options. Either add to your CSS:

a:hover {
cursor: none;
width: 90px;
height: 90px;
background: pink;
}

or try adding the following in your current code:

[#myCustomCursor](https://www.editorxcommunity.com/forum/search/~num~myCustomCursor) .myCursorHoverState { 
    cursor: none  **!important** ;         
    width: 90px; 
    height: 90px; 
    background: pink; 
} 

Regarding the Pro Gallery, if it doesnโ€™t work, could be that itโ€™s because the Pro Gallery is not a link (he talks about this in the video as well).

I hope this helps.