Bela's profile picture

Published by

published
updated

Category: Web, HTML, Tech

How I get cursors from Custom-Cursor.com

Step 1: go to https://custom-cursor.com/ 


Step 2: You can search for the cursor you want in collections or in the search bar:


Step 3: After you find the cursor you want, click on the [VIEW] button. It will take you to the cursor page.

Step 4: Hover over the gray box next to the [ADD] button and right-click to see the Inspect tool.


Step 5: Once the Inspect tool is open you should see this div already selected. Just click the down arrow to open it.


Step 6: The first div element will have the pointer cursor. The hover cursor will be in the button class element that has the "hover me" text.


Step 7: From there just copy the link for the cursor and paste it into this code:

<style>

*{ cursor: url('HERE';), auto;}

a:hover{ cursor: url('HERE';), auto;}

</style>

That's it! :)


0 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )