View Full Version : * Cursors! *


sisqoluv
06-23-2003, 09:57 PM
First of all, I searched the form, I visited different sites, and I still can get it. I've viewed different ways to do it, but it's not working! I do what the tutorials say, but it never works. Can someone please help me do a crosshair cursor? Here's my css code:

<!--BODY{
scrollbar-face-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-shadow-color: #ffffff;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #ffffff;
}

<!--
A:link{COLOR:#0066cc; TEXT-DECORATION: none; font-weight: bold}
A:visited{COLOR:#0066cc; TEXT-DECORATION: none; font-weight: bold}
A:active{COLOR:#0066cc; TEXT-DECORATION: none; font-weight: bold}
A:hover{COLOR:black; TEXT-DECORATION: underline; font-weight: normal}
-->

BODY {background-color:#ffffff;}

kittycat
06-23-2003, 10:01 PM
If you want it as a hover over your links, change the code to this:

<!--BODY{
scrollbar-face-color: #ffffff;
scrollbar-highlight-color: #ffffff;
scrollbar-3dlight-color: #ffffff;
scrollbar-darkshadow-color: #ffffff;
scrollbar-shadow-color: #ffffff;
scrollbar-arrow-color: #000000;
scrollbar-track-color: #ffffff;
background-color:#ffffff;
}

A:link{COLOR:#0066cc; TEXT-DECORATION: none; font-weight: bold}
A:visited{COLOR:#0066cc; TEXT-DECORATION: none; font-weight: bold}
A:active{COLOR:#0066cc; TEXT-DECORATION: none; font-weight: bold}
A:hover{COLOR:black; TEXT-DECORATION: underline; font-weight: normal; cursor: crosshair}
-->

and also make sure you include the <style> tags before and after :)

sisqoluv
06-23-2003, 10:11 PM
Originally posted by kittycat
and also make sure you include the <style> tags before and after :)

Thank you. I'm going to cross my fingers and hope it works. I don't know what I was doing wrong, though. Thanks again!

BTW, I don't use the <style> tags because I use the 'css cheat'. I just put

<LINK REL=stylesheet HREF="personalcssmain.css" TYPE="text/css">

on all of my pages and it loads my css file. That way, if I want to change the css on all of the 100+ pages I have, I don't have to edit each one. I just change the CSS page.