Ik zit met een noob probleempje 
http://www.freex-tech.com/sub/hbe/
de text "test" zou naast het logo moeten komen
de css code is :
http://www.freex-tech.com/sub/hbe/
de text "test" zou naast het logo moeten komen
de css code is :
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
| body {
/* Color */
background-color: #D1D0C7;
/* Margin || Padding */
margin: 0px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
/* Text */
font-family: verdana, sans-serif;
font-size: 12px;
/* Other */
cursor: default;
}
.buitenkant {
/* Width */
width: 100%;
/* Color */
background-color: #FFFFFF;
/* Border */
border-width: 1px;
border-style: solid;
/* Text */
font-family: verdana, sans-serif;
font-size: 12px;
/* Other */
cursor: default;
}
.header {
/* Width */
width: 100%;
}
.header_logo {
/* Width */
width: 15%;
/* Color */
background-color: #FFFFFF;
/* Border */
border-bottom-width: 1px;
border-bottom-style: solid;
/* Text */
font-family: verdana, sans-serif;
font-size: 12px;
/* Other */
cursor: default;
}
.header_center {
/* Width */
width: 100px;
/* Color */
background-color: #FFFFFF;
/* Float */
float:left;
/* Other */
cursor: default;
} |