
Custom Cursors
A free Carrd plugin template to add custom cursors to your Carrd sites. Tutorial here →
Carrd plugins
See more Carrd plugins
Download
Download the plugin template now
Made by
@jasonleowsg
Tutorial
Customizing the custom cursors pluginYou can easily replace the default mouse cursor with any custom cursor image by editing a single line of code.---Change the mouse cursor imageLook for this line:cursor: url('https://i.postimg.cc/14xFcwdn/flaming-sword-minecraft-404d04d4-preview-128.webp') 4 47, auto !important;Replace the URL inside
url('...') with the direct image URL of your own cursor.For example:cursor: url('https://your-image-url.com/cursor.png') 4 47, auto !important;The numbers after the URL (
4 47) define the cursor's hotspot—the exact pixel that acts as the clicking point. Most cursor downloads include the correct hotspot values. If your cursor feels slightly offset when clicking, you can experiment with these numbers until it lines up correctly.Tip: PNG and WebP images generally work best.---Where to find cool mouse cursorsHere are a few popular websites with thousands of free cursor designs:Cursors-4U – https://www.cursors-4u.com/
- One of the largest cursor libraries, with gaming, anime, retro, and animated cursors.Sweezy Cursors – https://sweezy-cursors.com/
- Modern cursor collection with Minecraft, Valorant, Pokémon, memes, and more.Open Cursor Library – https://www.rw-designer.com/cursor-library
- Large community-created collection of free cursors.---Getting the image URLMany cursor websites provide cursor files (.cur or .ani), which aren't ideal for this snippet. Instead:1. Download the cursor image (PNG or WebP if available).
2. Upload it to an image hosting service (such as Postimages or your own website).
3. Copy the direct image URL.
4. Replace the existing URL inside url('...').Once you save your changes and publish the page, the new cursor will appear automatically.