Ik heb een probleempje met een css script, ik ben pas net begonnen met css en weet er nog niet zoveel vanaf, maar ik wil twee kolommen met daarboven een menubalk en een soort banner! Ik heb dat nu ongeveer voor elkaar, alleen is het probleem dat die twee kolommen wel langer worden als je er meer tekst in plaatst, maar dat de onderkant niet meeloopt naar beneden als er meer regels in een van die kolommen komen. Het zal wel iets heel simpels zijn, maar kan iemand mij helpen......
Dit is de code waar het om gaat:
alvast bedankt.....
Dit is de code waar het om gaat:
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
| body {
font-family: Arial;
color: #000000;
background-color: #FFFFFF;
font-size: 12px;
padding: 0px;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
text-align: center;
background-image: url('images/body.jpg');
background-repeat: repeat-x;
}
a:link, a:visited {
color: #5680BC;
text-decoration: none;
}
a:hover {
color: #1848B4;
text-decoration: none;
}
div {
margin: 0px;
padding: 0px;
}
img { border: 0px;
}
#main {
text-align: left;
margin: 0px auto;
height: auto;
width: 750px;
position:relative;
top: 0px;
left: 0px;
background-color: #FFFFFF;
}
#top {
text-align: center;
margin: 0px;
height: 160px;
width: 750px;
background-image: url('images/top.gif');
background-repeat: repeat-x;
}
#menu {
text-align: center;
margin: 0px;
padding-top: 10px;
height: 40px;
width: 750px;
position:absolute;
top: 160px;
left: 0px;
background-image: url('images/menu.gif');
background-repeat: repeat-x;
}
#left {
width: 213px;
}
#right {
width: 525px;
}
#left_top {
text-align: left;
margin: 0px;
height: 15px;
width: 213px;
position:absolute;
top: 200px;
left: 0px;
background-image: url('images/top_left.gif');
background-repeat: no-repeat;
}
#right_top {
text-align: left;
margin: 0px;
height: 15px;
width: 525px;
position:absolute;
top: 200px;
left: 213px;
background-image: url('images/top_right.gif');
background-repeat: no-repeat;
}
#left_content {
background-image: url('images/content_left.gif');
background-repeat: repeat-y;
width: 213px;
position:absolute;
top: 215px;
left: 0px;
padding-top: 0px;
padding-left: 18px;
}
#right_content {
background-image: url('images/content_right.gif');
background-repeat: repeat-y;
width: 525px;
position:absolute;
top: 215px;
left: 213px;
padding-top: 0px;
padding-left: 18px;
}
#left_bottom {
background-image: url('images/bottom_left.gif');
background-repeat: no-repeat;
clear: both;
height: 100px;
width: 213px;
position:absolute;
top: 365px;
left: 0px;
}
#right_bottom {
background-image: url('images/bottom_right.gif');
background-repeat: no-repeat;
clear: both;
height: 30px;
width: 525px;
position:absolute;
top: 365px;
left: 213px;
} |
alvast bedankt.....
Who the fuck is general failure and why the hell is he reading my disk ?!