Ik ben op het moment bezig met een website; en dan is het wel zo netjes als alles CSS-Valid is, nu ik hem net door de validator heen haal krijg ik elke keer dezelfde error, en ik heb geen idee hoe ik dit zou moeten oplossen.
Error:
CSS:
Graag zou ik weten hoe ik dit op zou kunnen lossen, want het is toch wel vervelend..
Error:
code:
1
2
| Line : 14 font-family: You are encouraged to offer a generic family as a last alternative Line : 14 (Level : 2) font-family: You are encouraged to offer a generic family as a last alternative : body |
CSS:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
| /* BODY */
body {
font-family: "Century Gothic", Verdana;
font-size: 12px;
line-height: 14px;}
/* HEADERS */
H2 {
font-size: 13px;
margin:0px;
padding : 3px 4px 3px 4px;
color: #343961;
background-color:#ededec;
border-top: 1px solid #d3d3d3;
border-bottom: 1px solid #d3d3d3;}
/* CONENT ENTRY */
#entryreacties {
margin-top: 1px;
margin-bottom: 1px;
border-bottom: 1px solid #d3d3d3;
padding-left:12px;}
#entryalert {
margin-top: 1px;
margin-bottom: 1px;
color:#FF0000;
background-color:#ededec;
padding-left:12px;}
#entrycontentlinks {
margin-top: 1px;
margin-bottom: 1px;
margin-left: 12px;
padding: 2px;}
#entrycontent {
margin-top: 8px;
margin-bottom: 6px;
padding: 4px;}
/* HYPERLINKS */
a {color: #2E7EB1; text-decoration: none; background-color:#ededec;}
a:hover {color: #999999; background-color:#ededec;}
/* FORMULIER (E-Mail & Reacties) */
div.formulier > label {
float:left;
top: 25px;
width:75px;}
.formulier {
position: relative;
border-top: 1px solid #d3d3d3;
padding-top: 10px;
padding-bottom: 10px;
clear:left;
margin-left: 2px;}
/* ETC - GRAVATARS */
.gravatar {
border: 1px solid #d3d3d3;
margin-right: 5px;
margin-left: 5px;
margin-top:5px;
margin-bottom:5px;
height: 40px;
width: 40px;}
/* ETC - DATE */
#date {
font-size: 10px;
margin:0px;
padding : 0px 0px 0px 0px;
color: #343961;
text-align:right;
background-color:#ededec;
font-style:italic;}
/* ETC - SUBEND */
#subend{
border-bottom: 1px solid #d3d3d3;
margin-bottom: 10px;} |
Graag zou ik weten hoe ik dit op zou kunnen lossen, want het is toch wel vervelend..