Reputation: 27
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.
Upvotes: 0
Views: 5746
Reputation: 1499
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.
Upvotes: 1