You are going to block this site. This will do the following:
- You will no longer see this site in searches.
- Site will no longer see your site in searches.
- Site will not be able to comment on your site profile.
- Any comments this site has posted to your profile will not be displayed.
Are you sure you want to do this?
Oh, heya there! I looked up the right dimensions of a windows cursor, then drew it on FireAlpaca (keeping in mind to keep the tip of the arrow touching the top left corner of the canvas, for the touch to work right). Then, you export it as a PNG, and finally change your cursor in CSS!
In the CSS, you open up the curly braces for the html element (to make sure it works everywhere, including on scrollbars), and type out “cursor: url(“INSERT URL HERE”), auto; <— The auto at the end is the default cursor, to act as fallback in case the custom cursor does not run on certain systems.
And as a bonus, if you wish to change your cursor image when you hover something, you can type out “a:link { cursor: url(“INSERT URL HERE”), pointer; <— This way avoids flickering when hovering links! You don’t need to add it to a :hover pseudoclass, the element itself does the trick!
Thanks! I don't know what I'm gonna make the Cursor Yet, but I know what I need, and that's good enough for now!