PDA

View Full Version : is there a way of the mouse icon not to change when its over text?


3MeMoS
11-05-2002, 03:01 AM
i dont want the mouse icon to change when its over the text on my site, is it possible? it is cause iv seen it in some other site

beetle
11-05-2002, 05:35 AM
In your CSS or a style block

body {
cursor: default;
}

3MeMoS
11-05-2002, 11:47 AM
hmm, where do i put that? and could u give it to me in a code box cause it copys it with the font of the forum too

aEr_aEr
11-05-2002, 01:01 PM
put it in your css file

if you don't use a css file then put it between the head tags


<htmle>
<head>
<style>
body { cursor: default;}
</style>
</head>
<body>
your content
</body>
</html>

3MeMoS
11-05-2002, 10:20 PM
thanks man :thumbsup:

kwhubby
11-06-2002, 06:39 AM
you could also apply the style to individual tags by CLASS="className",
and by making the style tag this
<style>
.abc {cursor:hand; }
</style>
and then if you had a link lets say
<a href="http://www.whatever.com" CLASS="abc">whatever</a>

ps, I think Ive been to you website, or heard of your name, do you have anything to do with the ZONE?