• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

CSS Error, but don't know how to fix it

wicktron

Limp Gawd
Joined
May 21, 2002
Messages
201
The error from the W3 CSS Validator is:

Line: 21 Context : body

Invalid number : font Parse Error - font, td, a, body, input, textarea, table{ color: #FFFFFF

Code:
/*Background Stuff*/
table, td {
background-color:transparent;
border:none;
border-width:0;
}

#shout {
background-image: url(images/shout.jpg);
background-repeat: no-repeat;
background-position: top left;
}

body{
background-image:url("");
background-attachment:scroll;
background-repeat:repeat;

/*Text Attributes*/
font, td, a, body, input, textarea, table{
color: #FFFFFF;
font-size: 10pt;
font-weight: bold;
font-family:verdana;
}

.blogtitle {
font-family: verdana;
font-size: 12pt;
font-weight: bold;
color: #99ccff;
}

body, td, li, p, div, textarea, li, h1, h2, p, br {
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #cd9967;
}

/*Link Attributes*/
a:link, a.man:link, a.navbar:link, a.text:link {
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #cd9967; 
}

a:hover, a.man:hover, a.navbar:hover, a.text:hover{
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #99ccff;
}

a:visited, a.man:visited, a.navbar:visited, a.text:visited {
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #cd9967;
text-decoration:none;
}

What's wrong with the CSS that's causing that error message?
 
Yea, I was like "He really didn't catch that?"

In any programming language when ever I get a compile or run-time error attributed to a specific line, it's like a reflex to check the line above it first.
 
Back
Top