Ben bezig met een website, alles is bijna zo goed als af maar het wel bekende probleem,
In IE 7 alles goed in FF 2.0 gaat er 1 en andere fout.
Heb andere fouten al eruit kunnen halen door hier rond te speuren, maar voor dit probleem kan ik niet de oplossing vinden
Gaat om de volgende site http://www.millennium-toernooi.nl/www
Zoals je kunt zien gaat er 1 en andere fout in FF
1. De top border van de bottom div, komt boven me menu terecht
2. Bij een pagina zonder tekst, bijvoorbeeld pagina Algemeen, komt me bottom div helemaal bovenaan
opgelost dmv min-height in index
3. Bij een pagina met veel tekst,bijvoorbeeld pagina Deelnemers, gaat me index door me container heen en verplaatst die me bottom div onder me contact_right.
index.php
setup.css
In IE 7 alles goed in FF 2.0 gaat er 1 en andere fout.
Heb andere fouten al eruit kunnen halen door hier rond te speuren, maar voor dit probleem kan ik niet de oplossing vinden
Gaat om de volgende site http://www.millennium-toernooi.nl/www
Zoals je kunt zien gaat er 1 en andere fout in FF
1. De top border van de bottom div, komt boven me menu terecht
2. Bij een pagina zonder tekst, bijvoorbeeld pagina Algemeen, komt me bottom div helemaal bovenaan
opgelost dmv min-height in index
3. Bij een pagina met veel tekst,bijvoorbeeld pagina Deelnemers, gaat me index door me container heen en verplaatst die me bottom div onder me contact_right.
index.php
PHP:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <body> <div id="top"> </div> <div id="container"> <div id="content_normal"> <div id="menu"> </div> <div id="index"> </div> </div> <div id="content_right"> </div> </div> <div id="bottom"> </div> </body> |
setup.css
PHP:
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
| body { background-repeat: repeat-x;; background-position: 50% 0px; margin: 0px; margin-top:25px; text-align: center; background-image: url(../background.jpg); background-color:#33CC00; } html, body #container { height:100%; min-height:100%; } #container { width: 800px; text-align: left; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; border-left: 2px dotted #006699; border-right: 2px dotted #006699; } #top { height: 120px; width: 800px; background:url(../Top.png) no-repeat; text-align: left; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; border-bottom: 2px dotted #006699; border-right: 2px dotted #006699; border-left: 2px dotted #006699; border-top: 2px dotted #006699; } #content_normal { float:left; width:647px; border-right: 2px dotted #006699; } #content_right { float:right; width: 147px; height:450px; text-align:center; } #index { float:left; min-height:400px; width:630px; text-align:left; margin-top: 5px; margin-right: auto; margin-bottom: auto; margin-left: 5px; } #bottom { width:800px; border-bottom:2px dotted #006699; border-left:2px dotted #006699; border-right:2px dotted #006699; border-top: 2px dotted #006699; text-align: left; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; } |
CCIE R&S