How To Use Images As Mouse Cursors In WordPress + Free Download

To replace the default mouse cursor with a custom image is a playful way to create a unique user experience to your website. Let the creatives juices flow!

Live demo

Hover the two columns below to see a live demo where images are used as mouse cursors. I’ve used PNG images and a little CSS to achieve this.

👉 Related post: How to change the default mouse cursor in WordPress

Hover me to display a cool rocket cursor!
Hover this link to display a fancy hand cursor!

1. Create your custom cursor image

Create your own cursors in Adobe Illustrator or find ready-made icons at Canva, Iconic and GraphicBurger. Upload the image to your WordPress Media Library.

Pro tip: If you take a close look at the default cursors, you can actually see a thin border line in a contrasting color. This is a good way to improve the visibility.

Which format and size should I use?

To ensure support from as many web browsers as possible, I recommend that you use:

Make sure to keep down the file size to a couple of kilobytes to not slow down your page speed.

BONUS: Download a free mouse cursor pack!

Custom mouse cursor icons
  1. Enter your e-mail address below to subscribe to our newsletter.
  2. Download the zip file containing six fun custom mouse cursors
  3. Extract the zip file on your hard drive.
  4. Upload the PNG images to your WordPress media library and get creative!
The newsletter contains tips, guides and offers and is sent out approximately once a week. You can unsubscribe at any time. We will never sell or share your email address. Your email address is stored at Mailchimp.

2. Adding your custom cursor with CSS

Let’s spice things up by replacing the default mouse cursor with your custom image. You can apply it:

  • Sitewide
  • To specific pages or posts
  • To entire sections
  • To entire rows or specific columns
  • To entire modules

Here we go!

✓ Adding a custom cursor to your entire website

  1. Go to your WordPress dashboard
  2. Click Appearance » Customizer
  3. Go to Additional CSS  and paste the snippet below:
    body {
    cursor: url('/my-folder/my-cursor.png'), auto;
    }
  4. Replace the placeholder URL with the URL to your custom cursor image.
  5. Save and preview in frontend

Clear your browser and website cache if you don’t see any change.

Replacing the default hand icon for links

The snippet above will replace default arrow cursor sitewide, but it does not display when a visitor hovers a linked text or button with a link.

Use this snippet to replace the default hand icon for links:

body a {
cursor: url('/my-folder/link-cursor.png'), auto;
}

That’s it!

✓ Adding a custom cursor to a specific page or post

You could target the Page ID or Post ID in your CSS, for example like this:

.page-id-123 {
cursor: url('my-folder/my-cursor.png'), auto;
}

But if you are using the Divi theme, there is a more more convenient way:

  1. Enable the Divi Visual Builder on the page or post
  2. Expand the Visual Builder menu by clicking the purple icon in the bottom center
  3. Click the cogwheel to edit the Page Settings
  4. Click Advanced » Custom CSS and paste the snippet below
    body {
    cursor: url('/my-folder/my-cursor.png'), auto;
    }
  5. Replace the placeholder URL with the URL to your custom cursor image.
  6. Save and preview in frontend

Clear your browser and website cache if you don’t see any change.

Edit page settings in Divi Builder
Add custom cursor to a specific page or post

✓ Adding a custom cursor to a specific element

You could target specific element on a page or post, for example a section, row, column or module by adding a CSS Class in the Divi Builder.

  1. Go to Divi » Theme Customizer from your WordPress dashboard
  2. Go to Additional CSS and paste the snippet below:
    .dm-cursor {
    cursor: url('/my-folder/my-cursor.png'), auto;
    }
  3. Replace the placeholder URL with the URL to your custom cursor image
  4. Save and exit the Theme Customizer
  5. Enable the Divi Visual Builder on the page or post that you want to edit
  6. Hover the specific element and click the cogwheel to edit the element settings
  7. Click the Advanced tab and expand CSS ID & Classes
  8. Add the CSS Class dm-cursor
  9. Save the changes and preview in frontend

Clear your browser and website cache if you don’t see any change.

Add custom cursor to a specific element

That’s all for today!

I hope that you enjoyed this post. Subscribe to DiviMundo on YouTube and join our Facebook group for more crisp content on WordPress and web design.

👉 Related post: How to change the default mouse cursor in WordPress

👉 Free course: Create a website from scratch with Divi

Related posts

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Affiliate Disclaimer

All content on DiviMundo is funded by you – our beloved readers. Some of the links are affiliate links. This means that if you click on the link and purchase something, I will receive an affiliate commission. But it will never cost more for you. Thanks for your support!

Victor Duse, founder of DiviMundo