Click to See Complete Forum and Search --> : mouse


TheShibby
08-01-2003, 12:52 AM
does anyone know the code for making the mouse not an arrow, when its not over text?
thanks in advance

xataku_nakusute
08-01-2003, 01:34 AM
in css:

<style type="text/css">
tagname
{
cursor: (choose one)default(regular arrow)|pointer(hand thingy[links])|crosshair(crosshairish...)|help(arrow with ?)|wait(hourglass)|many more stupid ones...
}
</style>

forgive me if thats hard to read with all of my paranthetical notes

TheShibby
08-01-2003, 02:35 AM
i put it in as
<style type="text/css">
tagname {cursor:crosshair}
</style>
and it didnt work wat did i do wrong?

havik
08-01-2003, 03:08 AM
you need to insert that style into whereever you want to use it.
Examples:
<a href="..." style=tagname>text</a>

<p style=tagname>text</p>

Havik

TheShibby
08-03-2003, 10:12 PM
i dont want it on links i want it on everything

pyro
08-03-2003, 10:19 PM
<style type="text/css">
body {
cursor: crosshair;
}
</style>Though I'd leave the cursor alone for the most part...