View Full Version : Css problem ::shakes head:: please help me!


kayjenne
03-08-2003, 01:43 PM
I'm back again trying to figure out what's wrong with my css code. Something isn't right! The cursor isn't the one i typed its that annoying white hand. ANd then the links aren't the color I chose. ANd lastly the scrollbars aren't the colors I chose. i don't know why but every time i get the code from lissa's site it doesn't come out right.




<style type="text/css">
<!--

A:link
{text-decoration: underline overline;
A:visited
{ text-decoration: none; color:#04B0A6 }
A:active
{ text-decoration: none; color:#04B0A6 }
A:hover
{ text-decoration: none ; color:#04B0A6;

background-color:#04B0A6;

cursor:se-resize }

body
{font-family:arial;
color:#04B0A6;
font-size:10pt;

scrollbar-face-color: #04B0A6;
scrollbar-arrow-color: #000000 }

{ font-family:verdana;
color:#000000; }

-->
</style>

kittycat
03-08-2003, 02:09 PM
If you look at the end of your very first line, you for got a closing }.
And this: { font-family:verdana;
color:#000000; }
You should either take it out altogether, or include it into another section.

epolady
03-08-2003, 04:10 PM
body{
background-color:#04B0A6;
font-family:arial;
color:#04B0A6;
font-size:10pt;
scrollbar-face-color: #04B0A6;
scrollbar-arrow-color: #000000;
cursor:se-resize }


font-family:verdana;
color:#000000; }

You have 2 font properties & 2 colors, pick one and delete the other

Spirit892
03-08-2003, 04:24 PM
To make sure you don't mess up again, try using an HTML validator. They can be found here (http://www.lissaexplains.com/val.shtml). Good Luck!