View Full Version : What is wrong with this code??


hunnybun
05-22-2003, 12:06 PM
What is wrong with this code?? The cursor won't work!!
<HTML>
<HEAD><style type="text/css">
<!--
body{
scrollbar-3dlight-color:#FF69B4;
scrollbar-arrow-color:#FF69B4;
scrollbar-base-color:#FF69B4;
scrollbar-darkshadow-color:#FFCCFF;
scrollbar-face-color:#FF69B4;
scrollbar-highlight-color:#FFCCFF;
scrollbar-shadow-color:#FF69B4 }

cursor: crosshair;
-->
</STYLE>
<TITLE>--cool--</TITLE>
</HEAD>
<BODY><bg color="#FF69B4">

Help..??

pb&j
05-22-2003, 01:14 PM
try this and adjust the track-color part...

<HTML>
<HEAD><style type="text/css">
<!--
body{
scrollbar-face-color : #ff69b4;
scrollbar-highlight-color : #ffccff;
scrollbar-3dlight-color : #ff69b4;
scrollbar-shadow-color : #ff69b4;
scrollbar-darkshadow-color : #ffccff;
scrollbar-track-color : #000000;
scrollbar-arrow-color : #ff69b4;
cursor: crosshair;
background-color : #ff69b4;
}
-->
</STYLE>
<TITLE>--cool--</TITLE>
</HEAD>
<BODY>

put in track color,
took out base color,
moved bgcolor into the css area,
moved the cursor into the body css area.