Change the cursor on your Myspace Page
Have you ever seen where people have different cursors on their myspace page, even images? Well here is the first step, and the easiest, changing the cursor style! So when your friends mouse over sections of your profile, their cursors change styles!
Change Your Cusor
The following code below will change your mouse cursor for your entire profile page.
<style type="text/css">
body{cursor: MY_CURSOR}
</style>
The next block of code will only change your cursor when you hover over a link.
<style type="text/css">
a:hover{cursor: MY_CURSOR}
</style>
In both of the following code samples above, there is one item you must edit in order to change your cursor style. You will need to edit the "MY_CURSOR" text and replace it with one of the cursor styles found below.
Hover mouse to change cursor: cursor: crosshair
Hover mouse to change cursor: cursor: pointer
Hover mouse to change cursor: cursor: move
Hover mouse to change cursor: cursor: e-resize
Hover mouse to change cursor: cursor: ne-resize
Hover mouse to change cursor: cursor: nw-resize
Hover mouse to change cursor: cursor: n-resize
Hover mouse to change cursor: cursor: sw-resize
Hover mouse to change cursor: cursor: se-resize
Hover mouse to change cursor: cursor: s-resize
Hover mouse to change cursor: cursor: w-resize
Hover mouse to change cursor: cursor: text
Hover mouse to change cursor: cursor: wait
Hover mouse to change cursor: cursor: help