View Full Version : cursor help


tkdgurl927
10-05-2004, 12:32 AM
how do i change the cursor in my tagboard script to a crosshair when i hover over the tagboard's buttons and the visitors' links? thanks

<html>
<head>
<title></title>
<link rel="stylesheet" href="style.css">
<SCRIPT>
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,men ubar=0,resizable=0,width=170,height=300');");
}

</SCRIPT>
</head>
<body>

<form action="sign.php" method="GET" target="tags">
<div id="Layer1" style="border-width: 1 1 1 1; border-color: #FF00CC; border-style: dashed; width: 135;">
<iframe src="tags.php?show=limit" name="tags" width="135" height="200" frameborder="0" ></iframe>
</div>
<input type="text" size="25" name="comment" value="comment" class="input" maxlength="150"><br>
<input type="text" size="25" name="website" value="http://" class="input"><br>
<input type="text" size="25" name="name" value="name" class="input" maxlength="15"><br>
<input type="submit" value=" Tag it! " class="button"> <a href="tags.php?show=all" onclick="popUp(this.href);return false;">H</a> - <a href="smilies.html" onclick="popUp(this.href);return false;">S</a> - <a href="admin.php" target="blank">A</a>
</div></form>

</body>
</html>

kittycat
10-05-2004, 02:48 AM
For visitor's links, add this to the stylesheet...
a:hover { cursor: crosshair; }

I don't think you can change the the hover over the buttons, but you could try this:
input { cursor: crosshair; }
Again add it to the stylesheet.