websites

LoveMyTroy

Member
Hey all,

Does anyone have their own website or have some experience in the CPanel and editing of a website?

I would like to know how to change the default cursor on my webpage. I know how to put a script in so a cursor image will follow/trail the cursor but I want the actual pointer to change to one that I have made. What I know so far it has something to do with the hover and css style sheet. I don't want my skin or font to change, I just need a code that will make the default cursor change.
I have uploaded the image to my server and put a code in my header but it only seems to change the font size. If somone is able to help me with this that will be great. Thanks in Advance! :oops:
 

cLavain

Well-known member
You can change the cursor by adding the following line to the style of the element you wish to have this behaviour: cursor: url(images/filename.cur)

For example between STYLE tags:

body { cursor: url(images/filename.cur); }


or directly in the BODY element:


<body style="cursor: url(images/filename.cur);">


Works in IE6 but does not seem to work in Firefox.

Hope this helps.
 
Top