-
Step 1
Use the following codes to display the desired cursor effects in the html code described in the steps that follow:{cursor:default}: Regular mouse cursor{cursor:wait}: Hourglass or other icon to show the PC "thinking"{cursor:crosshair}: displays a cross-hair icon{cursor:text}: displays an "I" shaped icon when text is being selected{cursor:pointer}: Displays a pointing hand icon{cursor:help}: Help (Usually displays a question mark){cursor:hand}: Hand{cursor:move}: Move{cursor:n-resize}: Resize north{cursor:ne-resize}: Resize northeast{cursor:e-resize}: Resize east{cursor:se-resize}: Resize southeast{cursor:s-resize}: Resize south{cursor:sw-resize}: Resize southwest{cursor:w-resize}: Resize west{cursor:nw-resize}: Resize northwest{cursor:not allowed}: Not allowed{cursor:all-scroll}: All-scroll
-
Step 2
Use this html code to change the style of your cursor when it hovers over a link. Replace "value" with the desired cursor effect from Step 1:<head><style type="text/css"><!--a:hover {cursor:value}--></style></head>
-
Step 3
Change the cursor style for the entire page with the code below. Replace "value" with the desired cursor effect from Step 1:<html><head><style type="text/css">body {cursor:value}</style></head>
-
Step 4
Change the cursor style for a particular section of the page with the code below. Replace "value" with the desired cursor effect from Step 1:<html><head><style type="text/css">.xlink A{cursor:value}.hlink A{cursor:value}</style></head>
-
Step 5
Hover or mouse-over a link to see what your mouse cursor will change to.













