View Full Version : ach, help with my code...


Zap
07-08-2003, 02:45 AM
I'm really bad at this, it's driving me crazy! I used dreamweaver, and it made my font code kind of weird, it only works on some of my pages. Also, my scroll bars aren't changing colors. What am I doing wrong? Here's my code:
<style type="text/css">
A:link { cursor:crosshair; text-decoration: value; [overline] color:#CC9999; }
A:visited { cursor:crosshair; text-decoration: overline; ; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; font-style: normal; line-height: normal; font-weight: normal; color: #CC9999; background-color: #FFFFFF[overline] color:#CC9999; }
A:active { cursor:crosshair; text-decoration: underline overline; ; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #000000; background-color: #FFFFFF[underline overline] color:#FFFFFF; }
A:hover { cursor:crosshair; text-decoration: line-through; ; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; color: #CC9999[line-through] color:#CC9999

cursor: value; [crosshair] }

h1 {font-family: Verdana, Arial, Helvetica, sans-serif; ; font-size: x-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-transform: none[verdana]
color: value; [black] }

p {font-family: Verdana, Arial, Helvetica, sans-serif; ; font-size: x-small; font-style: normal; line-height: normal; font-weight: normal; font-variant: normal; text-transform: none; background-color: #FFFFFF[verdana]
color: value; [black] }

background-color: #FFFFFF;

font-family: value; [verdana]
color: #000000 ;
letter-spacing: value; [3pt]
font-weight: value; [normal]
font-size: value; [x-small]

BODY{
scrollbar-face-color:#FFFFFF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#FFFFFF;
scrollbar-shadow-color:#FFFFFF;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-darkshadow-Color#666666;
}
-->
</style>

Alcy
07-08-2003, 02:59 AM
Instead of letter-spacing: value; [3pt], just put letter-spacing: 3pt; ^_^

Try this....

<style type="text/css">
A:link
{
cursor:crosshair;
text-decoration:
overline; color:#CC9999;
}

A:visited
{
cursor:crosshair;
text-decoration: overline;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #CC9999;
background-color: #FFFFFF;
}

A:active
{
cursor:crosshair;
text-decoration: underline overline;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
color: #000000;
background-color: #FFFFFF;
}

A:hover
{
cursor:crosshair;
text-decoration: line-through;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
color: #CC9999;
color:#CC9999
}

h1
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: black;
}

p
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: x-small;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
background-color: #FFFFFF;
color: black;
}


BODY
{
scrollbar-face-color:#FFFFFF;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#FFFFFF;
scrollbar-shadow-color:#FFFFFF;
scrollbar-highlight-color:#FFFFFF;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-darkshadow-Color:#666666;
background-color: #FFFFFF;
font-family: verdana;
color: #000000 ;
letter-spacing: 3pt;
font-weight: normal;
font-size: x-small;
}

</style>

Zap
07-08-2003, 03:03 AM
It's fixed! Thanks so much! :-)