View Full Version : silly cursor


Melancholy
03-21-2003, 12:09 AM
I have looked at the other posts about changing your cursor, and I've done everything that those posts have suggested, but for some reason it's not working for me.

I'm doing CSS where it's just one CSS page and all the pages point to that. I wanted to change the cursor to a crosshair. It does crosshair over links, but I kind of wanted it like that for the entire site. This is my CSS.

A:link
{ text-decoration: none; color:#FFFFFF }
A:visited
{ text-decoration: none; color:#FFFFFF }
A:active
{ text-decoration: none; color:#FFFFFF }
A:hover
{ text-decoration: none; color:#18398C;

background-color:#FFFFFF;

cursor: crosshair }

body{
background-color: #18398C;
background-attachment: fixed
cursor:crosshair;
font-family: verdana;
color: #FFFFFF;
font-size: 8pt;


scrollbar-face-color : #18398C;
scrollbar-highlight-color : #18398C;
scrollbar-3dlight-color : #18398C; scrollbar-shadow-color : #18398C;
scrollbar-darkshadow-color : #18398C; scrollbar-track-color : #18398C;
scrollbar-arrow-color : #FFFFFF }


Does anyone know what I'm doing wrong? Thank you lots!

epolady
03-21-2003, 12:20 AM
background-attachment: fixed

should have a semicolon afterwards.....do you reallly need the background-attachment: fixed ??

You should really move the background-color into the body{

Melancholy
03-21-2003, 12:56 AM
Thank you! That fixed it. It's so frusterating with html stuff because just forgetting one little thing can make everything not work.

Thanks again!