Click to See Complete Forum and Search --> : custom cursor


rhsunderground
03-05-2004, 11:28 PM
how can i put a custom cursor up on my site? i've heard of the evils of comet cursor, and i figured there's some sort of magic something that might make me feel special out there.

Paul Jr
03-06-2004, 12:01 AM
You'll need to download some program that allows you to create .cur files. I've heard of something called Michael Angelo, or some such thing. Google it.

Sam
03-06-2004, 12:15 AM
this (http://www.conware-pro.com/products/ia/about.php) is the program I use for all my cursors/icons

starrwriter
03-06-2004, 03:17 AM
Originally posted by rhsunderground
how can i put a custom cursor up on my site? i've heard of the evils of comet cursor, and i figured there's some sort of magic something that might make me feel special out there.

You can find free custom cursors to download by searching Google for "custom cursors."

Insert the CSS below into the <head> section of your HTML document. Change the cursor filenames to the actual names of the cursor images you choose.

<style>
<!--
A:hover{CURSOR: url(handfilename.cur);}
BODY{CURSOR: url(arrowfilename.cur);}
-->
</style>

To test page on your computer, cursor image files must be in same folder or directory as your HTML document.

Super Sonic
03-06-2004, 09:08 AM
Hey, would that bit O' CSS work for animated cursors?

Paul Jr
03-06-2004, 12:35 PM
Originally posted by Super Sonic
Hey, would that bit O' CSS work for animated cursors?
Yup.

Of course, I would find it easier just to do:

<style type="text/css">
* {
cursor: url(foo.ani);
}
</style.

;)

Vladdy
03-06-2004, 12:54 PM
Mozilla does not seem to support custom cursors....
... and since we are on the subject...:D :D this was my response when someone at codingforums asked "How can I get a finger cursor":
www.vladdy.net/Demos/CustomCursor.html

Paul Jr
03-06-2004, 01:14 PM
Originally posted by Vladdy
Mozilla does not seem to support custom cursors....
Yeah, I know. Great, isn't it? :D

Originally posted by Vladdy
... and since we are on the subject...:D :D this was my response when someone at codingforums asked "How can I get a finger cursor":
www.vladdy.net/Demos/CustomCursor.html
AHA! LMFAOWROTFS!!! :D :D :D

That is hilarious!

Super Sonic
03-06-2004, 10:56 PM
OH GOD!
LOLOLOLOLOL!
"FINGER CURSUR"
I'm rolling on the floor laughing!

rhsunderground
03-08-2004, 11:28 AM
welll..........
the custom cursor went great. i used the software microangelo (http://www.microangelo.us/welcomet.asp). the only problem is that the hover doesn't work.
the site is here (http://www.esu3.k12.ne.us/districts/ralston/hs/rhsweb/).
the code is here:

<style>
BODY{CURSOR: url(cursor.cur);}
A:hover{CURSOR: url(cursor.cur);}
</style>

strange...

Sam
03-08-2004, 12:41 PM
works fine in IE, not ff though, perhaps ff doesn't allow them?

rhsunderground
03-08-2004, 03:35 PM
i dunno. i guess it just didn't work on my computer. worked on others, now works on mine.