user2602540
user2602540

Reputation: 27

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.

Upvotes: 0

Views: 5746

Answers (1)

leoMestizo
leoMestizo

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

Related Questions