Click to See Complete Forum and Search --> : Setting cursor properties to "basic"


nash
08-28-2003, 07:10 AM
Okay, I would like the mouse cursor to take the "basic Windows style" on my page, you know, when the cursor is the white arrow with a black border, even if the visitor has changed is cursor settings...

I know it's possible in CSS but I have absolutely no idea how I can do it...
:(

Can anyone help?

David Harrison
08-28-2003, 04:34 PM
This should do it but if they have changed which image they want as the default cursor then it may not:

<body style="cursor:default;">

pyro
08-28-2003, 10:09 PM
Also, if the visitor has changed his cursor via the pointer options in the mouse properties, that probably means they want to use that cursor, not the default cursor...

AdamGundry
08-29-2003, 04:21 AM
You could make an image of the standard Windows cursor, upload it and use that as a URI, like this:

<body style="cursor: url('cursor.ico'), default;">

But as pyro said, if the user has changed their default cursor, they might not like your site overriding that.

Adam

nash
09-13-2003, 04:48 PM
I used the "upload an image" solution and it works properly... Thanx a lot!

I just want to make some of the pages on my site to look like an application of some sort (MS-DOS type) and thus wanted the cursor to take a "rougher look" ;)