hi

how can I change the cursor's shape im my site

i found this

<A HREF="index.html" style="cursor:crosshair">home</a>

this change it when it moves over the link but i want the cursor to be like this always

thanx in advance

Add some CSS a'la:

body
{
cursor:crosshair;
}

or, put it directly in the body tag:

<body style="cursor:crosshair;">
... body stuff ...
</body>

It should set the cursor how you want; while the mouse is over the browser window (or browser tab) that your page is open in.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.