PDA

View Full Version : Change Cursor and Scrollbar in Mozilla Firefox


getlowdogg369
07-18-2006, 04:20 PM
Hello everyone! I am currently using the following CSS code for my site:
body {
scrollbar-arrow-color:FFFFFF;
scrollbar-Track-Color:000000;
scrollbar-Highlight-Color:000000;
scrollbar-base-color:000000;
scrollbar-Face-Color:000000;
scrollbar-Shadow-Color:000000;
scrollbar-DarkShadow-Color:000000;
cursor:url(cursor.cur);
}
This code is not affecting Mozilla Firefox. I heard there is a way to make it do so. Does anyone know how? Thanks!

- Jason

Pegasus
07-18-2006, 07:22 PM
It may not affect Firefox. That code is an IE-specific one and not a W3C code.

getlowdogg369
07-18-2006, 09:03 PM
It may not affect Firefox. That code is an IE-specific one and not a W3C code.
How do I make it affect Mozilla Firefox? Can you provide me with a code?

Pegasus
07-18-2006, 09:10 PM
You can't. If the browser doesn't recognize the code as valid, it won't read it. That code isn't valid W3C code. Firefox only recognizes user-valid code. It won't let you change the appearance of a person's browser.

Peg

getlowdogg369
07-18-2006, 09:38 PM
You can't. If the browser doesn't recognize the code as valid, it won't read it. That code isn't valid W3C code. Firefox only recognizes user-valid code. It won't let you change the appearance of a person's browser.

Peg
Alright. Thanks.

johnz
07-18-2006, 09:43 PM
you can change your cursor in both FF and IE
html, body {
cursor: url("yourcursor.cur"), default;
}

make sure that the cursor has .cur extension

getlowdogg369
07-18-2006, 09:53 PM
you can change your cursor in both FF and IE
html, body {
cursor: url("yourcursor.cur"), default;
}

make sure that the cursor has .cur extension
Wow... It actually works!! Thank you so much!:)