View Full Version : CSS Question


starflight
07-27-2006, 12:43 PM
Hi - I know a lot about computers, but I just can't figure out CSS! I understand the coding but it NEVER WORKS. Can someone please help me? Here is the code I am using, by the way..
<style type="text/css">
A:link
{ text-decoration: overline color:#852940;}
A:visited
{ text-decoration: line-through color:#BE628B;}
A:active
{ text-decoration: none color:#852940;}
A:hover
{ text-decoration: overline color:#3E1F2E;}

font-family: arial;
color: #C14171 ;
letter-spacing: 3pt;
font-weight: normal;
font-size: x-small;
</style>

Arwen
07-27-2006, 12:48 PM
<style type="text/css">
A:link
{ text-decoration: overline; color:#852940;}
A:visited
{ text-decoration: line-through; color:#BE628B;}
A:active
{ text-decoration: none; color:#852940;}
A:hover
{ text-decoration: overline; color:#3E1F2E;}

body {
font-family: arial;
color: #C14171;
letter-spacing: 3pt;
font-weight: normal;
font-size: x-small;}
</style>

starflight
07-27-2006, 12:50 PM
Thank you sooo much! It worked, it worked! YIPPEE!

Arwen
07-27-2006, 02:28 PM
You're welcome! :)