Search code examples
htmlcsscursortumblr

Removing a custom cursor on tumblr


I am having a problem with removing a custom cursor on my theme. I am using the theme Sucy by guroshoujo.

I already removed the cursor code and deleted my cache but it still shows up.


Solution

  • Just add this CSS rule:

    body { cursor: default !important; }
    

    The problem is that you had put the cursor property in differents elements (for example, in div.media > a). If you add the !important you ensure "overwrite" the cursor properties of the other elements.